... > http://edwards1.phy.ohiou.edu/~brune/map-save.svg > It's about 2MB. > > With ImageMagick 6.2.9 08/17/06 Q16 on the XP machine it takes > about 5 minutes to execute > "convert -geometry 600x map-save.svg map-save.png" ... > Any suggestions on what could be the problem, or what could be > done diagnose it?
Hi, this is not an answer for the main issue that you encounter, but something you could do to reduce to time needed by IM to rasterise the SVG, and also to get a little bit better result, is to create the SVG at the size you want it in bitmap. Because as long as I have understood how IM processes SVG (please tell me if I'm wrong, since I don't understand everything in draw.c::DrawImage() yet), SVG is first rasterized 'as is' and then apply the arguments on the command line, so if the SVG is 3000x2000 pixels, IM will create a 3000x2000 layer and then resize to the user requested size, instead of first parsing the command line arguments, and then pushing a scale matrix to the mvg. -- Florent Monnier _______________________________________________ Magick-users mailing list [email protected] http://studio.imagemagick.org/mailman/listinfo/magick-users
