Search the Community
Showing results for tags 'bytearray'.
-
taking a screenshot of autofitarea moviclips using bitmapData.draw()
taran0 posted a topic in GSAP (Flash)
hi I'm trying to take a screenshot of the stage which is made up of various Movieclips blending and filling the entire stage using autofitarea. the problem is none of the movieclips in the autofitarea show up in the screenshot - and if i do select a movieclip to export it is the original size not the scaled size var area:AutoFitArea = new AutoFitArea(this,0,0,stage.stageWidth,stage.stageHeight); area.attach(mc, {scaleMode:ScaleMode.PROPORTIONAL_OUTSIDE, crop:true}); area.attach(mc2, {scaleMode:ScaleMode.PROPORTIONAL_OUTSIDE, crop:true}); area.attach(mc3, {scaleMode:ScaleMode.PROPORTIONAL_OUTSIDE, crop:true}); function SaveScreenshot(evt:MouseEvent):void{ var bitmapData:BitmapData=new BitmapData(area.width, area.height); bitmapData.draw(stage); var jpgEncoder:JPGEncoder = new JPGEncoder(100); var byteArray:ByteArray = jpgEncoder.encode(bitmapData); byteArray = jpgEncoder.encode(bitmapData); var fileReference:FileReference=new FileReference(); fileReference.save(byteArray, "scrShot1.jpg"); } // neither mc, mc2 or mc3 show in the exported jpg, while everything else on the stage does really hope someone can help me with this Thanks T-
- autofitareabitmapdata
- jpgencoder
-
(and 1 more)
Tagged with:
-
Hello, I need load PDF file and show as bitmap in Flash (AS3). I found this code in documentation, but I don´t know how transform byteArray to bitmap? Can somebody help me please? var loader:BinaryDataLoader = new BinaryDataLoader("files/dum.pdf",{name:"filePDF",requireWithRoot:this.root,estimatedBytes:6800}); loader.load(); var files:Array = ["files/dum.pdf"]; LoaderMax.registerFileType("pdf", BinaryDataLoader); LoaderMax.activate([binaryDataLoader]); var queue:LoaderMax = LoaderMax.parse(files,{onProgress:progressHandler,onComplete:completeHandler,onChildFail:childFailHandler}); queue.load(); function completeHandler(event:LoaderEvent):void { var byteArray:ByteArray = LoaderMax.getContent("filePDF"); // I need bitmap from the PDF file ??? } ...
- 5 replies
-
- loadermax
- load pdf file
-
(and 2 more)
Tagged with: