| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
12年前发布

Java 图像缩放类库:imgscalr

imgscalr 是一个对图片进行缩放的 Java 类库。

  • 100% Java code based on Java2D, no native libraries to install
  • Java that works in “headless” environments without special environment variable settings; it just works.
  • Because there are no native libraries, you mitigate the risk of native libraries crashing the host VM (e.g. your app server) or thread-contention issues
  • Hardware accelerated on supported platforms (uses the optimized Java2D rendering pipeline)
  • Fast; not faster than a native-C solution, but still damn fast.
  • Simple, simple, simple. A handful of static, 1-word methods you can call. No complex configurations, managers, encoders/decoders or any other nonsense. imgscalr is not a “graphics library”, it is a set of the most commonly used graphic operations, optimized and ready to do your bidding.

import static org.imgscalr.Scalr.*;     public static BufferedImage createThumbnail(BufferedImage img) {    // Create quickly, then smooth and brighten it.    img = resize(img, Method.SPEED, 125, OP_ANTIALIAS, OP_BRIGHTER);       // Let's add a little border before we return result.    return pad(img, 4);  }



项目主页:http://www.open-open.com/lib/view/home/1365862336203

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1365862336203.html
imgscalr 图形/图像处理