使用 javascript 将 png 上传到 imgur

发布于 2025-01-04 23:46:17 字数 1395 浏览 1 评论 0原文

我正在尝试使用 Javascriptpng 上传到 imgur。我直接使用了 Imgur API example 中的代码,但我认为我没有正确传递 png 文件,因为我收到一条错误消息,指出 file.type is undefined。我认为这个文件没问题,因为我已经用几个不同的 png 尝试过了。我的代码如下:

<html>
<head>
<script type="text/javascript">
function upload(file) {
   // file is from a <input> tag or from Drag'n Drop
   // Is the file an image?
   if (!file || !file.type.match(/image.*/)) return;

   // It is!
   // Let's build a FormData object
   var fd = new FormData();
   fd.append("image", file); // Append the file
   fd.append("key", "mykey"); // Get your own key: http://api.imgur.com/

   // Create the XHR (Cross-Domain XHR FTW!!!)
   var xhr = new XMLHttpRequest();
   xhr.open("POST", "http://api.imgur.com/2/upload.json"); // Boooom!
   xhr.onload = function() {
      // Big win!
      // The URL of the image is:
      JSON.parse(xhr.responseText).upload.links.imgur_page;
   }

   // Ok, I don't handle the errors. An exercice for the reader.
   // And now, we send the formdata
   xhr.send(fd);
}
</script>
</head>   

<body>

<button type="button" onclick="upload('test.png')">upload to imgur</button> 

</body>
</html> 

png 文件 test.png 与我的 html 文件存储在同一目录中。

I'm trying to use Javascript to upload a png to imgur. I've used the code directly from the Imgur API example, but I don't think I am passing the png file properly as I get an error message saying file.type is undefined. I think the file is ok as I've tried this with a few different pngs. My code is as follows:

<html>
<head>
<script type="text/javascript">
function upload(file) {
   // file is from a <input> tag or from Drag'n Drop
   // Is the file an image?
   if (!file || !file.type.match(/image.*/)) return;

   // It is!
   // Let's build a FormData object
   var fd = new FormData();
   fd.append("image", file); // Append the file
   fd.append("key", "mykey"); // Get your own key: http://api.imgur.com/

   // Create the XHR (Cross-Domain XHR FTW!!!)
   var xhr = new XMLHttpRequest();
   xhr.open("POST", "http://api.imgur.com/2/upload.json"); // Boooom!
   xhr.onload = function() {
      // Big win!
      // The URL of the image is:
      JSON.parse(xhr.responseText).upload.links.imgur_page;
   }

   // Ok, I don't handle the errors. An exercice for the reader.
   // And now, we send the formdata
   xhr.send(fd);
}
</script>
</head>   

<body>

<button type="button" onclick="upload('test.png')">upload to imgur</button> 

</body>
</html> 

The png file test.png is stored in the same directory as my html file.

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

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

发布评论

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

评论(2

短暂陪伴 2025-01-11 23:46:17

该文件必须是使用 HTML5 fileAPI 创建的 File 对象,您不能只给它一个文件名并期望它能够工作。

Javascript 无法访问文件系统,它只能访问通过拖放或文件输入提供给它的文件。

The file has to be a File object created with the HTML5 fileAPI, you can't just give it a file name and expect it to work.

Javascript has no access to the filesystem, it can only access files that are given to it using either drag and drop or a file input.

漫雪独思 2025-01-11 23:46:17

您使用的示例期望您使用输入元素(类型=文件)上传一些图像。尝试此示例。您可以使用 Canvas 像这样访问图像数据。

总而言之,您需要执行以下操作:

  1. 使用您的文件创建新图像(需要位于本地域)
  2. 在加载时将图像绘制到画布
  3. 使用 此方法
  4. 将该数据传递给 imgur 像这里

The example you are using expects that you use input element (type=file) to upload some image. Try this example. You can access image data using a Canvas like this.

To summarize, you'll need to do this:

  1. Create new Image with your file (needs to be on local domain)
  2. Draw the image to a Canvas at onload
  3. Extract image data using this method
  4. Pass that data to imgur like here
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文