使用 Loader 在 Flash 10 中加载 .bmp(位图)和 .tiff 文件
我正在使用 Flash 10 开发图像上传器。 我正在使用 FileReference
对象浏览图像并使用 Loader 显示图像:
示例代码:
var tempFileRef:FileReference = FileReference(ev.target);
var oLoader:Loader = new Loader();
oLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onImageLoad);
oLoader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, onIOError);
oLoader.loadBytes(tempFileRef.data);
它可以很好地处理 .jpg 和 .gif 文件,但是当我浏览 .bmp 或 .tiff 文件时,出现错误:
Error #2124: Loaded file is an unknown type.
是否有办法从桌面加载和显示浏览的 .bmp 图像?
谢谢
I am developing a Image uploader using Flash 10.
I am using FileReference
object to browse images and Loader to show the image:
Sample code:
var tempFileRef:FileReference = FileReference(ev.target);
var oLoader:Loader = new Loader();
oLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onImageLoad);
oLoader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, onIOError);
oLoader.loadBytes(tempFileRef.data);
It works fine with .jpg and .gif files but when I browse .bmp or .tiff file, I am getting the error:
Error #2124: Loaded file is an unknown type.
Is there a way to load and display browsed .bmp images from desktop?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Spark lib 中的 BMPDecoder 类:
http://www.libspark.org/ svn/as3/BMPDecoder/src/com/voidelement/images/BMPDecoder.as
使用示例:http://hi.baidu.com/leyhui/blog/item/d12be8b116ec915308230298.html
关于 TIFFDecoder,它仍在进行中,但非常有前途:
http://code.google.com/p/windowsbitmapdencoder/
BMPDecoder class from Spark lib:
http://www.libspark.org/svn/as3/BMPDecoder/src/com/voidelement/images/BMPDecoder.as
Example of the usage: http://hi.baidu.com/leyhui/blog/item/d12be8b116ec915308230298.html
Regarding TIFFDecoder, it is still work in progress, but very promising one:
http://code.google.com/p/windowsbitmapdencoder/
不可以。Flash 不支持 .bmp 和 .tiff 文件。
Adobe 帮助文档
“Adobe Flash Player 支持的位图图像格式有 GIF、JPG 和 PNG。”
No. Flash does not support .bmp and .tiff files.
Adobe Help Docs
"The bitmap image formats supported by Adobe Flash Player are GIF, JPG, and PNG."