TMI-JPEG: Fixed issue with wrong class name for writer and reader spi.

This commit is contained in:
Harald Kuhr 2013-11-05 15:40:14 +01:00
parent f5a4fe03f4
commit c491c8a518

View File

@ -66,9 +66,9 @@ public class JPEGImageWriterSpi extends ImageWriterSpi {
new String[]{"JPEG", "jpeg", "JPG", "jpg"}, new String[]{"JPEG", "jpeg", "JPG", "jpg"},
new String[]{"jpg", "jpeg"}, new String[]{"jpg", "jpeg"},
new String[]{"image/jpeg"}, new String[]{"image/jpeg"},
"twelvemonkeys.imageio.plugins.jpeg.JPEGImageWriter", "com.twelvemonkeys.imageio.plugins.jpeg.JPEGImageWriter",
STANDARD_OUTPUT_TYPE, STANDARD_OUTPUT_TYPE,
new String[] {"twelvemonkeys.imageio.plugins.jpeg.JPEGImageReaderSpi"}, new String[] {"com.twelvemonkeys.imageio.plugins.jpeg.JPEGImageReaderSpi"},
true, null, null, null, null, true, null, null, null, null,
true, null, null, null, null true, null, null, null, null
); );