1

我在 appengine 应用程序中上传了图片。图片保存在 blobstore 中。它使用 html 输入文件。

除此之外,我希望允许用户将图片从 Internet 保存到 blobstore。如果用户有有效图片的 url,我希望将图片保存在 blobstore 中。是否可以?如何实现这个功能?

例如,用户只需输入 url ex。http://domain.com/picture001.jpg然后图像将存储在 blobstore 中。不仅仅是图片本身的网址。

谢谢

4

1 回答 1

4

使用URLFetch检索图像字节,然后使用Files API将您提取的字节写入 blobstore。

于 2012-06-14T00:46:45.117 回答