extracting ROI with the Very Large Image Tools
A beginner's question:
I recorded a macro starting with ROI extraction from a "Very Large Image" (261 MB, RGB). The macro bugs at this first step when applied on anything else than the picture used to record the macro, with an error message saying: " This command requires an open image that is a Verly Large Image", even though the open image is indeed a large one (370 MB) .
How should the macro be corrected?
Thank you!
I recorded a macro starting with ROI extraction from a "Very Large Image" (261 MB, RGB). The macro bugs at this first step when applied on anything else than the picture used to record the macro, with an error message saying: " This command requires an open image that is a Verly Large Image", even though the open image is indeed a large one (370 MB) .
How should the macro be corrected?
Thank you!
0
Best Answer
-
It looks like a problem with macro recording, image name should not be used in the macro, it's filed as a bug.
You can fix your macro replacingWith Adjust.ImageCommands.Define(AM_1a)
.Run(var1, image1)
End With
with this commandWith Application.DocumentCommands.Active(AM_1a)
.Run(image1)
End With
Yuri
0
Answers