HTML5 formdata:从远程服务器读取图像数据

发布于 2024-12-16 17:59:08 字数 118 浏览 2 评论 0原文

有人知道吗,是否可以从远程 URL 将图像读取为二进制文件。 我知道文件 API 使我们可以从本地系统读取二进制文件。 但我找不到有关从远程 URL 读取的信息。也许我什至可以从浏览器缓存中读取此信息,在我加载此信息后?

does someone know, is it possible read image to binary from remote URL.
I know that File API give us possibility read as binary file from our local system.
But i cant find info about reading from remote URL. Maybe even i can read this info from browser cache, after i load this info from to or else?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

游魂 2024-12-23 17:59:08

我认为这会解决你的问题,用你的url作为SRC制作一个img标签。

function getBase64Image(img) {
    // Create an empty canvas element
    var canvas = document.createElement("canvas");
    canvas.width = img.width;
    canvas.height = img.height;

    // Copy the image contents to the canvas
    var ctx = canvas.getContext("2d");
    ctx.drawImage(img, 0, 0);

    // Get the data-URL formatted image
    // Firefox supports PNG and JPEG. You could check img.src to
    // guess the original format, but be aware the using "image/jpg"
    // will re-encode the image.
    var dataURL = canvas.toDataURL("image/png");

    return dataURL.replace(/^data:image\/(png|jpg);base64,/, "");
}

这个函数是在Get image data in JavaScript?上找到的

,像使用它

var img = new Image();
img.load = function(){
    var data = getBase64Image(this);
};
img.src= "my IMAGE URL";

或者使用你自己的HTML 中的 img 标签

I think this will solve your problem, make a img tag with your url as SRC.

function getBase64Image(img) {
    // Create an empty canvas element
    var canvas = document.createElement("canvas");
    canvas.width = img.width;
    canvas.height = img.height;

    // Copy the image contents to the canvas
    var ctx = canvas.getContext("2d");
    ctx.drawImage(img, 0, 0);

    // Get the data-URL formatted image
    // Firefox supports PNG and JPEG. You could check img.src to
    // guess the original format, but be aware the using "image/jpg"
    // will re-encode the image.
    var dataURL = canvas.toDataURL("image/png");

    return dataURL.replace(/^data:image\/(png|jpg);base64,/, "");
}

This function was found on Get image data in JavaScript?

Use it like

var img = new Image();
img.load = function(){
    var data = getBase64Image(this);
};
img.src= "my IMAGE URL";

Or use your own img tag from your HTML

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文