flex - 使用文件引用在上传之前检查图像尺寸
在我的 Flex 应用程序中,我使用 FileReferenceList
,用户可以在上传之前使用 fileList.browse()
填充多个文件。
我检查每个文件的大小并使用 fileList[i].upload()
上传到我的服务器,这工作正常。
我怀疑这是不可能的,但在上传之前,我想将每个 FileReference
转换为图像,以检查它是否在一定的尺寸公差范围内。
我意识到我可以在服务器端执行此操作,但理想情况下我希望检查同时出现在客户端和服务器上。 有人可以提供任何帮助吗?
谢谢!
In my Flex application, I use a FileReferenceList
that the user can populate with multiple files using fileList.browse()
before upload.
I check each file's size and use fileList[i].upload()
to upload to my server, this works fine.
I have a suspicion that this is not possible, but before upload I would like to convert each FileReference
into an Image in order to check it lies within certain dimension tolerances.
I realise I can do this server side, but ideally I would like the check to appear on both client and server. Can anyone offer any help?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 雅虎的这篇文章! 闪存博客。 Flash 10 允许您在本地处理图像。 他们提供了一个很好的示例,其中包含如何处理 FileReference 对象(特别是图像文件)的代码。
Take a look at this post at the Yahoo! Flash Blog. Flash 10 lets you work with images locally. They give a nice example with code of how you can process FileReference objects, specifically image files.