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...

有帮助吗?

解决方案

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);
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top