Hi,
we are converting a line drawing AI file to bitmap (png) to print it on our product labels.
But the line thickness / width in the print result is not good enough.
I'm wondering if I can duplicate the png and overlay it with a offset of 1Pt.
Can someone help?
Thanks.
Convert AI to PNG
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Convert AI to PNG
Yes. The best way of doing this will depend on a few factors. One method, assuming you have black marks on a white background, is to composite with an offset and "composite darken" so each output pixel is the darker of the input pixels. Something like:
Code: Select all
magick in.ai ( +clone ) -geometry +1+1 -compose Darken -composite out.png
snibgo's IM pages: im.snibgo.com