使用imagemagick是否有办法将图像调整为比原始图像精确10个像素,但不知道原始图像尺寸?
我知道对于100x100图像
convert input.png -resize 90x90! +repage output.png
会做的伎俩,但我想用
之类的东西删除90x90部分convert input.png -resize -10x-10! +repage output.png
以便它可以处理其他尺寸的图像。
答案 0 :(得分:0)
尝试使用类似
之类的子句identify -format "%[fx:w]x%[fx:h]" image.jpg