10-09-2007 10:38 PM
10-10-2007 12:34 AM
10-10-2007 01:44 AM
hi there
you could show the report on a VIs front panel in a string control and then use the "GetImage" method of the control. see attached example...
10-10-2007 09:07 AM
That's good idea.
However, do you know how to insert a watermarked image (such as company logo) to the created image?
10-10-2007 09:32 AM
hi there
try this:
1. create an image of your watermark (use same bitdepth as in GetImage method and same size as your control). Use BLACK as background (0x000000)
2. unflatten watermark with UnflattenPixmap.vi
3. execute GetImage at the controls reference and unflatten with UnflattenPixmap.vi
4. Sum the "Pixmap" arrays of both unflattenend pixmaps
5. Flatten summarized pixmaps and save as picture
10-10-2007 09:34 AM
10-10-2007 09:39 AM
10-10-2007 10:29 AM
lets merge:
1. Load the report as TEXT to the control and make the BG color of the control to Transparent
2. place the watermark picture UNDER the text-control
3. Get the image of the whole VIs Front Panel using methods
10-10-2007 10:54 AM
Thanks all.
I was a beginner in image programming.
I will try above.