Jump to content
Search Community

Search the Community

Showing results for tags 'bytearray'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • GreenSock Forums
    • GSAP
    • Banner Animation
    • Jobs & Freelance
  • Flash / ActionScript Archive
    • GSAP (Flash)
    • Loading (Flash)
    • TransformManager (Flash)

Categories

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Found 2 results

  1. 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
  2. ondras82

    Load PDF file

    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 ??? } ...
×
×
  • Create New...