加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

Flex中本地图片上传及上传文件前的预览

发布时间:2020-12-15 03:54:31 所属栏目:百科 来源:网络整理
导读:[java] ? view plain copy ?xml?version= "1.0" ?encoding= "utf-8" ?????? mx:Application?xmlns:mx= "http://www.adobe.com/2006/mxml" ?layout= "absolute" ?fontSize= "12" ?creationComplete= "init()" ????? ????mx:Script????? ????????!--[CDATA[???
[java]? view plain copy
  1. <?xml?version="1.0"?encoding="utf-8"?>?????
  2. <mx:Application?xmlns:mx="http://www.adobe.com/2006/mxml"?layout="absolute"?fontSize="12"?creationComplete="init()">?????
  3. ????<mx:Script>?????
  4. ????????<!--[CDATA[?????
  5. ????????????import?mx.utils.*;?????
  6. ????????????import?flash.net.*;?????
  7. ?????????????????
  8. private?var?fileReference:FileReference=new?FileReference();?????
  9. private?var?byteArray:ByteArray;?????
  10. private?var?bitmapData:BitmapData;?????
  11. private?var?loader:Loader=new?Loader();?????
  12. private?function?init():void?????
  13. ????????????{????????????????????
  14. ????????????????fileReference.addEventListener(Event.COMPLETE,fileReferenceCompleteHandler);?????
  15. ????????????}?????
  16. private?function?fileReferenceCompleteHandler(e:Event): ????????????{?????
  17. ????????????????byteArray?=?fileReference.data;?????
  18. ????????????????loader.contentLoaderInfo.addEventListener(Event.COMPLETE,loaderCompleteHandler);?????
  19. ????????????????loader.loadBytes(byteArray);?????
  20. private?function?loaderCompleteHandler(e:Event): ????????????????var?bitmap:Bitmap?=?Bitmap(loader.content);?????
  21. ????????????????bitmapData?=?bitmap.bitmapData;?????
  22. ????????????????img.source?=?bitmap;?????
  23. private?function?fileReferenceSelectHandler(e:Event): ????????????????fileReference.load();?????
  24. private?function?btnClick(): ????????????????fileReference.browse();?????
  25. ????????????????fileReference.addEventListener(Event.SELECT,fileReferenceSelectHandler);?????
  26. ????????????}?????
  27. ????????]]-->?????
  28. ????</mx:Script>?????
  29. ????<mx:Panel?width="456"?height="345"?horizontalCenter="0"?verticalGap="0"?horizontalAlign="center"?verticalAlign="middle">?????
  30. ????????<mx:Image?id="img"?width="263"?height="234"/>?????
  31. ????????<mx:Button?label="选择..."?click="btnClick()"/>?????
  32. ????</mx:Panel>?????
  33. </mx:Application> ? ?

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读