如何从 Flex 中的本地图像获取 BitmapData?

发布于 2024-11-16 05:23:02 字数 302 浏览 1 评论 0原文

该映像已保存在客户端 PC 本地,并且是一个 Air 应用程序。该图像未嵌入,它位于应用程序存储目录中。

我看到了这个问题: 我如何从 AIR 中的本地 jpeg 文件的 File 对象中获取 BitmapData 对象? 但它使用 URLRequest,我认为这不是我需要的,因为文件是本地的。

The image is already held locally on the client PC and it is an Air application. The image is not embedded, it is in the Application Storage directory.

I have seen this question: How can i get a BitmapData object out of a File object from a local jpeg file in AIR? but it uses URLRequest which I don't think is what I need because the file is local.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

忆依然 2024-11-23 05:23:02

使用 file.url 将为您提供一个可以与 URLRequest 一起使用的 url,即使该文件是本地的。

Using file.url will give you a url you can use with a URLRequest even though the file is local.

你与昨日 2024-11-23 05:23:02

您是否尝试使用 FileStream 类的 readBytes() 方法读取图像文件?这将为您提供图像的 ByteArray 表示形式。我认为您可以使用此信息创建一个新的 BitmapData 对象。我自己没有测试过这个。

Did you try reading the image file using FileStream class's readBytes() method? This will give you a ByteArray representation of the image. I think you can create a new BitmapData Object using this info. I haven't tested this myself.

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