3

我有一张个人资料图片,我将其存储在数据库中的字节 [] 字段中。

我想要做的是在运行时创建图像缩略图。因为我必须在网页的不同位置显示不同大小的图像。像 facebook,在评论部分和其他区域显示图像。

我可以使用的任何 grails 插件,我有 google imageTool、imageMagick grails 插件。任何人都可以推荐该插件以使用任何其他方法来做到这一点。

谢谢。

4

1 回答 1

1

是的grails,您可以使用一个插件。

看到这个ImageTools 插件

安装插件后,您可以使用以下语句生成所需大小的缩略图

或者如果它是一个瘦应用程序并且您不想要外部依赖项..您可以使用以下代码

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 ) 

  }
于 2013-03-18T07:36:32.533 回答