Last active
December 16, 2017 03:05
-
-
Save SherryQueen/3e0db2533976c889086fb3b3d437adb2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pdf 盖章 | |
| magick convert -density 300 origin.pdf from.png # pdf转换城png | |
| magick convert from-1.png -compose over sign.png -geometry 403x403+1680+1600 -composite new.png # 在目标png上进行图片盖章 即将章图片覆盖到底图上 | |
| magick convert -density 300 from-0.png new.png to.pdf # 将盖完章的图重新合成pdf | |
| magick convert from.png -resize '3507x4960>' -background white -gravity center -extent '3507x4960>' to.png # 图片居中补白 | |
| magick convert .\1.png -crop 170x170+332+0 20.png # 图片裁剪 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment