Package de.unigoettingen.sub.commons.contentlib.imagelib

Examples of de.unigoettingen.sub.commons.contentlib.imagelib.ImageManager


            tmpSize = 1;
        }
        logger.trace("tmpSize: " + tmpSize);
        if (ConfigMain.getParameter("goobiContentServerUrl", "").equals("")) {
            logger.trace("api");
            ImageManager im = new ImageManager(new File(inFileName).toURI().toURL());
            logger.trace("im");
            RenderedImage ri = im.scaleImageByPixel(tmpSize, tmpSize, ImageManager.SCALE_BY_PERCENT, intRotation);
            logger.trace("ri");
            JpegInterpreter pi = new JpegInterpreter(ri);
            logger.trace("pi");
            FileOutputStream outputFileStream = new FileOutputStream(outFileName);
            logger.trace("output");
View Full Code Here

TOP

Related Classes of de.unigoettingen.sub.commons.contentlib.imagelib.ImageManager

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.