thumbnails
一、Thumbnails 图片处理的用法
1、设置图片的缩放比例或者图片的质量比
第一步:导入maven的jar包
<dependency>
<groupId>net.coobird</groupId>
<artifactId>thumbnailator</artifactId>
<version>0.4.8</version>
</dependency>
第二步:获取一个builder对象
public static builder<File> of(String... files)
{
checkForNull(files, "cannot specify null for input files.");
checkForempty(files, "Cannot specify an empty array for input files.");
return Builder.ofStrings(Arrays.asList(files));
}
第三步:设置图片缩放比例
通过Builder对象的scale(double scale)方法
通过Builder对象的size(int width, int height)方法
通过Builder对象的height(int height)或width(int width)方法
第四步:设置图片质量比
通过Builder对象的outputQuality(double quality)
2、获取图片的信息
第一步:通过Thumbnails.Builder的asBufferedImage()方法获取BufferedImage对象,把照片加载到内存中
第二步:
通过BufferedImage对象的getHeight(null)获取图片的高度
通过BufferedImage对象的getWidth(null)获取图片的宽度
小示例:
public static boolean ThumbnailsCompressPic(String inputFile, String outputFile, int size, float quality) {
File input = new File(inputFile);
try {
Thumbnails.Builder<File> fileBuilder = Thumbnails.of(input).scale(1.0).outputQuality(1.0);
BufferedImage src = fileBuilder.asBufferedImage();
if(src.getHeight(null) > size || src.getWidth(null) > size) {
Thumbnails.Builder<File> builder = Thumbnails.of(input);
builder.size(size, size); //取最大的尺寸变成size,然后等比缩放
builder.outputQuality(quality).toFile(outputFile);
} else {
Thumbnails.of(input).scale(1.0).outputQuality(quality).toFile(outputFile);
}
return true;
} catch (IOException e) {
logger.ERROR(e.getmessage(), e);
}
return false;
}
二、Thumbnails 图片处理的用法
package com.image;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.Fileoutputstream;
import java.io.IOException;
import java.io.OutputStream;
import javax.imageio.ImageIO;
import net.coobird.thumbnailator.Thumbnails;
import net.coobird.thumbnailator.geometry.Positions;
/**
*
* @author PanYu
*
*/
public class ThumbnailatorTest {
/**
*
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
ThumbnailatorTest thumbnailatorTest = new ThumbnailatorTest();
thumbnailatorTest.test1();
thumbnailatorTest.test2();
thumbnailatorTest.test3();
thumbnailatorTest.test4();
thumbnailatorTest.test5();
thumbnailatorTest.test6();
thumbnailatorTest.test7();
thumbnailatorTest.test8();
thumbnailatorTest.test9();
}
/**
* 指定大小进行缩放
*
* @throws IOException
*/
private void test1() throws IOException {
/*
* size(width,height) 若图片横比200小,高比300小,不变
* 若图片横比200小,高比300大,高缩小到300,图片比例不变 若图片横比200大,高比300小,横缩小到200,图片比例不变
* 若图片横比200大,高比300大,图片按比例缩小,横为200或高为300
*/
Thumbnails.of("images/test.jpg").size(200, 300).toFile("C:/image_200x300.jpg");
Thumbnails.of("images/test.jpg").size(2560, 2048).toFile("C:/image_2560x2048.jpg");
}
/**
* 按照比例进行缩放
*
* @throws IOException
*/
private void test2() throws IOException {
/**
* scale(比例)
*/
Thumbnails.of("images/test.jpg").scale(0.25f).toFile("C:/image_25%.jpg");
Thumbnails.of("images/test.jpg").scale(1.10f).toFile("C:/image_110%.jpg");
}
/**
* 不按照比例,指定大小进行缩放
*
* @throws IOException
*/
private void test3() throws IOException {
/**
* keepAspectRatio(false) 默认是按照比例缩放的
*/
Thumbnails.of("images/test.jpg").size(120, 120).keepAspectRatio(false).toFile("C:/image_120x120.jpg");
}
/**
* 旋转
*
* @throws IOException
*/
private void test4() throws IOException {
/**
* rotate(角度),正数:顺时针 负数:逆时针
*/
Thumbnails.of("images/test.jpg").size(1280, 1024).rotate(90).toFile("C:/image+90.jpg");
Thumbnails.of("images/test.jpg").size(1280, 1024).rotate(-90).toFile("C:/iamge-90.jpg");
}
/**
* 水印
*
* @throws IOException
*/
private void test5() throws IOException {
/**
* watermark(位置,水印图,透明度)
*/
Thumbnails.of("images/test.jpg").size(1280, 1024).watermark(Positions.BOTTOM_RIGHT, ImageIO.read(new File("images/watermark.png")), 0.5f)
.outputQuality(0.8f).toFile("C:/image_watermark_bottom_right.jpg");
Thumbnails.of("images/test.jpg").size(1280, 1024).watermark(Positions.CENTER, ImageIO.read(new File("images/watermark.png")), 0.5f)
.outputQuality(0.8f).toFile("C:/image_watermark_center.jpg");
}
/**
* 裁剪
*
* @throws IOException
*/
private void test6() throws IOException {
/**
* 图片中心400*400的区域
*/
Thumbnails.of("images/test.jpg").sourceRegion(Positions.CENTER, 400, 400).size(200, 200).keepAspectRatio(false)
.toFile("C:/image_region_center.jpg");
/**
* 图片右下400*400的区域
*/
Thumbnails.of("images/test.jpg").sourceRegion(Positions.BOTTOM_RIGHT, 400, 400).size(200, 200).keepAspectRatio(false)
.toFile("C:/image_region_bootom_right.jpg");
/**
* 指定坐标
*/
Thumbnails.of("images/test.jpg").sourceRegion(600, 500, 400, 400).size(200, 200).keepAspectRatio(false).toFile("C:/image_region_coord.jpg");
}
/**
* 转化图像格式
*
* @throws IOException
*/
private void test7() throws IOException {
/**
* outputFormat(图像格式)
*/
Thumbnails.of("images/test.jpg").size(1280, 1024).outputFormat("png").toFile("C:/image_1280x1024.png");
Thumbnails.of("images/test.jpg").size(1280, 1024).outputFormat("gif").toFile("C:/image_1280x1024.gif");
}
/**
* 输出到OutputStream
*
* @throws IOException
*/
private void test8() throws IOException {
/**
* toOutputStream(流对象)
*/
OutputStream os = new FileOutputStream("C:/image_1280x1024_OutputStream.png");
Thumbnails.of("images/test.jpg").size(1280, 1024).toOutputStream(os);
}
/**
* 输出到BufferedImage
*
* @throws IOException
*/
private void test9() throws IOException {
/**
* asBufferedImage() 返回BufferedImage
*/
BufferedImage thumbnail = Thumbnails.of("images/test.jpg").size(1280, 1024).asBufferedImage();
ImageIO.write(thumbnail, "jpg", new File("C:/image_1280x1024_BufferedImage.jpg"));
}
}
相关阅读
代码:import javax.swing.*; public class SetTheBackground { public static void main(String args[]) { //插
1 理论 图像可以分为RGB(3通道,每个通道 的值是0-255),灰度图(单通道,值范围0-255),二值图(0:黑色,1:白色)。fig,ax = plt.subplots(2,1,figsiz
近期工作中, 遇到了有送EOFException的抛出, 以此小节总结学习相关内容, 及如何解决问题。 问题描述 doUnZip(FileOperateUtil.java
在开发过程中,经常需要和别的系统交换数据,数据交换的格式有XML、JSON等,JSON作为一个轻量级的数据格式比xml效率要高,XML需要很多的
JDBC的PreparedStatement启动事务使用批处理executeBa
转自:https://blog.csdn.net/xiong9999/article/details/53258698 JDBC使用MySQL处理大数据的时候,自然而然的想到要使用批处理, 普