All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ij.plugin.TextFileReader Maven / Gradle / Ivy

Go to download

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