> On Mar 30, 2019, at 2:56 PM, Stein Rørvik <[hidden email]> wrote:
> > In a macro, you can use the functions > > setFont(... > setJustification(... > setForegroundColor(... > setBackgroundColor(... > > among others without an open image. > > But the > > setColor(... > > function gives an error message without an open image. > > Same applies to > > setLineWidth(... > > Can these two restrictions be removed I would prefer to not remove these restrictions. The color set by setColor() and line width set by setLineWidth() are associated with an image, so they are reset when you open a new image. Making them global would likely break some existing macros. -wayne > It often makes sense to put such initialization functions at the start of a macro when no image might have been opened or created yet. > > Besides, setColor and setLineWidth are not specific to the active image but a global setting as far as I can see. > > I tested the other set.. functions without images and they work as expected by giving missing image error message only when needed; when the settings are specific to one image. > > Stein -- ImageJ mailing list: http://imagej.nih.gov/ij/list.html |
I agree that the behaviour should not be altered if the setting is per image.
But I do not get the same behaviour, for me the setColor is global. Also, it seems setLineWidth is reset when changing images, but it is not remembered per image. Test macro: ------------------------------ run("Close All"); run("Clown (14K)"); run("Clown (14K)"); selectImage(1); setColor("yellow"); setLineWidth(3); drawLine(100, 50, 200, 50); selectImage(2); setColor("cyan"); setLineWidth(6); drawLine(100, 50, 200, 50); selectImage(1); drawLine(100, 100, 200, 100); selectImage(2); drawLine(100, 100, 200, 100); run("Tile"); ------------------------------ Stein -----Original Message----- From: ImageJ Interest Group <[hidden email]> On Behalf Of Wayne Rasband Sent: 31. mars 2019 18:26 To: [hidden email] Subject: Re: Using setColor without an open image > On Mar 30, 2019, at 2:56 PM, Stein Rørvik <[hidden email]> wrote: > > In a macro, you can use the functions > > setFont(... > setJustification(... > setForegroundColor(... > setBackgroundColor(... > > among others without an open image. > > But the > > setColor(... > > function gives an error message without an open image. > > Same applies to > > setLineWidth(... > > Can these two restrictions be removed I would prefer to not remove these restrictions. The color set by setColor() and line width set by setLineWidth() are associated with an image, so they are reset when you open a new image. Making them global would likely break some existing macros. -wayne > It often makes sense to put such initialization functions at the start of a macro when no image might have been opened or created yet. > > Besides, setColor and setLineWidth are not specific to the active image but a global setting as far as I can see. > > I tested the other set.. functions without images and they work as expected by giving missing image error message only when needed; when the settings are specific to one image. > > Stein -- ImageJ mailing list: http://imagej.nih.gov/ij/list.html -- ImageJ mailing list: http://imagej.nih.gov/ij/list.html |
> On Apr 1, 2019, at 8:15 AM, Stein Rørvik <[hidden email]> wrote:
> > I agree that the behaviour should not be altered if the setting is per image. > But I do not get the same behaviour, for me the setColor is global. > > Also, it seems setLineWidth is reset when changing images, > but it is not remembered per image. With the latest daily build (1.52o13), the setColor() and setLineWidth() settings are both global. Here is an example: close("*"); setColor("red"); setLineWidth(40); newImage("Untitled", "rgb black", 507, 446, 1); drawLine(0,0,507,446); run("Leaf (36K)"); drawLine(0,0,507,446); selectImage(1); drawLine(507,0,0,446); selectImage(2); drawLine(507,0,0,446); run("Tile”); -wayne > Test macro: > ------------------------------ > run("Close All"); > run("Clown (14K)"); > run("Clown (14K)"); > > selectImage(1); > setColor("yellow"); > setLineWidth(3); > drawLine(100, 50, 200, 50); > > selectImage(2); > setColor("cyan"); > setLineWidth(6); > drawLine(100, 50, 200, 50); > > selectImage(1); > drawLine(100, 100, 200, 100); > > selectImage(2); > drawLine(100, 100, 200, 100); > > run("Tile"); > ------------------------------ > > Stein > > -----Original Message----- > From: ImageJ Interest Group <[hidden email]> On Behalf Of Wayne Rasband > Sent: 31. mars 2019 18:26 > To: [hidden email] > Subject: Re: Using setColor without an open image > >> On Mar 30, 2019, at 2:56 PM, Stein Rørvik <[hidden email]> wrote: >> >> In a macro, you can use the functions >> >> setFont(... >> setJustification(... >> setForegroundColor(... >> setBackgroundColor(... >> >> among others without an open image. >> >> But the >> >> setColor(... >> >> function gives an error message without an open image. >> >> Same applies to >> >> setLineWidth(... >> >> Can these two restrictions be removed > > I would prefer to not remove these restrictions. The color set by setColor() and line width set by setLineWidth() are associated with an image, so they are reset when you open a new image. Making them global would likely break some existing macros. > > -wayne > > >> It often makes sense to put such initialization functions at the start of a macro when no image might have been opened or created yet. >> >> Besides, setColor and setLineWidth are not specific to the active image but a global setting as far as I can see. >> >> I tested the other set.. functions without images and they work as expected by giving missing image error message only when needed; when the settings are specific to one image. >> >> Stein -- ImageJ mailing list: http://imagej.nih.gov/ij/list.html |
Thanks!
I checked and it seems to be a long time ago the setColor value was retained per image, it was in v1.33. With v1.34 and forward the example macro behaved the same. So this change would not be likely to break any existing macros. Stein -----Original Message----- From: ImageJ Interest Group <[hidden email]> On Behalf Of Wayne Rasband Sent: 2. april 2019 00:39 To: [hidden email] Subject: Re: Using setColor without an open image > On Apr 1, 2019, at 8:15 AM, Stein Rørvik <[hidden email]> wrote: > > I agree that the behaviour should not be altered if the setting is per image. > But I do not get the same behaviour, for me the setColor is global. > > Also, it seems setLineWidth is reset when changing images, but it is > not remembered per image. With the latest daily build (1.52o13), the setColor() and setLineWidth() settings are both global. Here is an example: close("*"); setColor("red"); setLineWidth(40); newImage("Untitled", "rgb black", 507, 446, 1); drawLine(0,0,507,446); run("Leaf (36K)"); drawLine(0,0,507,446); selectImage(1); drawLine(507,0,0,446); selectImage(2); drawLine(507,0,0,446); run("Tile”); -wayne > Test macro: > ------------------------------ > run("Close All"); > run("Clown (14K)"); > run("Clown (14K)"); > > selectImage(1); > setColor("yellow"); > setLineWidth(3); > drawLine(100, 50, 200, 50); > > selectImage(2); > setColor("cyan"); > setLineWidth(6); > drawLine(100, 50, 200, 50); > > selectImage(1); > drawLine(100, 100, 200, 100); > > selectImage(2); > drawLine(100, 100, 200, 100); > > run("Tile"); > ------------------------------ > > Stein > > -----Original Message----- > From: ImageJ Interest Group <[hidden email]> On Behalf Of Wayne > Rasband > Sent: 31. mars 2019 18:26 > To: [hidden email] > Subject: Re: Using setColor without an open image > >> On Mar 30, 2019, at 2:56 PM, Stein Rørvik <[hidden email]> wrote: >> >> In a macro, you can use the functions >> >> setFont(... >> setJustification(... >> setForegroundColor(... >> setBackgroundColor(... >> >> among others without an open image. >> >> But the >> >> setColor(... >> >> function gives an error message without an open image. >> >> Same applies to >> >> setLineWidth(... >> >> Can these two restrictions be removed > > I would prefer to not remove these restrictions. The color set by setColor() and line width set by setLineWidth() are associated with an image, so they are reset when you open a new image. Making them global would likely break some existing macros. > > -wayne > > >> It often makes sense to put such initialization functions at the start of a macro when no image might have been opened or created yet. >> >> Besides, setColor and setLineWidth are not specific to the active image but a global setting as far as I can see. >> >> I tested the other set.. functions without images and they work as expected by giving missing image error message only when needed; when the settings are specific to one image. >> >> Stein -- ImageJ mailing list: http://imagej.nih.gov/ij/list.html -- ImageJ mailing list: http://imagej.nih.gov/ij/list.html |
Free forum by Nabble | Edit this page |