Question

Is there a possibility to print a whole canvas UI element (and all its children) using AlivePDF?

I know that the normal way would be to add each element separately, but if there is whole bunch of elements (text, image..) that is a problem...

Was it helpful?

Solution

One possible way would be to create an image from the Canvas control and to add the image to the PDF. That might be lower res than you would like, and the text would not be selectable.

    var myBitmapData:BitmapData = new BitmapData(canvas.width, canvas.height);

    myBitmapData.draw(canvas);

    myPDF.addImage(new Bitmap(myBitmapData, PixelSnapping.AUTO, true),
                    0, 0, canvas.width, canvas.height, 
                    ImageFormat.JPG, 100, 1);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top