Colors/size when converting JPG to EPS
Posted: 2014-01-16T03:42:02-07:00
Hi,
I'm new here and really no expert concerning imaging. I have issues converting a JPG to EPS on Windows using
The original:
Identify: _1.jpg JPEG 305x1091 305x1091+0+0 8-bit CMYK 1.922MB 0.016u 0:00.017
https://www.dropbox.com/s/58risypec0goh5h/_1.jpg
Maintain Colorspace
Identify: t1.eps PS 73x262 73x262+0+0 8-bit sRGB 15.8KB 0.000u 0:00.000
The image has a red tint. It works if I open the original and resave it first using Paint or IrfanView.
https://www.dropbox.com/s/o35eyq41g5p3seh/t1.eps
Identify: t2.eps3 PS 305x1091 305x1091+0+0 8-bit ColorSeparation CMYK 1.331MB 0.000u 0:00.001
Renamed it to .eps and it worked out. Colors are fine here. Does this have any side-effects?
https://www.dropbox.com/s/5c8hw3ebik11jzo/t2.eps
Force sRGB
Identify: cmyk2rgb.eps PS 305x1091 305x1091+0+0 8-bit sRGB 225KB 0.000u 0:00.000
Colors are fine. I have to provide a density to retain the size, even though I recall EPS not using density. Read in another thread that "-density 72" argument could work and it does, although I recall EPS not using density. IrfanView shows the size as 407x1455.
https://www.dropbox.com/s/7yt5znoykrcsdw6/cmyk2rgb.eps
Force CMYK
Identify: cmyk2cmyk.eps PS 305x1091 305x1091+0+0 8-bit sRGB 230KB 0.000u 0:00.000
Again the colors are tinted red'ishly.
https://www.dropbox.com/s/isf73zis07jut4j/cmyk2cmyk.eps
Identify: cmyk2cmyk2.eps3 PS 305x1091 305x1091+0+0 8-bit ColorSeparation CMYK 1.331MB 0.000u 0:00.002
Also read this in another thread. Renamed it to *.eps.
https://www.dropbox.com/s/6wshzbjyoh726 ... 2cmyk2.eps
Thank you for your attention.
I'm new here and really no expert concerning imaging. I have issues converting a JPG to EPS on Windows using
- a fresh IM-6.8.8-2 installation
- GhostScript 9.10
- IrfanView 4.36
The original:
Identify: _1.jpg JPEG 305x1091 305x1091+0+0 8-bit CMYK 1.922MB 0.016u 0:00.017
https://www.dropbox.com/s/58risypec0goh5h/_1.jpg
Maintain Colorspace
Code: Select all
convert _1.jpg t1.eps
The image has a red tint. It works if I open the original and resave it first using Paint or IrfanView.
https://www.dropbox.com/s/o35eyq41g5p3seh/t1.eps
Code: Select all
convert _1.jpg -density 72 t2.eps3
Renamed it to .eps and it worked out. Colors are fine here. Does this have any side-effects?
https://www.dropbox.com/s/5c8hw3ebik11jzo/t2.eps
Force sRGB
Code: Select all
convert _1.jpg -density 72 -profile "profiles/sRGB Color Space Profile.ICM" cmyk2rgb.eps
Colors are fine. I have to provide a density to retain the size, even though I recall EPS not using density. Read in another thread that "-density 72" argument could work and it does, although I recall EPS not using density. IrfanView shows the size as 407x1455.
https://www.dropbox.com/s/7yt5znoykrcsdw6/cmyk2rgb.eps
Force CMYK
Code: Select all
convert _1.jpg -density 72 -profile "profiles/USWebCoatedSWOP.icc" cmyk2cmyk.eps
Again the colors are tinted red'ishly.
https://www.dropbox.com/s/isf73zis07jut4j/cmyk2cmyk.eps
Code: Select all
convert _1.jpg -density 72 -profile "profiles/USWebCoatedSWOP.icc" cmyk2cmyk2.eps3
Also read this in another thread. Renamed it to *.eps.
https://www.dropbox.com/s/6wshzbjyoh726 ... 2cmyk2.eps
Thank you for your attention.
