io.afu.imagehelper.Runner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of imagehelper Show documentation
Show all versions of imagehelper Show documentation
RffanLAB ImageHelper 用来处理视频,以及做各种配置文件配置增删改查等
The newest version!
package io.afu.imagehelper;
import io.afu.common.exception.BaseException;
import io.afu.imagehelper.client.ImgClient;
public class Runner {
public static void main(String[] args) throws BaseException {
ImgClient.build("D:\\demo1.jpg").scale("D:\\demo1small.jpg",800);
}
}