Convert single unicode character to png image

I need to convert a Unicode character (e.g. ⦿; CIRCLED BULLET; U+29BF) to a PNG image for use within a reporting tool (Crystal Reports). I need to preserve the font, size, and formatting of the character.

Is there a more-accurate way to do this than just ⌘⇧+4 and a less-burdensome way than Gimp or Seashore?


Solution 1:

Using ImageMagick:

convert -pointsize 64 -font /System/Library/Fonts/Apple\ Symbols.ttf label:⦿ output.png

convert -background transparent -fill 'hsb(0%,0%,0%)' -font /System/Library/Fonts/Apple\ Symbols.ttf -pointsize 64 -size 200x200 -gravity center label:⦿ output.png

Solution 2:

The way I would do it is by typing it in a graphics editor and rasterizing it to a png to whatever size I need. Why not use Gimp or Seashore?

Solution 3:

Character Map is the (clunky) equivalent of Character Viewer on OS X:

Windoze Character Mope

Note the Font — only certain typefaces contain U+29BF and U+2318. Most applications including Crystal Reports support Unicode Fonts.

Solution 4:

Possible solution: Create Banner Image from Text