Search found 17 matches

by janebrandhub
2017-09-06T21:05:38-07:00
Forum: Users
Topic: Converting EPS to jpg with jagged edge issue
Replies: 18
Views: 14119

Re: Converting EPS to jpg with jagged edge issue

Thank you. If there are no other way to reduce the image size
by janebrandhub
2017-08-31T20:20:13-07:00
Forum: Users
Topic: Converting EPS to jpg with jagged edge issue
Replies: 18
Views: 14119

Re: Converting EPS to jpg with jagged edge issue

Tried, but that doesn't help much with -quality 90 still double size as the one generated from photoshop.
by janebrandhub
2017-08-30T22:56:56-07:00
Forum: Users
Topic: Converting EPS to jpg with jagged edge issue
Replies: 18
Views: 14119

Re: Converting EPS to jpg with jagged edge issue

But now i have another issue with the output jpg. My resize script: magick -density 1200 -colorspace "CMYK" input.eps -density "300" -resize "1754x2480" -flatten -quality 95 output.jpg The output.jpg quality is good enough, but file size is twice more than generated by ...
by janebrandhub
2017-08-30T15:14:00-07:00
Forum: Users
Topic: Converting EPS to jpg with jagged edge issue
Replies: 18
Views: 14119

Re: Converting EPS to jpg with jagged edge issue

Thank you very much. I didn't check original eps width smaller than A5, so magnifying caused the aliasing. Now the problem is solved.
by janebrandhub
2017-08-29T21:19:39-07:00
Forum: Users
Topic: Converting EPS to jpg with jagged edge issue
Replies: 18
Views: 14119

Re: Converting EPS to jpg with jagged edge issue

Tried different ways and still can't figure out this issue. But i do know why your command: "magick -density 300 test2.eps -resize 1000x1000 test2_white.png" doesn't have jagged issue is because the resize is not big enough. When i use "magick -density 300 test2.eps -resize 1754x2480 ...
by janebrandhub
2017-08-24T20:04:59-07:00
Forum: Users
Topic: Converting EPS to jpg with jagged edge issue
Replies: 18
Views: 14119

Re: Converting EPS to jpg with jagged edge issue

the reason why it's not working is i will write a general convert script to convert different types of images into small size jpeg, so they can be used on website. This convert script works well for most of image types: tiff, pdf, even eps. But only for certain eps images, the converted jpeg file ha...
by janebrandhub
2017-08-23T14:47:58-07:00
Forum: Users
Topic: Converting EPS to jpg with jagged edge issue
Replies: 18
Views: 14119

Re: Converting EPS to jpg with jagged edge issue

That's not going to work. This script should be very simple convert, but it always cause jagged edge with even very simple script:
magick input.eps output.jpg

Is it only because my input eps has transparency?
by janebrandhub
2017-08-22T16:27:20-07:00
Forum: Users
Topic: Converting EPS to jpg with jagged edge issue
Replies: 18
Views: 14119

Re: Converting EPS to jpg with jagged edge issue

This issue is different. I only need to convert eps to jpg(not png) which i can use on website, and i don't need to do "-alpha transparent -clip -alpha opaque +clip". But simple convert script will cause jagged edge: magick -density "300" -colorspace "sRGB" input.eps -r...
by janebrandhub
2017-08-20T20:03:17-07:00
Forum: Users
Topic: Converting EPS to jpg with jagged edge issue
Replies: 18
Views: 14119

Converting EPS to jpg with jagged edge issue

I try to convert EPS to jpg with simple command: magick -density "300" -colorspace "sRGB" input.eps -resize "1000x1000" -background "#ffffff" -flatten output.jpg But the output jpg has jagged edge in the bottom. The original eps file link: https://www.dropbox....
by janebrandhub
2017-08-14T16:46:52-07:00
Forum: Users
Topic: Im4Java 1.4 can't do +clip?
Replies: 0
Views: 9074

Im4Java 1.4 can't do +clip?

Does anyone know how to do +clip with Im4Java? It seems Im4Java only has -clip, -clip-path and +clip-path.
by janebrandhub
2017-08-13T16:41:02-07:00
Forum: Users
Topic: EPS with clipping path convert to png with transparent background
Replies: 12
Views: 10940

Re: EPS with clipping path convert to png with transparent background

Thank you all. This issue is resolved.
by janebrandhub
2017-08-10T22:45:52-07:00
Forum: Users
Topic: EPS with clipping path convert to png with transparent background
Replies: 12
Views: 10940

Re: EPS with clipping path convert to png with transparent background

Thank you for the script. I know where is the jagged issue from. It's from -resize If i do your script: convert -density 300 -units pixelsperinch -colorspace srgb test1.eps -alpha transparent -clip -alpha opaque -strip test1_output.png I get the good anti-aliased result, but if i want to resize png ...
by janebrandhub
2017-08-09T21:26:23-07:00
Forum: Users
Topic: EPS with clipping path convert to png with transparent background
Replies: 12
Views: 10940

Re: EPS with clipping path convert to png with transparent background

The script convert -density 600 -colorspace sRGB 218755504_HOV_EPS.eps -alpha transparent -clip -alpha opaque -strip -resize 25% 218755504_HOV_EPS_im6_2.png has better output than the first one. But the right edge of png image is better than the left and top edge. I also tried couple of my own eps i...
by janebrandhub
2017-08-08T22:50:44-07:00
Forum: Users
Topic: EPS with clipping path convert to png with transparent background
Replies: 12
Views: 10940

Re: EPS with clipping path convert to png with transparent background

I tried your script and get the same jagged edge. My current script is: magick -density 300 -depth "8" -colorspace "sRGB" input.eps -alpha "transparent" -clip -alpha "opaque" -resize "400x400" output.png I also try to add -fuzz 1% -fill none but no l...