I am trying to generate an SVG format file for a logo but I don't know how to proceed.
Usually when I need an svg format, I upload the image to Zeplin and it is auto generated. I tried to do the same thing this time but it tells me This layer contains bitmap images, so no vector assets were generated. What are bitmap images? How do I remove them or transform into something else? Thanks!
(I'm not a designer)
You can convert a
.pngfile to a.svgfile by using theconvertcommand.convertcomes with the ImageMagick program.1.) ImageMagick is not installed by default so if you don't already have it, get macport and install it.
NOTE: If you don't want to install macport, you can just download and install ImageMagick directly from HERE and skip to step 3
2.) Open a terminal and enter:
sudo port install ImageMagick3.) Open a terminal in the directory of the image and enter:
convert filename.png filename.svgYou will now have the converted image in svg format.