Skip to content

Instantly share code, notes, and snippets.

@ibeeger
Last active June 8, 2018 08:05
Show Gist options
  • Save ibeeger/d7f466466da8301601f3918ef0e96614 to your computer and use it in GitHub Desktop.
Save ibeeger/d7f466466da8301601f3918ef0e96614 to your computer and use it in GitHub Desktop.
imagemagic 使用

字体

convert -list font //查看安装的字体

./etc/ImageMagick-7/type-apple.xml 添加字体

<type
 format="ttf"
 name="hwxh"
 fullname="hwxh"
 family="hwxh"
 glyphs="/Library/Fonts//华文细黑.ttf"
 />
 

convert -background white -font hwxh -fill red -pointsize 52 -draw "text 0,40 '龙'" compose_256px.png r.png
convert -background white -font hwxh -fill red -pointsize 152 label:龙 r.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment