Java Code Examples for javax.imageio.ImageWriteParam#getCompressionTypes()
The following examples show how to use
javax.imageio.ImageWriteParam#getCompressionTypes() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ImageFileWriters.java From MyBox with Apache License 2.0 | 6 votes |
public static ImageWriteParam getWriterParam(ImageAttributes attributes, ImageWriter writer) { try { ImageWriteParam param = writer.getDefaultWriteParam(); if (param.canWriteCompressed()) { param.setCompressionMode(ImageWriteParam.MODE_EXPLICIT); if (attributes != null && attributes.getCompressionType() != null) { param.setCompressionType(attributes.getCompressionType()); } else { String[] compressionTypes = param.getCompressionTypes(); if (compressionTypes != null) { param.setCompressionType(compressionTypes[0]); } } if (attributes != null && attributes.getQuality() > 0) { param.setCompressionQuality(attributes.getQuality() / 100.0f); } else { param.setCompressionQuality(1.0f); } } return param; } catch (Exception e) { logger.error(e.toString()); return null; } }
Example 2
Source File: ImageCompressionTypesTest.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public ImageCompressionTypesTest(String format) { Iterator it = ImageIO.getImageWritersByFormatName(format); while (it.hasNext()) { writer = (ImageWriter) it.next(); break; } ImageWriteParam param = writer.getDefaultWriteParam(); param.setCompressionMode(ImageWriteParam.MODE_EXPLICIT); System.out.println("Checking compression types for : " + format); String compTypes[] = param.getCompressionTypes(); if (compTypes.length > 1) { for (int i = 0; i < compTypes.length; i++) { for (int j = i + 1; j < compTypes.length; j++) { if (compTypes[i].equalsIgnoreCase(compTypes[j])) { throw new RuntimeException("Duplicate compression" + " type exists for image format " + format); } } } } }
Example 3
Source File: ImageValue.java From MyBox with Apache License 2.0 | 5 votes |
public static String[] getCompressionTypes(String imageFormat) { try { ImageWriter writer = ImageFileWriters.getWriter(imageFormat); ImageWriteParam param = writer.getDefaultWriteParam(); return param.getCompressionTypes(); } catch (Exception e) { return null; } }
Example 4
Source File: ImageWriteParamMisc.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
private static void test4446842() { ImageWriteParam iwp = new ImageWriteParam(null); try { iwp.getCompressionTypes(); throw new RuntimeException("Failed to get UOE!"); } catch (UnsupportedOperationException e) { } }
Example 5
Source File: ImageWriteParamMisc.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
private static void test4446842() { ImageWriteParam iwp = new ImageWriteParam(null); try { iwp.getCompressionTypes(); throw new RuntimeException("Failed to get UOE!"); } catch (UnsupportedOperationException e) { } }
Example 6
Source File: BMPSubsamplingTest.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
public BMPSubsamplingTest() throws IOException { ImageWriter writer = ImageIO.getImageWritersByFormatName(format).next(); ImageWriteParam wparam = writer.getDefaultWriteParam(); wparam.setCompressionMode(ImageWriteParam.MODE_EXPLICIT); String[] types = wparam.getCompressionTypes(); for (int t = 0; t < img_types.length; t++) { int img_type = img_types[t]; System.out.println("Test for " + getImageTypeName(img_type)); BufferedImage image = getTestImage(img_type); ImageTypeSpecifier specifier = new ImageTypeSpecifier(image); if (!writer.getOriginatingProvider().canEncodeImage(specifier)) { System.out.println("Writer does not support encoding this buffered image type."); continue; } for(int i=0; i<types.length; i++) { if ("BI_JPEG".equals(types[i])) { // exclude BI_JPEG from automatic test // due to color diffusion effect on the borders. continue; } if (canEncodeImage(types[i], specifier, img_type)) { System.out.println("compression type: " + types[i] + " Supported for " + getImageTypeName(img_type)); } else { System.out.println("compression type: " + types[i] + " NOT Supported for " + getImageTypeName(img_type)); continue; } ImageWriteParam imageWriteParam = getImageWriteParam(writer, types[i]); imageWriteParam.setSourceSubsampling(srcXSubsampling, srcYSubsampling, 0, 0); File outputFile = new File("subsampling_test_" + getImageTypeName(img_type) + "__" + types[i] + ".bmp"); ImageOutputStream ios = ImageIO.createImageOutputStream(outputFile); writer.setOutput(ios); IIOImage iioImg = new IIOImage(image, null, null); writer.write(null, iioImg, imageWriteParam); ios.flush(); ios.close(); BufferedImage outputImage = ImageIO.read(outputFile); checkTestImage(outputImage); } } }
Example 7
Source File: BMPSubsamplingTest.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 4 votes |
public BMPSubsamplingTest() throws IOException { ImageWriter writer = ImageIO.getImageWritersByFormatName(format).next(); ImageWriteParam wparam = writer.getDefaultWriteParam(); wparam.setCompressionMode(ImageWriteParam.MODE_EXPLICIT); String[] types = wparam.getCompressionTypes(); for (int t = 0; t < img_types.length; t++) { int img_type = img_types[t]; System.out.println("Test for " + getImageTypeName(img_type)); BufferedImage image = getTestImage(img_type); ImageTypeSpecifier specifier = new ImageTypeSpecifier(image); if (!writer.getOriginatingProvider().canEncodeImage(specifier)) { System.out.println("Writer does not support encoding this buffered image type."); continue; } for(int i=0; i<types.length; i++) { if ("BI_JPEG".equals(types[i])) { // exclude BI_JPEG from automatic test // due to color diffusion effect on the borders. continue; } if (canEncodeImage(types[i], specifier, img_type)) { System.out.println("compression type: " + types[i] + " Supported for " + getImageTypeName(img_type)); } else { System.out.println("compression type: " + types[i] + " NOT Supported for " + getImageTypeName(img_type)); continue; } ImageWriteParam imageWriteParam = getImageWriteParam(writer, types[i]); imageWriteParam.setSourceSubsampling(srcXSubsampling, srcYSubsampling, 0, 0); File outputFile = new File("subsampling_test_" + getImageTypeName(img_type) + "__" + types[i] + ".bmp"); ImageOutputStream ios = ImageIO.createImageOutputStream(outputFile); writer.setOutput(ios); IIOImage iioImg = new IIOImage(image, null, null); writer.write(null, iioImg, imageWriteParam); ios.flush(); ios.close(); BufferedImage outputImage = ImageIO.read(outputFile); checkTestImage(outputImage); } } }
Example 8
Source File: BMPSubsamplingTest.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
public BMPSubsamplingTest() throws IOException { ImageWriter writer = ImageIO.getImageWritersByFormatName(format).next(); ImageWriteParam wparam = writer.getDefaultWriteParam(); wparam.setCompressionMode(ImageWriteParam.MODE_EXPLICIT); String[] types = wparam.getCompressionTypes(); for (int t = 0; t < img_types.length; t++) { int img_type = img_types[t]; System.out.println("Test for " + getImageTypeName(img_type)); BufferedImage image = getTestImage(img_type); ImageTypeSpecifier specifier = new ImageTypeSpecifier(image); if (!writer.getOriginatingProvider().canEncodeImage(specifier)) { System.out.println("Writer does not support encoding this buffered image type."); continue; } for(int i=0; i<types.length; i++) { if ("BI_JPEG".equals(types[i])) { // exclude BI_JPEG from automatic test // due to color diffusion effect on the borders. continue; } if (canEncodeImage(types[i], specifier, img_type)) { System.out.println("compression type: " + types[i] + " Supported for " + getImageTypeName(img_type)); } else { System.out.println("compression type: " + types[i] + " NOT Supported for " + getImageTypeName(img_type)); continue; } ImageWriteParam imageWriteParam = getImageWriteParam(writer, types[i]); imageWriteParam.setSourceSubsampling(srcXSubsampling, srcYSubsampling, 0, 0); File outputFile = new File("subsampling_test_" + getImageTypeName(img_type) + "__" + types[i] + ".bmp"); ImageOutputStream ios = ImageIO.createImageOutputStream(outputFile); writer.setOutput(ios); IIOImage iioImg = new IIOImage(image, null, null); writer.write(null, iioImg, imageWriteParam); ios.flush(); ios.close(); BufferedImage outputImage = ImageIO.read(outputFile); checkTestImage(outputImage); } } }
Example 9
Source File: LSBPlugin.java From openstego with GNU General Public License v2.0 | 4 votes |
/** * Method to get the list of supported file extensions for writing * * @return List of supported file extensions for writing * @throws OpenStegoException */ @Override public List<String> getWritableFileExtensions() throws OpenStegoException { if (writeFormats != null) { return writeFormats; } super.getWritableFileExtensions(); String format = null; String[] compTypes = null; Iterator<ImageWriter> iter = null; ImageWriteParam writeParam = null; for (int i = writeFormats.size() - 1; i >= 0; i--) { format = writeFormats.get(i); iter = ImageIO.getImageWritersBySuffix(format); while (iter.hasNext()) { writeParam = (iter.next()).getDefaultWriteParam(); try { writeParam.setCompressionMode(ImageWriteParam.MODE_EXPLICIT); compTypes = writeParam.getCompressionTypes(); if (compTypes.length > 0) { writeParam.setCompressionType(compTypes[0]); } } catch (UnsupportedOperationException uoEx) { // Compression not supported break; } // Only lossless image compression is supported if (writeParam.isCompressionLossless()) { break; } writeFormats.remove(i); } } // Expicilty removing GIF and WBMP formats, as they use unsupported color models writeFormats.remove("gif"); writeFormats.remove("wbmp"); // Expicilty removing TIF(F) formats, as they are not working correctly - TODO check why writeFormats.remove("tif"); writeFormats.remove("tiff"); return writeFormats; }
Example 10
Source File: BMPSubsamplingTest.java From jdk8u_jdk with GNU General Public License v2.0 | 4 votes |
public BMPSubsamplingTest() throws IOException { ImageWriter writer = ImageIO.getImageWritersByFormatName(format).next(); ImageWriteParam wparam = writer.getDefaultWriteParam(); wparam.setCompressionMode(ImageWriteParam.MODE_EXPLICIT); String[] types = wparam.getCompressionTypes(); for (int t = 0; t < img_types.length; t++) { int img_type = img_types[t]; System.out.println("Test for " + getImageTypeName(img_type)); BufferedImage image = getTestImage(img_type); ImageTypeSpecifier specifier = new ImageTypeSpecifier(image); if (!writer.getOriginatingProvider().canEncodeImage(specifier)) { System.out.println("Writer does not support encoding this buffered image type."); continue; } for(int i=0; i<types.length; i++) { if ("BI_JPEG".equals(types[i])) { // exclude BI_JPEG from automatic test // due to color diffusion effect on the borders. continue; } if (canEncodeImage(types[i], specifier, img_type)) { System.out.println("compression type: " + types[i] + " Supported for " + getImageTypeName(img_type)); } else { System.out.println("compression type: " + types[i] + " NOT Supported for " + getImageTypeName(img_type)); continue; } ImageWriteParam imageWriteParam = getImageWriteParam(writer, types[i]); imageWriteParam.setSourceSubsampling(srcXSubsampling, srcYSubsampling, 0, 0); File outputFile = new File("subsampling_test_" + getImageTypeName(img_type) + "__" + types[i] + ".bmp"); ImageOutputStream ios = ImageIO.createImageOutputStream(outputFile); writer.setOutput(ios); IIOImage iioImg = new IIOImage(image, null, null); writer.write(null, iioImg, imageWriteParam); ios.flush(); ios.close(); BufferedImage outputImage = ImageIO.read(outputFile); checkTestImage(outputImage); } } }
Example 11
Source File: BMPSubsamplingTest.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
public BMPSubsamplingTest() throws IOException { ImageWriter writer = ImageIO.getImageWritersByFormatName(format).next(); ImageWriteParam wparam = writer.getDefaultWriteParam(); wparam.setCompressionMode(ImageWriteParam.MODE_EXPLICIT); String[] types = wparam.getCompressionTypes(); for (int t = 0; t < img_types.length; t++) { int img_type = img_types[t]; System.out.println("Test for " + getImageTypeName(img_type)); BufferedImage image = getTestImage(img_type); ImageTypeSpecifier specifier = new ImageTypeSpecifier(image); if (!writer.getOriginatingProvider().canEncodeImage(specifier)) { System.out.println("Writer does not support encoding this buffered image type."); continue; } for(int i=0; i<types.length; i++) { if ("BI_JPEG".equals(types[i])) { // exclude BI_JPEG from automatic test // due to color diffusion effect on the borders. continue; } if (canEncodeImage(types[i], specifier, img_type)) { System.out.println("compression type: " + types[i] + " Supported for " + getImageTypeName(img_type)); } else { System.out.println("compression type: " + types[i] + " NOT Supported for " + getImageTypeName(img_type)); continue; } ImageWriteParam imageWriteParam = getImageWriteParam(writer, types[i]); imageWriteParam.setSourceSubsampling(srcXSubsampling, srcYSubsampling, 0, 0); File outputFile = new File("subsampling_test_" + getImageTypeName(img_type) + "__" + types[i] + ".bmp"); ImageOutputStream ios = ImageIO.createImageOutputStream(outputFile); writer.setOutput(ios); IIOImage iioImg = new IIOImage(image, null, null); writer.write(null, iioImg, imageWriteParam); ios.flush(); ios.close(); BufferedImage outputImage = ImageIO.read(outputFile); checkTestImage(outputImage); } } }
Example 12
Source File: BMPSubsamplingTest.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
public BMPSubsamplingTest() throws IOException { ImageWriter writer = ImageIO.getImageWritersByFormatName(format).next(); ImageWriteParam wparam = writer.getDefaultWriteParam(); wparam.setCompressionMode(ImageWriteParam.MODE_EXPLICIT); String[] types = wparam.getCompressionTypes(); for (int t = 0; t < img_types.length; t++) { int img_type = img_types[t]; System.out.println("Test for " + getImageTypeName(img_type)); BufferedImage image = getTestImage(img_type); ImageTypeSpecifier specifier = new ImageTypeSpecifier(image); if (!writer.getOriginatingProvider().canEncodeImage(specifier)) { System.out.println("Writer does not support encoding this buffered image type."); continue; } for(int i=0; i<types.length; i++) { if ("BI_JPEG".equals(types[i])) { // exclude BI_JPEG from automatic test // due to color diffusion effect on the borders. continue; } if (canEncodeImage(types[i], specifier, img_type)) { System.out.println("compression type: " + types[i] + " Supported for " + getImageTypeName(img_type)); } else { System.out.println("compression type: " + types[i] + " NOT Supported for " + getImageTypeName(img_type)); continue; } ImageWriteParam imageWriteParam = getImageWriteParam(writer, types[i]); imageWriteParam.setSourceSubsampling(srcXSubsampling, srcYSubsampling, 0, 0); File outputFile = new File("subsampling_test_" + getImageTypeName(img_type) + "__" + types[i] + ".bmp"); ImageOutputStream ios = ImageIO.createImageOutputStream(outputFile); writer.setOutput(ios); IIOImage iioImg = new IIOImage(image, null, null); writer.write(null, iioImg, imageWriteParam); ios.flush(); ios.close(); BufferedImage outputImage = ImageIO.read(outputFile); checkTestImage(outputImage); } } }
Example 13
Source File: BMPSubsamplingTest.java From hottub with GNU General Public License v2.0 | 4 votes |
public BMPSubsamplingTest() throws IOException { ImageWriter writer = ImageIO.getImageWritersByFormatName(format).next(); ImageWriteParam wparam = writer.getDefaultWriteParam(); wparam.setCompressionMode(ImageWriteParam.MODE_EXPLICIT); String[] types = wparam.getCompressionTypes(); for (int t = 0; t < img_types.length; t++) { int img_type = img_types[t]; System.out.println("Test for " + getImageTypeName(img_type)); BufferedImage image = getTestImage(img_type); ImageTypeSpecifier specifier = new ImageTypeSpecifier(image); if (!writer.getOriginatingProvider().canEncodeImage(specifier)) { System.out.println("Writer does not support encoding this buffered image type."); continue; } for(int i=0; i<types.length; i++) { if ("BI_JPEG".equals(types[i])) { // exclude BI_JPEG from automatic test // due to color diffusion effect on the borders. continue; } if (canEncodeImage(types[i], specifier, img_type)) { System.out.println("compression type: " + types[i] + " Supported for " + getImageTypeName(img_type)); } else { System.out.println("compression type: " + types[i] + " NOT Supported for " + getImageTypeName(img_type)); continue; } ImageWriteParam imageWriteParam = getImageWriteParam(writer, types[i]); imageWriteParam.setSourceSubsampling(srcXSubsampling, srcYSubsampling, 0, 0); File outputFile = new File("subsampling_test_" + getImageTypeName(img_type) + "__" + types[i] + ".bmp"); ImageOutputStream ios = ImageIO.createImageOutputStream(outputFile); writer.setOutput(ios); IIOImage iioImg = new IIOImage(image, null, null); writer.write(null, iioImg, imageWriteParam); ios.flush(); ios.close(); BufferedImage outputImage = ImageIO.read(outputFile); checkTestImage(outputImage); } } }
Example 14
Source File: BMPSubsamplingTest.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
public BMPSubsamplingTest() throws IOException { ImageWriter writer = ImageIO.getImageWritersByFormatName(format).next(); ImageWriteParam wparam = writer.getDefaultWriteParam(); wparam.setCompressionMode(ImageWriteParam.MODE_EXPLICIT); String[] types = wparam.getCompressionTypes(); for (int t = 0; t < img_types.length; t++) { int img_type = img_types[t]; System.out.println("Test for " + getImageTypeName(img_type)); BufferedImage image = getTestImage(img_type); ImageTypeSpecifier specifier = new ImageTypeSpecifier(image); if (!writer.getOriginatingProvider().canEncodeImage(specifier)) { System.out.println("Writer does not support encoding this buffered image type."); continue; } for(int i=0; i<types.length; i++) { if ("BI_JPEG".equals(types[i])) { // exclude BI_JPEG from automatic test // due to color diffusion effect on the borders. continue; } if (canEncodeImage(types[i], specifier, img_type)) { System.out.println("compression type: " + types[i] + " Supported for " + getImageTypeName(img_type)); } else { System.out.println("compression type: " + types[i] + " NOT Supported for " + getImageTypeName(img_type)); continue; } ImageWriteParam imageWriteParam = getImageWriteParam(writer, types[i]); imageWriteParam.setSourceSubsampling(srcXSubsampling, srcYSubsampling, 0, 0); File outputFile = new File("subsampling_test_" + getImageTypeName(img_type) + "__" + types[i] + ".bmp"); ImageOutputStream ios = ImageIO.createImageOutputStream(outputFile); writer.setOutput(ios); IIOImage iioImg = new IIOImage(image, null, null); writer.write(null, iioImg, imageWriteParam); ios.flush(); ios.close(); BufferedImage outputImage = ImageIO.read(outputFile); checkTestImage(outputImage); } } }
Example 15
Source File: BMPSubsamplingTest.java From dragonwell8_jdk with GNU General Public License v2.0 | 4 votes |
public BMPSubsamplingTest() throws IOException { ImageWriter writer = ImageIO.getImageWritersByFormatName(format).next(); ImageWriteParam wparam = writer.getDefaultWriteParam(); wparam.setCompressionMode(ImageWriteParam.MODE_EXPLICIT); String[] types = wparam.getCompressionTypes(); for (int t = 0; t < img_types.length; t++) { int img_type = img_types[t]; System.out.println("Test for " + getImageTypeName(img_type)); BufferedImage image = getTestImage(img_type); ImageTypeSpecifier specifier = new ImageTypeSpecifier(image); if (!writer.getOriginatingProvider().canEncodeImage(specifier)) { System.out.println("Writer does not support encoding this buffered image type."); continue; } for(int i=0; i<types.length; i++) { if ("BI_JPEG".equals(types[i])) { // exclude BI_JPEG from automatic test // due to color diffusion effect on the borders. continue; } if (canEncodeImage(types[i], specifier, img_type)) { System.out.println("compression type: " + types[i] + " Supported for " + getImageTypeName(img_type)); } else { System.out.println("compression type: " + types[i] + " NOT Supported for " + getImageTypeName(img_type)); continue; } ImageWriteParam imageWriteParam = getImageWriteParam(writer, types[i]); imageWriteParam.setSourceSubsampling(srcXSubsampling, srcYSubsampling, 0, 0); File outputFile = new File("subsampling_test_" + getImageTypeName(img_type) + "__" + types[i] + ".bmp"); ImageOutputStream ios = ImageIO.createImageOutputStream(outputFile); writer.setOutput(ios); IIOImage iioImg = new IIOImage(image, null, null); writer.write(null, iioImg, imageWriteParam); ios.flush(); ios.close(); BufferedImage outputImage = ImageIO.read(outputFile); checkTestImage(outputImage); } } }
Example 16
Source File: BMPSubsamplingTest.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
public BMPSubsamplingTest() throws IOException { ImageWriter writer = ImageIO.getImageWritersByFormatName(format).next(); ImageWriteParam wparam = writer.getDefaultWriteParam(); wparam.setCompressionMode(ImageWriteParam.MODE_EXPLICIT); String[] types = wparam.getCompressionTypes(); for (int t = 0; t < img_types.length; t++) { int img_type = img_types[t]; System.out.println("Test for " + getImageTypeName(img_type)); BufferedImage image = getTestImage(img_type); ImageTypeSpecifier specifier = new ImageTypeSpecifier(image); if (!writer.getOriginatingProvider().canEncodeImage(specifier)) { System.out.println("Writer does not support encoding this buffered image type."); continue; } for(int i=0; i<types.length; i++) { if ("BI_JPEG".equals(types[i])) { // exclude BI_JPEG from automatic test // due to color diffusion effect on the borders. continue; } if (canEncodeImage(types[i], specifier, img_type)) { System.out.println("compression type: " + types[i] + " Supported for " + getImageTypeName(img_type)); } else { System.out.println("compression type: " + types[i] + " NOT Supported for " + getImageTypeName(img_type)); continue; } ImageWriteParam imageWriteParam = getImageWriteParam(writer, types[i]); imageWriteParam.setSourceSubsampling(srcXSubsampling, srcYSubsampling, 0, 0); File outputFile = new File("subsampling_test_" + getImageTypeName(img_type) + "__" + types[i] + ".bmp"); ImageOutputStream ios = ImageIO.createImageOutputStream(outputFile); writer.setOutput(ios); IIOImage iioImg = new IIOImage(image, null, null); writer.write(null, iioImg, imageWriteParam); ios.flush(); ios.close(); BufferedImage outputImage = ImageIO.read(outputFile); checkTestImage(outputImage); } } }
Example 17
Source File: BMPSubsamplingTest.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
public BMPSubsamplingTest() throws IOException { ImageWriter writer = ImageIO.getImageWritersByFormatName(format).next(); ImageWriteParam wparam = writer.getDefaultWriteParam(); wparam.setCompressionMode(ImageWriteParam.MODE_EXPLICIT); String[] types = wparam.getCompressionTypes(); for (int t = 0; t < img_types.length; t++) { int img_type = img_types[t]; System.out.println("Test for " + getImageTypeName(img_type)); BufferedImage image = getTestImage(img_type); ImageTypeSpecifier specifier = new ImageTypeSpecifier(image); if (!writer.getOriginatingProvider().canEncodeImage(specifier)) { System.out.println("Writer does not support encoding this buffered image type."); continue; } for(int i=0; i<types.length; i++) { if ("BI_JPEG".equals(types[i])) { // exclude BI_JPEG from automatic test // due to color diffusion effect on the borders. continue; } if (canEncodeImage(types[i], specifier, img_type)) { System.out.println("compression type: " + types[i] + " Supported for " + getImageTypeName(img_type)); } else { System.out.println("compression type: " + types[i] + " NOT Supported for " + getImageTypeName(img_type)); continue; } ImageWriteParam imageWriteParam = getImageWriteParam(writer, types[i]); imageWriteParam.setSourceSubsampling(srcXSubsampling, srcYSubsampling, 0, 0); File outputFile = new File("subsampling_test_" + getImageTypeName(img_type) + "__" + types[i] + ".bmp"); ImageOutputStream ios = ImageIO.createImageOutputStream(outputFile); writer.setOutput(ios); IIOImage iioImg = new IIOImage(image, null, null); writer.write(null, iioImg, imageWriteParam); ios.flush(); ios.close(); BufferedImage outputImage = ImageIO.read(outputFile); checkTestImage(outputImage); } } }
Example 18
Source File: BMPSubsamplingTest.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
public BMPSubsamplingTest() throws IOException { ImageWriter writer = ImageIO.getImageWritersByFormatName(format).next(); ImageWriteParam wparam = writer.getDefaultWriteParam(); wparam.setCompressionMode(ImageWriteParam.MODE_EXPLICIT); String[] types = wparam.getCompressionTypes(); for (int t = 0; t < img_types.length; t++) { int img_type = img_types[t]; System.out.println("Test for " + getImageTypeName(img_type)); BufferedImage image = getTestImage(img_type); ImageTypeSpecifier specifier = new ImageTypeSpecifier(image); if (!writer.getOriginatingProvider().canEncodeImage(specifier)) { System.out.println("Writer does not support encoding this buffered image type."); continue; } for(int i=0; i<types.length; i++) { if ("BI_JPEG".equals(types[i])) { // exclude BI_JPEG from automatic test // due to color diffusion effect on the borders. continue; } if (canEncodeImage(types[i], specifier, img_type)) { System.out.println("compression type: " + types[i] + " Supported for " + getImageTypeName(img_type)); } else { System.out.println("compression type: " + types[i] + " NOT Supported for " + getImageTypeName(img_type)); continue; } ImageWriteParam imageWriteParam = getImageWriteParam(writer, types[i]); imageWriteParam.setSourceSubsampling(srcXSubsampling, srcYSubsampling, 0, 0); File outputFile = new File("subsampling_test_" + getImageTypeName(img_type) + "__" + types[i] + ".bmp"); ImageOutputStream ios = ImageIO.createImageOutputStream(outputFile); writer.setOutput(ios); IIOImage iioImg = new IIOImage(image, null, null); writer.write(null, iioImg, imageWriteParam); ios.flush(); ios.close(); BufferedImage outputImage = ImageIO.read(outputFile); checkTestImage(outputImage); } } }
Example 19
Source File: BMPSubsamplingTest.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public BMPSubsamplingTest() throws IOException { ImageWriter writer = ImageIO.getImageWritersByFormatName(format).next(); ImageWriteParam wparam = writer.getDefaultWriteParam(); wparam.setCompressionMode(ImageWriteParam.MODE_EXPLICIT); String[] types = wparam.getCompressionTypes(); for (int t = 0; t < img_types.length; t++) { int img_type = img_types[t]; System.out.println("Test for " + getImageTypeName(img_type)); BufferedImage image = getTestImage(img_type); ImageTypeSpecifier specifier = new ImageTypeSpecifier(image); if (!writer.getOriginatingProvider().canEncodeImage(specifier)) { System.out.println("Writer does not support encoding this buffered image type."); continue; } for(int i=0; i<types.length; i++) { if ("BI_JPEG".equals(types[i])) { // exclude BI_JPEG from automatic test // due to color diffusion effect on the borders. continue; } if (canEncodeImage(types[i], specifier, img_type)) { System.out.println("compression type: " + types[i] + " Supported for " + getImageTypeName(img_type)); } else { System.out.println("compression type: " + types[i] + " NOT Supported for " + getImageTypeName(img_type)); continue; } ImageWriteParam imageWriteParam = getImageWriteParam(writer, types[i]); imageWriteParam.setSourceSubsampling(srcXSubsampling, srcYSubsampling, 0, 0); File outputFile = new File("subsampling_test_" + getImageTypeName(img_type) + "__" + types[i] + ".bmp"); ImageOutputStream ios = ImageIO.createImageOutputStream(outputFile); writer.setOutput(ios); IIOImage iioImg = new IIOImage(image, null, null); writer.write(null, iioImg, imageWriteParam); ios.flush(); ios.close(); BufferedImage outputImage = ImageIO.read(outputFile); checkTestImage(outputImage); } } }