Examples of Katto


Examples of ru.makingpages.katto.Katto

        String fileSeparator = System.getProperty("file.separator");
        final File outFile = new File(currentDir + fileSeparator + "pic_thumb.jpg");
        outFile.createNewFile();

        final byte[] originalImage = IOUtils.toByteArray(in);
        final byte[] resizedData = new Katto().setOriginalData(originalImage).setQuality(1f).setTargetWidth(400).resize();

        FileOutputStream fos = new FileOutputStream(outFile);
        IOUtils.write(resizedData, fos);
        System.out.println(currentDir + fileSeparator + "pic_thumb.jpg");
    }
View Full Code Here
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.