|
@@ -94,6 +94,7 @@ const refreshBlob = async () => {
|
|
|
const width = 500 * scale;
|
|
|
const height = 390 * scale;
|
|
|
const fuseImage = await getFuseImage(iframeRef.value, width, height);
|
|
|
+
|
|
|
if (fuseImage?.blob) {
|
|
|
imageBlob.value =
|
|
|
fuseImage.type !== FuseImageType.FUSE
|
|
@@ -102,7 +103,8 @@ const refreshBlob = async () => {
|
|
|
iframeRef.value,
|
|
|
fuseImage.blob,
|
|
|
selectTaggings.value,
|
|
|
- width
|
|
|
+ width,
|
|
|
+ height
|
|
|
);
|
|
|
}
|
|
|
};
|