How do I convert tiff to jpeg and remove a layer
Posted: 2007-03-03T02:12:48-07:00
I am working on command to automatically resize and convert a directory of tiff's from a digital camera to jpeg's but the pictures have 2 layers one being the picture and one being a thumbnail. When I resize it also resizes the thumbnail and then that ruins the picture. Since all it is, is a resized thumbnail that is viewable.
Here is my scripts
#######
for i in `ls -C1 *.TIF`
do
convert -verbose -resize 1280x960 $i $i.jpg
done
#######
Here is the programs output
#######
TIFF Directory at offset 0x8 (8)
Image Width: 3296 Image Length: 2472
Resolution: 72, 72 pixels/inch
Bits/Sample: 8
Compression Scheme: None
Photometric Interpretation: RGB color
YCbCr Positioning: cosited
Orientation: row 0 top, col 0 lhs
Samples/Pixel: 3
Rows/Strip: 1
Planar Configuration: single image plane
ImageDescription: DIGITAL CAMERA
Make: CAMERA
Model: 8MP-9U4
Software: V1.06AK
DateTime: 2007:03:02 06:29:51
EXIFIFDOffset: 340
TIFF Directory at offset 0x2a2a (10794)
Image Width: 160 Image Length: 120
Resolution: 72, 72 pixels/inch
Bits/Sample: 8
Compression Scheme: None
Photometric Interpretation: RGB color
Samples/Pixel: 3
Rows/Strip: 17
Planar Configuration: single image plane
PICT0250.TIF[0] TIFF 3296x2472 DirectClass 23.4mb
PICT0250.TIF[1] TIFF 160x120 DirectClass 23.4mb
PICT0250.TIF TIFF 3296x2472=>1280x960 DirectClass 23.4mb 1.280u 0:03
PICT0250.TIF[1] TIFF 160x120=>1280x960 DirectClass 23.4mb
PICT0250.TIF=>PICT0250.jpg[0] TIFF 3296x2472=>1280x960 DirectClass 792kb 0.500u 0:02
PICT0250.TIF=>PICT0250.jpg[1] TIFF 160x120=>1280x960 DirectClass 352kb 0.320u 0:02
Here is my scripts
#######
for i in `ls -C1 *.TIF`
do
convert -verbose -resize 1280x960 $i $i.jpg
done
#######
Here is the programs output
#######
TIFF Directory at offset 0x8 (8)
Image Width: 3296 Image Length: 2472
Resolution: 72, 72 pixels/inch
Bits/Sample: 8
Compression Scheme: None
Photometric Interpretation: RGB color
YCbCr Positioning: cosited
Orientation: row 0 top, col 0 lhs
Samples/Pixel: 3
Rows/Strip: 1
Planar Configuration: single image plane
ImageDescription: DIGITAL CAMERA
Make: CAMERA
Model: 8MP-9U4
Software: V1.06AK
DateTime: 2007:03:02 06:29:51
EXIFIFDOffset: 340
TIFF Directory at offset 0x2a2a (10794)
Image Width: 160 Image Length: 120
Resolution: 72, 72 pixels/inch
Bits/Sample: 8
Compression Scheme: None
Photometric Interpretation: RGB color
Samples/Pixel: 3
Rows/Strip: 17
Planar Configuration: single image plane
PICT0250.TIF[0] TIFF 3296x2472 DirectClass 23.4mb
PICT0250.TIF[1] TIFF 160x120 DirectClass 23.4mb
PICT0250.TIF TIFF 3296x2472=>1280x960 DirectClass 23.4mb 1.280u 0:03
PICT0250.TIF[1] TIFF 160x120=>1280x960 DirectClass 23.4mb
PICT0250.TIF=>PICT0250.jpg[0] TIFF 3296x2472=>1280x960 DirectClass 792kb 0.500u 0:02
PICT0250.TIF=>PICT0250.jpg[1] TIFF 160x120=>1280x960 DirectClass 352kb 0.320u 0:02