Domanda

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

È stato utile?

Soluzione

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);
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top