图片处理是当今软件开发中非常重要的一环,然而处理图片的开源框架却并不多。现金网上流传的java处理图片的代码,虽然可对图片进行简单处理,但效果并不理想。虽然也有些其他解决方案,但都摆脱不了繁琐,使用起来十分不方便。
为了解决这个问题,我也是在网上找了好久,看了很多资料,功夫不负有心人,最终找到了一个处理图片十分棒的开源框架。特此拿出来与大家分享。
thumbnailator 是一个优秀的图片处理的google开源java类库。处理效果远比java api的好。从api提供现有的图像文件和图像对象的类中简化了处理过程,两三行代码就能够从现有图片生成处理后的图片,且允许微调图片的生成方式,同时保持了需要写入的最低限度的代码量。还支持对一个目录的所有图片进行批量处理操作。
支持的处理操作:图片缩放,区域裁剪,水印,旋转,保持比例。
另外值得一提的是,thumbnailator至今仍不断更新,怎么样,感觉很有保障吧!
下面我们介绍下如何使用thumbnailator
原图:
1、指定大小进行缩放
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//size(宽度, 高度) /* * 若图片横比200小,高比300小,不变 * 若图片横比200小,高比300大,高缩小到300,图片比例不变 * 若图片横比200大,高比300小,横缩小到200,图片比例不变 * 若图片横比200大,高比300大,图片按比例缩小,横为200或高为300 */ thumbnails.of( "images/a380_1280x1024.jpg" ) .size( 200 , 300 ) .tofile( "c:/a380_200x300.jpg" ); thumbnails.of( "images/a380_1280x1024.jpg" ) .size( 2560 , 2048 ) .tofile( "c:/a380_2560x2048.jpg" ); |
2、按照比例进行缩放
1
2
3
4
5
6
7
8
|
//scale(比例) thumbnails.of( "images/a380_1280x1024.jpg" ) .scale( 0 .25f) .tofile( "c:/a380_25%.jpg" ); thumbnails.of( "images/a380_1280x1024.jpg" ) .scale( 1 .10f) .tofile( "c:/a380_110%.jpg" ); |
3、不按照比例,指定大小进行缩放
1
2
3
4
5
|
//keepaspectratio(false)默认是按照比例缩放的 thumbnails.of( "images/a380_1280x1024.jpg" ) .size( 200 , 200 ) .keepaspectratio( false ) .tofile( "c:/a380_200x200.jpg" ); |
4、旋转
1
2
3
4
5
6
7
8
9
10
|
//rotate(角度),正数:顺时针负数:逆时针 thumbnails.of( "images/a380_1280x1024.jpg" ) .size( 1280 , 1024 ) .rotate( 90 ) .tofile( "c:/a380_rotate+90.jpg" ); thumbnails.of( "images/a380_1280x1024.jpg" ) .size( 1280 , 1024 ) .rotate(- 90 ) .tofile( "c:/a380_rotate-90.jpg" ); |
5、水印
1
2
3
4
5
6
7
8
9
10
11
12
|
//watermark(位置,水印图,透明度) thumbnails.of( "images/a380_1280x1024.jpg" ) .size( 1280 , 1024 ) .watermark(positions.bottom_right,imageio.read(newfile( "images/watermark.png" )), 0 .5f) .outputquality( 0 .8f) .tofile( "c:/a380_watermark_bottom_right.jpg" ); thumbnails.of( "images/a380_1280x1024.jpg" ) .size( 1280 , 1024 ) .watermark(positions.center,imageio.read(newfile( "images/watermark.png" )), 0 .5f) .outputquality( 0 .8f) .tofile( "c:/a380_watermark_center.jpg" ); |
6、裁剪
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//sourceregion() //图片中心400*400的区域 thumbnails.of( "images/a380_1280x1024.jpg" ) .sourceregion(positions.center, 400 , 400 ) .size( 200 , 200 ) .keepaspectratio( false ) .tofile( "c:/a380_region_center.jpg" ); //图片右下400*400的区域 thumbnails.of( "images/a380_1280x1024.jpg" ) .sourceregion(positions.bottom_right, 400 , 400 ) .size( 200 , 200 ) .keepaspectratio( false ) .tofile( "c:/a380_region_bootom_right.jpg" ); //指定坐标 thumbnails.of( "images/a380_1280x1024.jpg" ) .sourceregion( 600 , 500 , 400 , 400 ) .size( 200 , 200 ) .keepaspectratio( false ) .tofile( "c:/a380_region_coord.jpg" ); |
7、转化图像格式
1
2
3
4
5
6
7
8
9
10
|
//outputformat(图像格式) thumbnails.of( "images/a380_1280x1024.jpg" ) .size( 1280 , 1024 ) .outputformat( "png" ) .tofile( "c:/a380_1280x1024.png" ); thumbnails.of( "images/a380_1280x1024.jpg" ) .size( 1280 , 1024 ) .outputformat( "gif" ) .tofile( "c:/a380_1280x1024.gif" ); |
8、输出到outputstream
1
2
3
4
5
|
//tooutputstream(流对象) outputstreamos=newfileoutputstream( "c:/a380_1280x1024_outputstream.png" ); thumbnails.of( "images/a380_1280x1024.jpg" ) .size( 1280 , 1024 ) .tooutputstream(os); |
9、输出到bufferedimage
1
2
3
4
5
|
//asbufferedimage()返回bufferedimage bufferedimagethumbnail=thumbnails.of( "images/a380_1280x1024.jpg" ) .size( 1280 , 1024 ) .asbufferedimage(); imageio.write(thumbnail, "jpg" ,newfile( "c:/a380_1280x1024_bufferedimage.jpg" )); |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。