R
RHjorth
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
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