裁剪用-crop,jpg没问题,不过遇到gif就要注意了
例如下图:

裁剪只裁剪图片内容,不能消除背景的size,
convert image1.gif -crop 75x75+0+0 image2.gif
结果如下图片

解决办法使用+repage参数
convert image1.gif -crop 75x75+0+0 +repage image2.gif
75x75是结果的size,+0+0是图片在画布中间的偏移量,用了+repage会清空图片以外的空白
不过在jmagick的接口中没找到如何把+repage参数传递进去
/**
* Creates a new image that is a subregion of the original.
*
* @param chopInfo the subimage
* @return a subimage of the original
* @exception MagickException on error
*/
public native MagickImage cropImage(Rectangle chopInfo)
throws MagickException;
Rectangle只带了坐标信息,所以我现在切的gif图片size没办法去除所谓的“page geometry ”
这里说下不带偏移量的裁剪,效果很奇特,整个gif加载的时候会滚动在75x75的窗口中最后停下来
convert image1.gif -crop 75x75 +repage image2.gif

参考:http://www.cit.gu.edu.au/~anthony/graphics/imagick6/crop/#crop_repage
博客主要讨论图片裁剪问题,提到裁剪jpg正常,但裁剪gif时需注意。介绍使用 -crop 裁剪gif不能消除背景size,解决办法是用 +repage 参数清空空白。还指出在jmagick接口中难以传递该参数,且不带偏移量裁剪gif有奇特效果。
3437

被折叠的 条评论
为什么被折叠?



