gpt4 book ai didi

html - 数据 :image/jpg;base64 open and resize/zoom-out in new tab

转载 作者:行者123 更新时间:2023-11-28 14:38:33 25 4
gpt4 key购买 nike

我有一个 input type=file 的预览按钮在新选项卡上打开所选图像的元素:

var image = new Image();
image.src = "data:image/jpg;base64," + myImageDataUrl;

var w = window.open("");
w.document.write(image.outerHTML);

问题是超过浏览器高度和宽度的图像将以全尺寸显示,要求用户使用窗口的滚动条来查看图像。有没有办法调整/缩小图像小于或等于浏览器的尺寸?

我试过将图像包装成 <div style='max-height: 100%; max-width: 100%'>没有成功。

最佳答案

您需要将图像的高度和宽度设置为 100%。

image.height = '100%';
image.width = '100%';

关于html - 数据 :image/jpg;base64 open and resize/zoom-out in new tab,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53213813/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com