- 授权协议: 未知
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: https://github.com/aviyehuda/EasyImage
- 软件文档: http://www.aviyehuda.com/downloads/easyimage/easyimage_javadoc/index
软件介绍
EasyImage是一个图片制作的第三方Jar包,可以做所有基础的图片操作:转换,裁剪,缩放,选择等;可以结合很多总操作,创造出很酷的效果;操作 简单等……
例如要融合两张图片,代码如下:
Image image = new Image("c:/pics/p1.jpg");
image.combineWithPicture("c:/pics/p2.jpg");
image.saveAs("c:/pics/p1combinedWithp2.jpg");
效果如下:
要强调图像的某个部分:
Image image = new Image("c:/pics/p1.jpg");
image.emphasize(250, 200, 2300, 500);
image.saveAs("c:/pics/p1Emphesized.jpg");
可支持的图像处理方法有:
* Open image. * Save image * Convert image * Re-size image * Crop image * Convert to black and white image * Rotate image * Flip image * Add color to image * Create image with multiple instance of the original * Combining 2 images together * Emphasize parts of the image * Affine transform image
Text Algorithms
Maxime Crochemore、Wojciech Rytter / Oxford University Press / 1994
This much-needed book on the design of algorithms and data structures for text processing emphasizes both theoretical foundations and practical applications. It is intended to serve both as a textbook......一起来看看 《Text Algorithms》 这本书的介绍吧!
