Sorry if the name makes no sense.
Currently, the following imagemagick conversion utility options are perfect for what I need. I am trying to take a .svg file, make it larger and write it as a png file.
convert -density 36 home.svg home_1.png
Unfortunately, I need to use Magick ++ (C ++ Interface / API for ImageMagick), but I cannot get the equivalent operation in Magick ++.
Are there any ImageMagick profiles that could help me with this?
My current code is:
image.density(Geometry(36,36)); image.read( "Character.svg" ); image.write( "xx.png" );
I tried moving the image.density() , but my image never changes. It is just rasterized and saved as png.
source share