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

com.viaoa.image.jpg.CMYKJPEGImageReaderSpi Maven / Gradle / Ivy

The newest version!
/*
 * @(#)CMYKJPEGImageReaderSpi.java  1.2  2011-02-17
 * 
 * Copyright (c) 2010-2011 Werner Randelshofer, Immensee, Switzerland.
 * All rights reserved.
 *
 * You may not use, copy or modify this file, except in compliance with the
 * license agreement you entered into with Werner Randelshofer.
 * For details see accompanying license terms.
 */
package com.viaoa.image.jpg;

import java.io.IOException;
import java.io.InputStream;
import java.util.Locale;
import javax.imageio.ImageReader;
import javax.imageio.spi.ImageReaderSpi;
import javax.imageio.stream.ImageInputStream;


/**
 * A reader for JPEG images in the CMYK color space.
 *
 * @author Werner Randelshofer
 * @version 1.2 2011-02-17 Removes support for JMF.
 * 
1.0 2010-07-23 Created. */ public class CMYKJPEGImageReaderSpi extends ImageReaderSpi { public CMYKJPEGImageReaderSpi() { super("Werner Randelshofer",//vendor name "1.0",//version new String[]{"JPEG","JPG"},//names new String[]{"jpg"},//suffixes, new String[]{"image/jpg"},// MIMETypes, "org.monte.media.jpeg.CMYKJPEGImageReader",// readerClassName, new Class[]{ImageInputStream.class,InputStream.class,byte[].class},// inputTypes, null,// writerSpiNames, false,// supportsStandardStreamMetadataFormat, null,// nativeStreamMetadataFormatName, null,// nativeStreamMetadataFormatClassName, null,// extraStreamMetadataFormatNames, null,// extraStreamMetadataFormatClassNames, false,// supportsStandardImageMetadataFormat, null,// nativeImageMetadataFormatName, null,// nativeImageMetadataFormatClassName, null,// extraImageMetadataFormatNames, null// extraImageMetadataFormatClassNames ); } @Override public boolean canDecodeInput(Object source) throws IOException { if (source instanceof ImageInputStream) { ImageInputStream in = (ImageInputStream) source; in.mark(); // Check if file starts with a JFIF SOI magic (0xffd8=-40) if (in.readShort() != -40) { in.reset(); return false; } in.reset(); return true; } return false; } @Override public ImageReader createReaderInstance(Object extension) throws IOException { return new CMYKJPEGImageReader(this); } @Override public String getDescription(Locale locale) { return "CMYK JPEG Image Reader"; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy