I'm trying to convert an EPS file into a JPEG.
So i'm typing the folowing command :
Code: Select all
convert my_eps_file.eps my_jpeg_file.jpg
so after looking some hours on internet, looking in differents documentation on your site i was able to come with the folowing command :
Code: Select all
identify PAF018050003_L.eps
PAF018050003_L.eps EPT 1656x1242=>397x298 397x298+0+0 DirectClass 16-bit 469.836kb
Second strange thing 1656x1242 is the size i want the jpeg to be and 397x298 is the converted file size.
I go on and add the verbose option :
Code: Select all
identify -verbose PAF018050003_L.eps
Image: PAF018050003_L.eps
Format: EPT (Encapsulated PostScript with TIFF preview)
Class: DirectClass
Geometry: 397x298+0+0
Base geometry: 1656x1242
Resolution: 72x72
Print size: 5.51389x4.13889
Units: Undefined
Type: ColorSeparation
Endianess: Undefined
Colorspace: CMYK
Depth: 16/8-bit
Channel depth:
cyan: 8-bit
magenta: 8-bit
yellow: 8-bit
black: 1-bit
Channel statistics:
cyan:
min: 0 (0)
max: 234 (0.917647)
mean: 133.765 (0.524568)
standard deviation: 74.0163 (0.29026)
magenta:
min: 0 (0)
max: 222 (0.870588)
mean: 135.362 (0.530832)
standard deviation: 68.7094 (0.269448)
yellow:
min: 0 (0)
max: 221 (0.866667)
mean: 142.872 (0.560283)
standard deviation: 66.3969 (0.26038)
black:
min: 0 (0)
max: 0 (0)
mean: 0 (0)
standard deviation: 0 (0)
Total ink density: 261%
Rendering intent: Undefined
Interlace: None
Background color: white
Border color: cmyk(223,223,223,0)
Matte color: grey74
Transparent color: black
Page geometry: 397x298+0+0
Dispose: Undefined
Iterations: 0
Compression: Undefined
Orientation: Undefined
Properties:
create-date: 2008-04-18T18:38:48+02:00
modify-date: 2008-04-18T18:38:50+02:00
ps:HiResBoundingBox: 397.44x298.08+0+0
ps:Level: Adobe-3.0 EPSF-3.0
signature: 5b5adcca36b272c8713d8e66beeb983380ca544261daf9f52b38671552cfb28f
Profiles:
Profile-8bim: 18294 bytes
unknown[2,0]:
unknown[224,225]: 0x00000000: ffffffff ff60ff02 2bffff0e ffffff03 43ff6fff $-----`--+-------C-o
0x00000014: 32ff7e62 ffffff72 58ffff22 58ff703a ffff7f44 -2-~b---rX--"X
0x00000028: 703affff 7f446bff 5d6f7337 ff00 -p:---D
Profile-icc: 557168 bytes
Europe ISO Coated FOGRA27
Profile-xml-code: 15849 bytes
Artifacts:
verbose: true
Tainted: False
Filesize: 469.836kb
Number pixels: 115.533kb
Version: ImageMagick 6.4.0 04/12/08 Q16 http://www.imagemagick.org
So here is the question :
How can i tell IM i want the convert to take the base geometry size and not the bonding box size ?
Thanks in advance for any help given.