Sorry if the title didn't make any sense.
Currently, the following parameters on the imagemagick convert utility are perfect for what I need. I'm tring to take an .svg file, make it larger and write it as a png file.
convert -density 36 home.svg home_1.png
Unfortunately, I need to be using Magick++ (the C++ Interface/API for ImageMagick), but I can't seem to get the equivalent operation in Magick++.
Are there any ImageMagick pros that would be able to help me out on this?
My current code is:
image.density(Geometry(36,36));
image.read( "Character.svg" );
image.write( "xx.png" );
I've tried moving the image.density()
part around, but my image is never changes. It's simply rasterized and saved as a png.