Page 1 of 1

Export snapshot black picture

Posted: Tue Jan 16, 2024 3:19 pm
by SEAL29
Hi.
I have export the snapshot but the picture is black the path and file name is correct. I use this command:

Code: Select all

 set the JPEGQuality to 100
export snapshot from rect “15,30,260,340” to file tFilepath as JPEG

Re: Export snapshot black picture

Posted: Tue Jan 16, 2024 3:42 pm
by Klaus
Hi SEAL29,

you need to add a reference or LC will use GLOBAL coordinates (from the topleft of your monitor)
and not coords relative to your stack!

Try this:

Code: Select all

set the JPEGQuality to 100
export snapshot from rect “15,30,260,340” OF THIS CD to file tFilepath as JPEG
Best

Klaus

Re: Export snapshot black picture

Posted: Tue Jan 16, 2024 3:54 pm
by SEAL29
Thank you.