Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to optimize some images, but not change their name.

jpegtran -copy none -optimize image.jpg > image.jpg 

However, this seems to create an filesize of 0. When i do it to a different filename, the size is still exactly the same.

share|improve this question

3 Answers

up vote 4 down vote accepted

how about:

jpegtran -copy none -optimize -outfile image.jpg image.jpg

I'm not a shell expert by any means, but I think that with your original command, as soon as it is executed, the redirect is set up which overwrites your image.jpg. Then when jpegtran tries to read it in it finds an empty file.

share|improve this answer
Doesn't work :/ – Clement Herreman May 26 '11 at 22:08
Clement please provide details, this works for me (and apparently for the poster.) – UnbanRonMaimon May 27 '11 at 0:04
Well, Jpegtran only accept 1 parameter, the original filename. Giving him a 2nd parameter, like you do, makes him throw an exception. This code would work on windows, but not on linux. You'd have to use jpegtran -copy none -optimize -outfile image.jpg > newimage.jpg as OP said, but then, it's not a file replacement. Precision: I tested it on Ubuntu/Jpegtran version 8b , maybe other version would work with your code. – Clement Herreman May 27 '11 at 13:36
Also the jpegtran -optimize image.jpg > image.jpg doesn't work, as linux first clear and recreate the image.jpg (> image.jpg), and only then launch the command (jpegtran -optimize image.jpg). – Clement Herreman May 27 '11 at 13:38
Clement I think you must have something wrong with your system, this works fine for me on OSX as well as Ubuntu with Jpegtran 8b. Try copy and pasting the exact line from my answer and please post your output if it doesn't execute properly. – UnbanRonMaimon May 27 '11 at 15:36
show 4 more comments

I use this script. Works flawlessly. I hope this helps.

http://pastie.org/4566002

#! /bin/sh    

EXTENSIONS="jpe?g"

if [ -z "$1" ]; then
    DIR="`pwd`"
else
    DIR="$1"
fi

# Optimize JPEG images
find $DIR -regextype posix-egrep -regex ".*\.($EXTENSIONS)\$" -type f | xargs -I{} jpegtran -optimize -progressive -outfile "{}.optimized" "{}"

# Rename xxx.jpg.optimized -> xxx.jpg
for file in $(find $DIR -name '*.optimized'); do 
    chown $(stat -c "%U:%G" "${file%.optimized}") "$file"
    chmod $(stat -c "%a" "${file%.optimized}") "$file"
    mv -f "$file" "${file%.optimized}"; 
done

Usage 1:

optimize-images.sh /images/dir

Usage 2:

cd /images/dir
optimize-images.sh 
share|improve this answer
Thanks! IMos , the shell script works like a charm – anshuman Jan 15 at 12:35
Glad to help @anshuman – IMos Mar 15 at 10:24

I did it in three lines:

jpegtran -optimize image.jpg > image.jpg-opt
cp image.jpg-opt image.jpg
rm image.jpg-opt

Works well.

share|improve this answer
5  
jpegtran -optimize image.jpg > image.jpg-opt && mv image.jpg-opt image.jpg – MarutiB Jul 4 '12 at 5:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.