我有一张个人资料图片,我将其存储在byte []字段的数据库中。
我想要做的是在运行时创建图像缩略图。因为我必须在网页上的不同位置显示不同大小的图像。像facebook这样的东西,它在评论部分和其他区域显示图像。
我可以使用任何grails插件,我有谷歌imageTool,imageMagick grails插件。任何人都可以推荐插件用于任何其他方法来做到这一点。
感谢。
答案 0 :(得分:1)
是的,您可以使用grails
插件。
安装插件后,您可以使用以下语句生成所需大小的缩略图
或者如果它是一个瘦的应用程序,你不想要外部依赖...你可以使用以下代码Source
import java.awt.Image as AWTImage
import java.awt.image.BufferedImage
import javax.swing.ImageIcon
import javax.imageio.ImageIO as IIO
import java.awt.Graphics2D
static resize = { bytes, out, maxW, maxH ->
AWTImage ai = new ImageIcon( bytes ).image
int width = ai.getWidth( null )
int height = ai.getHeight( null )
def limits = 300..2000
assert limits.contains( width ) && limits.contains( height ) : 'Picture is either too small or too big!'
float aspectRatio = width / height
float requiredAspectRatio = maxW / maxH
int dstW = 0
int dstH = 0
if( requiredAspectRatio < aspectRatio ){
dstW = maxW
dstH = Math.round( maxW / aspectRatio )
}else{
dstH = maxH
dstW = Math.round( maxH * aspectRatio )
}
BufferedImage bi = new BufferedImage( dstW, dstH, BufferedImage.TYPE_INT_RGB )
Graphics2D g2d = bi.createGraphics()
g2d.drawImage( ai, 0, 0, dstW, dstH, null, null )
IIO.write( bi, 'JPEG', out )
}