From: RHjorth Date: 2008-03-25T22:05:00+09:00 Subject: RMagick convert EPS to PNG => poor quality Hi all, After some initial troubles having RMagick (and ImageMagick) working on windows, it finally works and quite well I might add. However when convertin a EPS (yes, a barcode) to PNG (and rotating it) the quality are unusable poor - the code for doing it are faily simple: psc = Magick::ImageList.new(ps_name) psc.density = "300x300" psc = psc.rotate(270) psc.write(im_name) I think the density are ignored. What else am I doing wrong? Please help me out here :)