Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 422 Bytes

图片部分负片处理.md

File metadata and controls

21 lines (15 loc) · 422 Bytes

图片部分负片处理

通过指定-region 选项,可以对指定的区域进行反色处理:

@echo off
convert -region 300x400+60+50 -negate  %1  negate-part.png

部分区域反色

注意:regoin参数需要在negate前,否则无法对指定的区域进行反色处理。

> negate.bat 1.jpg
@echo off
convert -gravity center -region 300x400+10+10 -negate %1 center-negate_%1.png