Package

Source Code of ImageProcessor

/*
*
Copyright (c) 2014, Sebastian Breit
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

3. Neither the name of the <ORGANIZATION> nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* */


import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;

import javax.imageio.ImageIO;

import com.mortennobel.imagescaling.AdvancedResizeOp;
import com.mortennobel.imagescaling.ResampleFilters;
import com.mortennobel.imagescaling.ResampleOp;

public class ImageProcessor {
 
  private static final float LDPI_RATIO=3;
  private static final float MDPI_RATIO=4;
  private static final float TVDPI_RATIO=5.33333333f;
  private static final float HDPI_RATIO=6;
  private static final float XHDPI_RATIO=8;
  private static final float XXHDPI_RATIO=12;
  private static final float XXXHDPI_RATIO=16;
 

  public static void processImage(File f, File resDirectory, String originalSize,
      String resFolder) throws FileAlreadyExistsException, IOException, NullPointerException {

    String finalPath=resDirectory.getAbsolutePath() + "/drawable-"  + resFolder + "/" + f.getName();
   
    File destFile=new File(finalPath);
    if(destFile.exists())
      throw new FileAlreadyExistsException();
   
    destFile.getParentFile().mkdirs();
   
    BufferedImage image = ImageIO.read(f);
   
    int size=getRequiredSize(originalSize,resFolder,image.getWidth());

    ResampleOp resampleOp = new ResampleOp(size, (size * image.getHeight())
        / image.getWidth());
    resampleOp.setFilter(ResampleFilters.getLanczos3Filter());
    resampleOp.setUnsharpenMask(AdvancedResizeOp.UnsharpenMask.Normal);
    image = resampleOp.filter(image, null);

    ImageIO.write(image, getExtension(f.getName()), destFile);
  }

  private static int getRequiredSize(String originalSize, String resFolder,
      int width) {
    float destRatio=1;
    if(resFolder.equalsIgnoreCase("ldpi"))
      destRatio=LDPI_RATIO;
    else if(resFolder.equalsIgnoreCase("mdpi"))
      destRatio=MDPI_RATIO;
    else if(resFolder.equalsIgnoreCase("tvdpi"))
      destRatio=TVDPI_RATIO;
    else if(resFolder.equalsIgnoreCase("hdpi"))
      destRatio=HDPI_RATIO;
    else if(resFolder.equalsIgnoreCase("xhdpi"))
      destRatio=XHDPI_RATIO;
    else if(resFolder.equalsIgnoreCase("xxhdpi"))
      destRatio=XXHDPI_RATIO;
    else if(resFolder.equalsIgnoreCase("xxxhdpi"))
      destRatio=XXXHDPI_RATIO;
   
    float origRatio=1;
    if(originalSize.equalsIgnoreCase("ldpi"))
      origRatio=LDPI_RATIO;
    else if(originalSize.equalsIgnoreCase("mdpi"))
      origRatio=MDPI_RATIO;
    else if(originalSize.equalsIgnoreCase("tvdpi"))
      origRatio=TVDPI_RATIO;
    else if(originalSize.equalsIgnoreCase("hdpi"))
      origRatio=HDPI_RATIO;
    else if(originalSize.equalsIgnoreCase("xhdpi"))
      origRatio=XHDPI_RATIO;
    else if(originalSize.equalsIgnoreCase("xxhdpi"))
      origRatio=XXHDPI_RATIO;
    else if(originalSize.equalsIgnoreCase("xxxhdpi"))
      origRatio=XXXHDPI_RATIO;

    return Math.round(((float)width)*destRatio/origRatio);
  }

  private static String getExtension(String f) {
    String extension = "";

    int i = f.lastIndexOf('.');
    if (i > 0) {
        extension = f.substring(i+1);
    }
    return extension;
  }

}
TOP

Related Classes of ImageProcessor

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.