Monday, December 06, 2010

GroovyとThumbnailatorでアスペクト比を保持せずにサムネイルを作成する

GroovyとThumbnailatorでアスペクト比を保持せずにサムネイルを作成するには、以下のコードを実行します。

import net.coobird.thumbnailator.*

Thumbnails.of(new File("SF2.JPG"))
.size(150, 150)
.keepAspectRatio(false) // デフォルトはtrue
.toFile(new File("SF_KAR.JPG"))


元画像(SF2.JPG)


出力画像(SF_KAR.JPG)


動作環境
Groovy 1.7.4, JDK6 Update21, Thumbnailator 0.24

関連情報
Thumbnailatorのwebsite
http://code.google.com/p/thumbnailator/

No comments: