java.lang.Object
ij.plugin.Duplicator
- All Implemented Interfaces:
PlugIn
,java.awt.event.ItemListener
,java.awt.event.TextListener
,java.util.EventListener
public class Duplicator extends java.lang.Object implements PlugIn, java.awt.event.TextListener, java.awt.event.ItemListener
This plugin implements the Image/Duplicate command.
// test script img1 = IJ.getImage(); img2 = new Duplicator().run(img1); //img2 = new Duplicator().run(img1,1,10); img2.show();
-
Constructor Summary
Constructors Constructor Description Duplicator()
-
Method Summary
Modifier and Type Method Description ImagePlus
crop(ImagePlus imp)
Returns a copy the current image or stack slice, cropped if there is a selection.static Overlay
cropOverlay(Overlay overlay, java.awt.Rectangle bounds)
static void
ignoreNextSelection()
void
itemStateChanged(java.awt.event.ItemEvent e)
ImagePlus
run(ImagePlus imp)
Returns a copy of the image, stack or hyperstack contained in the specified ImagePlus.ImagePlus
run(ImagePlus imp, int firstSlice, int lastSlice)
Returns a new stack containing a subrange of the specified stack.ImagePlus
run(ImagePlus imp, int firstC, int lastC, int firstZ, int lastZ, int firstT, int lastT)
Returns a new hyperstack containing a possibly reduced version of the input image.void
run(java.lang.String arg)
This method is called when the plugin is loaded.void
textValueChanged(java.awt.event.TextEvent e)
-
Constructor Details
-
Duplicator
public Duplicator()
-
-
Method Details
-
run
public void run(java.lang.String arg)Description copied from interface:PlugIn
This method is called when the plugin is loaded. 'arg', which may be blank, is the argument specified for this plugin in IJ_Props.txt. -
run
Returns a copy of the image, stack or hyperstack contained in the specified ImagePlus.- See Also:
ImagePlus.duplicate()
-
crop
Returns a copy the current image or stack slice, cropped if there is a selection.- See Also:
ImagePlus.crop()
,ImagePlus.crop(String)
-
run
Returns a new stack containing a subrange of the specified stack. -
run
public ImagePlus run(ImagePlus imp, int firstC, int lastC, int firstZ, int lastZ, int firstT, int lastT)Returns a new hyperstack containing a possibly reduced version of the input image. -
cropOverlay
-
textValueChanged
public void textValueChanged(java.awt.event.TextEvent e)- Specified by:
textValueChanged
in interfacejava.awt.event.TextListener
-
itemStateChanged
public void itemStateChanged(java.awt.event.ItemEvent e)- Specified by:
itemStateChanged
in interfacejava.awt.event.ItemListener
-
ignoreNextSelection
public static void ignoreNextSelection()
-