如何使用 C# 以编程方式从 PicasaWeb 上传和检索照片
是否可以使用 PicasaWeb 为我的网站托管照片?我要求在我的 ASP.NET 网站中上传和访问。
Is it possible to use PicasaWeb to host photos for my website? My requirement to upload and access within my ASP.NET Website.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,从技术上来说。您可以使用 Picasa 网络相册数据 API 访问有关图片的元数据然后从 Picasa 显示它们。对于相册来说,这并不是一个可怕的主意,但我不会在您的网站图形中使用这种方法。
Yes, technically. You can use the Picasa Web Albums Data API to access the metadata about your images and then display them from Picasa. For an album, this is not a horrible idea, but I would not use this method for your site graphics.
我正在上传压缩图像并使用 SharpZipLib 库进行提取。我以字节块的形式获取每个文件,稍后将其转换为 MemoryStream 以传递 MediaSource 对象。我每次都会收到 400 Bad Request 错误。当我传递 FileStream 时,它工作正常,但不适用于 MemoryStream
I am uploading a zipped images and extracting using SharpZipLib library. I am getting each file in chunk of bytes and which I am converting into MemoryStream later to pass the MediaSource object. I am getting 400 Bad Request error each time. When I am passing FileStream, it works fine but doesn't work with MemoryStream