如何从 Flex 中的本地图像获取 BitmapData?
该映像已保存在客户端 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 file.url 将为您提供一个可以与 URLRequest 一起使用的 url,即使该文件是本地的。
Using file.url will give you a url you can use with a URLRequest even though the file is local.
您是否尝试使用 FileStream 类的 readBytes() 方法读取图像文件?这将为您提供图像的
ByteArray
表示形式。我认为您可以使用此信息创建一个新的 BitmapData 对象。我自己没有测试过这个。Did you try reading the image file using
FileStream
class'sreadBytes()
method? This will give you aByteArray
representation of the image. I think you can create a newBitmapData
Object using this info. I haven't tested this myself.