If anything, use this command: ImageMagick-3.5.9 (re) convert -crop=3×3 -resize=3×3 -define alpha =1 -verbose Image.svg Converting SVG to raster image formats like EPS (Opener) Using the ImageMagick command ImageMagick-3.5.9 (re) convert -crop=3×3 -resize=3×3 -define alpha =1 -verbose EPS.svg ImageMagick can convert EPS to raster image formats. This command sets the pixels to a size of 24×24. Source. Note that EPS file has very large black/white space. The resulting image, EPS 24 × 24, is not as sharp as the EPS 24 image as the pixel size is different. ImageMagick-3.5.9 (re) convert -crop=3×3 -resize=3×3 -define alpha =1 -verbose EPS.IMG Converting ImageMagick to JPEG Using ImageMagick Command ImageMagick-3.5.9 (re) convert -crop=3×3 -resize=3×3 -define alpha =1 -verbose JPEG.log (output.jpg) Converting ImageMagick to PNG After doing this I get PNG 24 × 24 Then I see this, PNG 24 × 24 And I also find out that I have to reduce the opacity in each image to see the image. ImageMagick 3.5.9 (re) convert -pix map type=image .log (input.png) Output.jpg ImageMagick 3.5.9 (re) convert -pix map type=image .log (output.png) -alphas 0 -verbose output.png Result.png 24 × 24 ImageMagick 3.5.9 (re) convert -pix map type=image .log (input.png) -alphas 0 -verbose output.png Result.png 24 × 24 What I don't understand about this is that I am doing one transformation after another.