10-13-2010 08:51 AM
I would like to save 2D graph in LabWindows/.CVI as an image file such as bmp and tiff.
Thanks
10-13-2010 08:56 AM
You can use the following command sequence:
GetCtrlDisplayBitmap ( panel, PANEL_GRAPH, 1, &bitmap_id );
SaveBitmapToPNGFile ( bitmap_id, file_name );
DiscardBitmap ( bitmap_id );
Wolfgang
10-13-2010 10:25 AM
That will do.
Thank you very much