Package org.im4java.core

Examples of org.im4java.core.IMOperation.thumbnail()


    } catch (IOException e2) {
      e2.printStackTrace();
    }

    IMOperation op = new IMOperation();
    op.thumbnail(150);
    op.addImage(tmpJp2.getAbsolutePath());
    op.addImage(tmpTn.getAbsolutePath());

    ConvertCmd convert = new ConvertCmd();
    try {
View Full Code Here


      File f2 = new File(f.getParentFile(), f.getName() + ".jpg");
      f2.deleteOnExit();
      ConvertCmd cmd = new ConvertCmd();
    IMOperation op = new IMOperation();
    op.addImage(f.getAbsolutePath());
    op.thumbnail(width, height);
    op.addImage(f2.getAbsolutePath());
        if (MediaFilterManager.isVerbose) {
        System.out.println("IM Thumbnail Param: "+op);
        }
    cmd.run(op);
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.