IJP-ImageIO enable reading and writing images using Java ImageIO codecs. The core ImageIO formats: JPEG, PCX, PNG, PNM, BMP, WBMP, and GIF. TIFF supports reading and writing using various compression schemes: LZW, JPEG, ZLib, and Deflate. For more detailed information see Wiki.
IJP-ImageIO install plugins under following ImageJ menu locations:
-
File/Save As
- PNG ...
- PNM ...
- Compressed TIFF ...
-
Plugins/Image IO:
- Open ...
- Open with preview ...
- Save as ...
-
Help/About Plugins
- IJP-ImageIO ...
- IJP-ImageIO readers & writers ...
Image I/O plugin bundle requires ImageJ 1.48v or newer and Java 9 or newer.
-
Download the latest binary release of ijp-imageio from Releases page:
ijp_imageio-<version>.jar
-
Copy
ijp_imageio-<version>.jar
to ImageJ plugins directory. You can find location of ImageJ plugins directory by selecting "Plugins">"Utilities">"ImageJ Properties", look for value of tag "plugins dir" near the bottom of the displayed Properties' window. -
Restart ImageJ to load newly installed plugins.
You IJP-ImageIO as a stand-alone library. You will need to add dependency on:
groupId : net.sf.ij-plugins
artifactId: ijp_imageio
version : <version>
For instance, for [SBT] it would be:
"net.sf.ij-plugins" % "ijp_imageio" % "<version>"
- Java compiler, tested with Oracle Java 11 (http://java.oracle.com). Java 9+ is required for TIFF support.
- SBT build tool
To rebuild and start included version of ImageJ type:
$ sbt ijRun
You can use additional image codecs that support Java ImageIO API and service registration. The JAR with the additional codec will need to be added to application class path. For instance, you can get JPEG2000 support by adding JAR from jai-imageio-jpeg2000 project.
Copyright (C) 2002-2021 Jarek Sacha
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA