Is it possible to render multi-coloured emojis with ImageMagick?

前端 未结 2 1972
Happy的楠姐
Happy的楠姐 2021-01-13 10:54

I have a text that may contain emojis. I want to render it into JPEG image with RMagick (I can also use ImageMagick directly).

I was able to render only monochrome e

相关标签:
2条回答
  • 2021-01-13 11:14

    You can use pango for text rendering (as of v6.7.6-3):

    convert pango:'Hello!

    0 讨论(0)
  • 2021-01-13 11:22

    I think you are out of luck... ImageMagick forum.

    I suppose you could save all the glyphs as PNG files and append them together to make a "textspeak sentence"

    convert smile.png StupidShoeThing.png arnie.png +append txtspeak.png
    

    0 讨论(0)
提交回复
热议问题