03-19-2020 12:46 AM - edited 03-19-2020 12:49 AM
Sya ingin bertanya bagaimana cara menyimpan gambar dari suatu grafik, dengan kondisi programnya terus menyimpan gambar seiring masuknya data baru pada grafik tersebut mohon bantuannya
Solved! Go to Solution.
03-19-2020 04:02 AM
Google translate:
I want to ask how to save a picture from a graphic, with the condition that the program continues to save the image as new data is entered on the graph, please help.
03-19-2020 04:19 AM - edited 03-19-2020 04:21 AM
You are now saving an image as the graph updates. But you're overwriting the same image every iteration.
If you want to save to a new image every iteration, use format into string to create a unique name for each iteration. You can use the loop counter, or a timestamp. Or use "Create File with Incrementing Suffix.vi" that does it all for you.
Note that the GetImage and the update of the image are not synchronised. So it's not defined which happens first. So you might get duplicate images, and miss images depening on execution order.
Google translate (no idea if it makes sense):
03-21-2020 01:16 AM
thanks you very much it was very helpfully wiebe@CARYA