Package it.geosolutions.imageio.plugins.jp2kakadu

Examples of it.geosolutions.imageio.plugins.jp2kakadu.JP2GDALKakaduImageReaderSpi


    /**
     * Creates an instance and sets the metadata.
     */
    public JP2KFormat() {
        super(new JP2GDALKakaduImageReaderSpi());

        if (LOGGER.isLoggable(Level.FINE)) {
            LOGGER.fine("Creating a new JP2KFormat.");
        }

View Full Code Here


        // if these classes are here, then the runtime environment has
        // access to JAI and the JAI ImageI/O toolbox.
        try {

            Class.forName("it.geosolutions.imageio.plugins.jp2kakadu.JP2GDALKakaduImageReaderSpi");
            available = new JP2GDALKakaduImageReaderSpi().isAvailable();

            if (LOGGER.isLoggable(Level.FINE)) {
                if (available) {
                    LOGGER.fine("JP2KFormatFactory is availaible.");
                } else {
View Full Code Here

     *            Hints to be used by this reader throughout his life.
     * @throws DataSourceException
     */
    public JP2KReader(Object input, final Hints hints)
        throws DataSourceException {
        super(input, hints, worldFileExt, new JP2GDALKakaduImageReaderSpi());
    }
View Full Code Here

TOP

Related Classes of it.geosolutions.imageio.plugins.jp2kakadu.JP2GDALKakaduImageReaderSpi

Copyright © 2018 www.massapicom. 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.