Stable Diffusion image metadata viewer

Stable Diffusionで生成された画像の埋め込みメタデータを表示します

< Stable Diffusion image metadata viewerについてのフィードバック

レート:可 - スクリプトは動作するがバグがある

§
投稿日: 2023/02/10
編集日: 2023/02/10

Doesn't work with urls like this
example.com/image.png?a.a=b.b
example.com/image.png#cccc

line 25:
const ext = img.src.match(/[^.]+$/)[0].toLowerCase();
->
const ext = img.src.split(/[#?]/)[0].split('.').pop().trim().toLowerCase();

§
投稿日: 2023/02/11

Thank you for feedback. Your code correctly works completely. I reconsidered file extention's condition is needless. It is better way for User Include.

返信を投稿

返信を投稿するにはログインしてください。