使用 Loader 在 Flash 10 中加载 .bmp(位图)和 .tiff 文件

发布于 2024-08-18 18:38:52 字数 620 浏览 3 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(2

安穩 2024-08-25 18:38:53

不可以。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."

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文