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.
|
I need to optimize some images, but not change their name.
However, this seems to create an filesize of 0. When i do it to a different filename, the size is still exactly the same. |
||||
|
|
how about:
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. |
|||||||||||
|
|
I use this script. Works flawlessly. I hope this helps.
Usage 1:
Usage 2:
|
|||
|
I did it in three lines:
Works well. |
|||||
|