Skip to content

SD810/ResizeImageJava

Repository files navigation

ResizeImageJava

이미지 리사이징 기능 구현체 from: https://stackoverflow.com/a/36367652

dependencies

put this in project's "libs" folder as described in fileTree

repositories {
    mavenCentral()
}

dependencies {
    implementation 'com.mortennobel:java-image-scaling:0.8.6'
    implementation 'net.coobird:thumbnailator:0.4.8'
    implementation fileTree(dir: 'libs', include: ['*.jar'])
}

Usage

// listOfFiles : File[] or String[]
// targetWidth/targetHeight : int, pixel
// doStretch : boolean for ignoring aspect ratio
// processBiggerFiles : boolean for allowing upscale
ResizeProcessor.resizeImagesWithThese(listOfFiles, targetWidth, targetHeight, doStretch, processBiggerFiles);
// file : File
// targetWidth/targetHeight : int, pixel
// doStretch : boolean for ignoring aspect ratio
// processBiggerFile : boolean for allowing upscale
ResizeProcessor.resizeImageForThis(file, targetWidth, targetHeight, doStretch, processBiggerFile);

Change Algorithm

set into

ResizeProcessor.resizerAlgorithm = ResizeProcessor.RESIZER_LANCOZ;

pick from these

public static final int RESIZER_JDK_PROGRESSIVE = 1;
public static final int RESIZER_JDK_DIRECT = 2;
public static final int RESIZER_LANCOZ = 3;
public static final int RESIZER_THUMBNAILATOR = 4;

About

이미지 리사이징 기능 구현체

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages