java psd转jpg
利用twelevemonkeys提供对ImageIo的增强直接读取 psd
<dependency>
<groupId>net.coobird</groupId>
<artifactId>thumbnailator</artifactId>
<version>0.4.8</version>
</dependency>
<dependency>
<groupId>com.twelvemonkeys.imageio</groupId>
<artifactId>imageio-core</artifactId>
<version>3.6.4</version>
</dependency>
<dependency>
<groupId>com.twelvemonkeys.imageio</groupId>
<artifactId>imageio-psd</artifactId>
<version>3.6.4</version>
</dependency>
//将psd转成jpg
public static void main(String[] args) throws IOException {
Thumbnails.of("D:\\ccc.psd").scale(1).toFile("D:\\ccc.jpg");
}
参考
https://blog.xujiuming.com/ming/94809d83.html