macros.Plugin_Frame.src Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ij Show documentation
Show all versions of ij Show documentation
ImageJ is an open source Java image processing program inspired by NIH Image for the Macintosh.
import ij.*;
import ij.process.*;
import ij.gui.*;
import java.awt.*;
import ij.plugin.frame.*;
public class Plugin_Frame extends PlugInFrame {
public Plugin_Frame() {
super("Plugin_Frame");
TextArea ta = new TextArea(15, 50);
add(ta);
pack();
GUI.center(this);
show();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy