英文:
Can the image/jpeg library in Go support JPEG progressive format
问题
在尝试解码使用渐进格式的JPEG图像时,Google App Engine中的Go运行时(版本)的image/jpeg包返回“不支持的JPEG特性:渐进模式”。这是我的错误吗?还是Go尚未能解码这种类型的JPEG图像?
英文:
The Go runtime (the version that is in google appengine) package image/jpeg returns "unsupported JPEG feature: progressive mode" when trying to Decode a JPEG that uses progressive format. Is this an error on my part? Or is this type of JPEG not yet decodable in Go?
答案1
得分: 5
它将包含在即将发布的Go 1.1版本中。
Revision: 51f26e36ba98: image/jpeg: 解码渐进式JPEG图像。
英文:
It will be included in the upcoming Go 1.1 release.
Revision: 51f26e36ba98: image/jpeg: decode progressive JPEGs.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论