Edit>Copy to Image Info available in Fiji?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
9 messages Options
Reply | Threaded
Open this post in threaded view
|

Edit>Copy to Image Info available in Fiji?

Martin Höhne
Dear all,

chapter 23 of the ImageJ User Guide describes the "Edit>Copy to Image Info".

http://rsbweb.nih.gov/ij/docs/guide/146-23.html#sub:ImageJ-Macro-Editor

However, this command seems to be missing in the Fiji Script Editor. Is there a way to access this function in Fiji?

thanks,
Martin
Reply | Threaded
Open this post in threaded view
|

Re: Edit>Copy to Image Info available in Fiji?

Kota Miura
Hi Martin,

This is possible if you use the text editor

[Plugins > New > Text Window...]

Cheers,
Kota


On Mon, Jan 27, 2014 at 12:13 PM, Martin Höhne <[hidden email]>wrote:

> Dear all,
>
> chapter 23 of the ImageJ User Guide describes the "Edit>Copy to Image
> Info".
>
> http://rsbweb.nih.gov/ij/docs/guide/146-23.html#sub:ImageJ-Macro-Editor
>
> However, this command seems to be missing in the Fiji Script Editor. Is
> there a way to access this function in Fiji?
>
> thanks,
> Martin
>
>
>
> --
> View this message in context:
> http://imagej.1557.x6.nabble.com/Edit-Copy-to-Image-Info-available-in-Fiji-tp5006293.html
> Sent from the ImageJ mailing list archive at Nabble.com.
>
> --
> ImageJ mailing list: http://imagej.nih.gov/ij/list.html
>



--

-------------------------------------------------------------*Dr. Kota Miura*

Scientist & IT Engineer
Centre for Molecular and Cellular Imaging,
European Molecular Biology Laboratory
Meyerhofstr. 1
69117 Heidelberg
GERMANY

Tel +49 6221 387 404

Mobile +49 160 95001177

Fax +49 6221 387 512

http://cmci.embl.de
-------------------------------------------------------------

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: Edit>Copy to Image Info available in Fiji?

Jan Eglinger
In reply to this post by Martin Höhne
Dear Martin,

On 27.01.2014, 12:13 PM, Martin Höhne wrote:
> chapter 23 of the ImageJ User Guide describes the "Edit>Copy to Image Info".
>
> http://rsbweb.nih.gov/ij/docs/guide/146-23.html#sub:ImageJ-Macro-Editor
>
> However, this command seems to be missing in the Fiji Script Editor. Is
> there a way to access this function in Fiji?

The script editor is lacking this functionality, but you can open an
ImageJ text window using *Plugins > New > Text Window...* which provides
the required command.

Via macro code:
     run("Text Window...", "name=Untitled width=60 height=16 menu");

Hth,
Jan

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: Edit>Copy to Image Info available in Fiji?

Martin Höhne
Thank you Kota and Jan!


Jan Eglinger wrote
Dear Martin,

On 27.01.2014, 12:13 PM, Martin Höhne wrote:
> chapter 23 of the ImageJ User Guide describes the "Edit>Copy to Image Info".
>
> http://rsbweb.nih.gov/ij/docs/guide/146-23.html#sub:ImageJ-Macro-Editor
>
> However, this command seems to be missing in the Fiji Script Editor. Is
> there a way to access this function in Fiji?

The script editor is lacking this functionality, but you can open an
ImageJ text window using *Plugins > New > Text Window...* which provides
the required command.

Via macro code:
     run("Text Window...", "name=Untitled width=60 height=16 menu");

Hth,
Jan

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: Edit>Copy to Image Info available in Fiji?

tongtao
In reply to this post by Jan Eglinger
I know this thread is 6 years old. However, I am testing this function today,
I found out that this "copy to image info" is not working in my latest Fiji,
(Fiji Is Just) ImageJ 2.1.0/1.53e; Java 1.8.0_261 [64-bit]; Mac OS X
10.11.6.

Any ideas?

Thank you.

Best,



--
Sent from: http://imagej.1557.x6.nabble.com/

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: Edit>Copy to Image Info available in Fiji?

jmutterer
I can confirm that this doesn't work in ImageJ1 either.

The code for  "Copy to Image Info" editor command should be called here:
https://github.com/imagej/imagej1/blob/bdafa406a795de1514b00f969fe879e8eeadde85/ij/plugin/frame/Editor.java#L843

but this is never reached because the command is caught by a previous if
statement at line
https://github.com/imagej/imagej1/blob/bdafa406a795de1514b00f969fe879e8eeadde85/ij/plugin/frame/Editor.java#L813


Jerome

On Mon, 28 Sep 2020 at 02:13, tongtao <[hidden email]> wrote:

> I know this thread is 6 years old. However, I am testing this function
> today,
> I found out that this "copy to image info" is not working in my latest
> Fiji,
> (Fiji Is Just) ImageJ 2.1.0/1.53e; Java 1.8.0_261 [64-bit]; Mac OS X
> 10.11.6.
>
> Any ideas?
>
> Thank you.
>
> Best,
>
>
>
> --
> Sent from: http://imagej.1557.x6.nabble.com/
>
> --
> ImageJ mailing list: http://imagej.nih.gov/ij/list.html
>

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: Edit>Copy to Image Info available in Fiji?

Stein Rørvik
This command seems to be obsolete a long time ago.

The setMetadata("Info", string) should work as its much more flexible replacement.

You probably need to set the text to be copied using a different method than your old macro; there are many possibilities here. It will help if you post an example of the surrounding code which illustrates what you want to do.

Stein

-----Original Message-----
Sent: 28. september 2020 10:55
Subject: Re: Edit>Copy to Image Info available in Fiji?

I can confirm that this doesn't work in ImageJ1 either.


--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: Edit>Copy to Image Info available in Fiji?

Wayne Rasband-2
In reply to this post by tongtao
> On Sep 27, 2020, at 8:11 PM, tongtao <[hidden email]> wrote:
>
> I know this thread is 6 years old. However, I am testing this function today,
> I found out that this "copy to image info" is not working in my latest Fiji,
> (Fiji Is Just) ImageJ 2.1.0/1.53e; Java 1.8.0_261 [64-bit]; Mac OS X
> 10.11.6.

The Edit>Copy to Image Info command in the ImageJ text editor is working again in the 1.53f23 daily build.

-wayne

> Any ideas?
>
> Thank you.
>
> Best,
>
> --
> Sent from: http://imagej.1557.x6.nabble.com/

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: Edit>Copy to Image Info available in Fiji?

tongtao
Thank you very much!

I confirm that this command works again!

(Fiji Is Just) ImageJ 2.1.0/1.53f23; Java 1.8.0_172 [64-bit]; Windows 10
10.0;

Best regards,

--
Tao


On Wed, Sep 30, 2020 at 12:36 AM Wayne Rasband <[hidden email]> wrote:

> > On Sep 27, 2020, at 8:11 PM, tongtao <[hidden email]> wrote:
> >
> > I know this thread is 6 years old. However, I am testing this function
> today,
> > I found out that this "copy to image info" is not working in my latest
> Fiji,
> > (Fiji Is Just) ImageJ 2.1.0/1.53e; Java 1.8.0_261 [64-bit]; Mac OS X
> > 10.11.6.
>
> The Edit>Copy to Image Info command in the ImageJ text editor is working
> again in the 1.53f23 daily build.
>
> -wayne
>
> > Any ideas?
> >
> > Thank you.
> >
> > Best,
> >
> > --
> > Sent from: http://imagej.1557.x6.nabble.com/
>
> --
> ImageJ mailing list: http://imagej.nih.gov/ij/list.html
>


--
Tao Tong

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html