spring.turbo.io.ImageUtils Maven / Gradle / Ivy
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* ____ _ _____ _
* / ___| _ __ _ __(_)_ __ __ |_ _| _ _ __| |__ ___
* \___ \| '_ \| '__| | '_ \ / _` || || | | | '__| '_ \ / _ \
* ___) | |_) | | | | | | | (_| || || |_| | | | |_) | (_) |
* |____/| .__/|_| |_|_| |_|\__, ||_| \__,_|_| |_.__/ \___/
* |_| |___/ https://github.com/yingzhuo/spring-turbo
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
package spring.turbo.io;
import spring.turbo.util.Asserts;
import spring.turbo.util.crypto.Base64;
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import static spring.turbo.io.IOExceptionUtils.toUnchecked;
/**
* {@code BufferedImage}相关工具
*
* @author 应卓
* @since 1.0.0
*/
public final class ImageUtils {
/**
* 私有构造方法
*/
private ImageUtils() {
super();
}
/**
* 将图片转换成字节数组
*
* @param image 图片实例
* @param format 格式,如: {@code "png"}
* @return 字节数组
*/
public static byte[] toByteArray(BufferedImage image, String format) {
Asserts.notNull(image);
Asserts.hasText(format);
try {
final ByteArrayOutputStream os = new ByteArrayOutputStream();
ImageIO.write(image, format, os);
return os.toByteArray();
} catch (IOException e) {
throw toUnchecked(e);
}
}
/**
* 将图片转换成Base64哈希之后的字符串
*
* @param image 图片实例
* @param format 格式,如: {@code "png"}
* @return Base64字符串
* @see Base64#toString(byte[])
*/
public static String encodeToBase64(BufferedImage image, String format) {
Asserts.notNull(image);
Asserts.hasText(format);
return Base64.encode(toByteArray(image, format));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy