
ij.plugin.TextFileReader 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.
The newest version!
package ij.plugin;
//import java.awt.*;
//import java.awt.image.*;
//import java.io.*;
import ij.*;
//import ij.io.*;
//import ij.process.*;
/** This plugin displays the contents of a text file in a window. */
public class TextFileReader implements PlugIn {
public void run(String arg) {
new ij.text.TextWindow(arg,400,450);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy