[Bug 192] New: com.sun.image.codec.jpeg doesn't work with ImageJ
bugzilla-daemon at icedtea.classpath.org
bugzilla-daemon at icedtea.classpath.org
Thu Sep 11 12:06:05 PDT 2008
http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=192
Summary: com.sun.image.codec.jpeg doesn't work with ImageJ
Product: IcedTea
Version: unspecified
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: IcedTea
AssignedTo: unassigned at icedtea.classpath.org
ReportedBy: adam at spicenitz.org
ImageJ is a widely used image processing system for Java. Unfortunately, it
doesn't build with icedtea6, because there are missing methods in
com.sun.image.codec.jpeg.
It also throws a runtime error when attempting to save a JPEG, because
com.sun.image.codec.jpeg.JPEGImageEncoder is supposed to be an interface, not a
class.
First, the source problem:
[javac] /home/agoode/ij-source/source/ij/plugin/JpegWriter.java:46: cannot
find symbol
[javac] symbol : method setHorizontalSubsampling(int,int)
[javac] location: class com.sun.image.codec.jpeg.JPEGEncodeParam
[javac] param.setHorizontalSubsampling(1, 1);
[javac] ^
[javac] /home/agoode/ij-source/source/ij/plugin/JpegWriter.java:47: cannot
find symbol
[javac] symbol : method setHorizontalSubsampling(int,int)
[javac] location: class com.sun.image.codec.jpeg.JPEGEncodeParam
[javac] param.setHorizontalSubsampling(2, 1);
[javac] ^
[javac] /home/agoode/ij-source/source/ij/plugin/JpegWriter.java:48: cannot
find symbol
[javac] symbol : method setVerticalSubsampling(int,int)
[javac] location: class com.sun.image.codec.jpeg.JPEGEncodeParam
[javac] param.setVerticalSubsampling(1, 1);
[javac] ^
[javac] /home/agoode/ij-source/source/ij/plugin/JpegWriter.java:49: cannot
find symbol
[javac] symbol : method setVerticalSubsampling(int,int)
[javac] location: class com.sun.image.codec.jpeg.JPEGEncodeParam
[javac] param.setVerticalSubsampling(2, 1);
Second, the runtime problem:
java.lang.IncompatibleClassChangeError: Found class
com.sun.image.codec.jpeg.JPEGImageEncoder, but interface was expected
at ij.plugin.JpegWriter.saveAsJpeg(JpegWriter.java:42)
at ij.plugin.JpegWriter.run(JpegWriter.java:27)
at ij.IJ.runPlugIn(IJ.java:146)
at ij.IJ.runPlugIn(IJ.java:119)
at ij.io.FileSaver.saveAsJpeg(FileSaver.java:247)
at ij.io.FileSaver.saveAsJpeg(FileSaver.java:238)
at ij.plugin.filter.Writer.run(Writer.java:24)
at
ij.plugin.filter.PlugInFilterRunner.processOneImage(PlugInFilterRunner.java:243)
at
ij.plugin.filter.PlugInFilterRunner.<init>(PlugInFilterRunner.java:102)
at ij.IJ.runPlugIn(IJ.java:148)
at ij.Executer.runCommand(Executer.java:104)
at ij.Executer.run(Executer.java:58)
at java.lang.Thread.run(Thread.java:636)
--
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the distro-pkg-dev
mailing list