Package javax.media.jai.operator

Source Code of javax.media.jai.operator.BMPDescriptor

/*
* $RCSfile: BMPDescriptor.java,v $
*
* Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
*
* Use is subject to license terms.
*
* $Revision: 1.1 $
* $Date: 2005/02/11 04:57:29 $
* $State: Exp $
*/
package javax.media.jai.operator;
import com.sun.media.jai.codec.SeekableStream;
import java.awt.RenderingHints;
import java.awt.image.RenderedImage;
import javax.media.jai.JAI;
import javax.media.jai.OperationDescriptorImpl;
import javax.media.jai.ParameterBlockJAI;
import javax.media.jai.RenderedOp;
import javax.media.jai.registry.RenderedRegistryMode;


/**
* An <code>OperationDescriptor</code> describing the "BMP" operation.
*
* <p> The "BMP" operation reads a standard BMP input stream.
* The "BMP" operation currently reads Version2, Version3 and
* some of the Version 4 images, as defined in the Microsoft
* Windows BMP file format.
*
* <p> Version 4 of the BMP format allows for the specification of alpha
* values, gamma values and CIE colorspaces. These are not
* currently handled, but the relevant properties are emitted, if
* they are available from the BMP image file.
*
* <p><b> The classes in the <code>com.sun.media.jai.codec</code>
* package are not a committed part of the JAI API.  Future releases
* of JAI will make use of new classes in their place.  This
* class will change accordingly.</b>
*
* <p><table border=1>
* <caption>Resource List</caption>
* <tr><th>Name</th>        <th>Value</th></tr>
* <tr><td>GlobalName</td>  <td>BMP</td></tr>
* <tr><td>LocalName</td>   <td>BMP</td></tr>
* <tr><td>Vendor</td>      <td>com.sun.media.jai</td></tr>
* <tr><td>Description</td> <td>Reads an image from a BMP stream.</td></tr>
* <tr><td>DocURL</td>      <td>http://java.sun.com/products/java-media/jai/forDevelopers/jai-apidocs/javax/media/jai/operator/BMPDescriptor.html</td></tr>
* <tr><td>Version</td>     <td>1.0</td></tr>
* <tr><td>arg0Desc</td>    <td>The SeekableStream to read from.</td></tr>
* </table></p>
*
* <p><table border=1>
* <caption>Parameter List</caption>
* <tr><th>Name</th>    <th>Class Type</th>
*                      <th>Default Value</th></tr>
* <tr><td>stream</td>  <td>com.sun.media.jai.codec.SeekableStream</td>
*                      <td>NO_PARAMETER_DEFAULT</td>
* </table></p>
*
* @see com.sun.media.jai.codec.SeekableStream
* @see javax.media.jai.OperationDescriptor */
public class BMPDescriptor extends OperationDescriptorImpl {

    /**
     * The resource strings that provide the general documentation and
     * specify the parameter list for the "BMP" operation.
     */
    private static final String[][] resources = {
        {"GlobalName""BMP"},
        {"LocalName",   "BMP"},
        {"Vendor",      "com.sun.media.jai"},
        {"Description", JaiI18N.getString("BMPDescriptor0")},
        {"DocURL",      "http://java.sun.com/products/java-media/jai/forDevelopers/jai-apidocs/javax/media/jai/operator/BMPDescriptor.html"},
        {"Version",     JaiI18N.getString("DescriptorVersion")},
        {"arg0Desc",    JaiI18N.getString("BMPDescriptor1")},
    };

    /** The parameter names for the "BMP" operation. */
    private static final String[] paramNames = {
        "stream"
    };

    /** The parameter class types for the "BMP" operation. */
    private static final Class[] paramClasses = {
  com.sun.media.jai.codec.SeekableStream.class
    };

    /** The parameter default values for the "BMP" operation. */
    private static final Object[] paramDefaults = {
        NO_PARAMETER_DEFAULT
    };

    /** Constructor. */
    public BMPDescriptor() {
        super(resources, 0, paramClasses, paramNames, paramDefaults);
    }


    /**
     * Reads an image from a BMP stream.
     *
     * <p>Creates a <code>ParameterBlockJAI</code> from all
     * supplied arguments except <code>hints</code> and invokes
     * {@link JAI#create(String,ParameterBlock,RenderingHints)}.
     *
     * @see JAI
     * @see ParameterBlockJAI
     * @see RenderedOp
     *
     * @param stream The SeekableStream to read from.
     * @param hints The <code>RenderingHints</code> to use.
     * May be <code>null</code>.
     * @return The <code>RenderedOp</code> destination.
     * @throws IllegalArgumentException if <code>stream</code> is <code>null</code>.
     */
    public static RenderedOp create(SeekableStream stream,
                                    RenderingHints hints)  {
        ParameterBlockJAI pb =
            new ParameterBlockJAI("BMP",
                                  RenderedRegistryMode.MODE_NAME);

        pb.setParameter("stream", stream);

        return JAI.create("BMP", pb, hints);
    }
}
TOP

Related Classes of javax.media.jai.operator.BMPDescriptor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.