Movatterモバイル変換


[0]ホーム

URL:


Skip to content
DEV Community
Log in Create account

DEV Community

Cover image for Using jpegoptim to optimize JPEG images
Onelinerhub
Onelinerhub

Posted on

     

Using jpegoptim to optimize JPEG images

1. Batch optimize multiple JPG images

jpegoptim--strip-all /dir/*.jpg
Enter fullscreen modeExit fullscreen mode
  • jpegoptim - tool to optimize JPG images (apt install jpegoptim),
  • --strip-all - removes all meta data from file,
  • /dir/*.jpg - list of images to optimize (files will be overwritten).

Open original oredit on Github.

2. Optimize JPG image

jpegoptim--strip-all img.jpg
Enter fullscreen modeExit fullscreen mode
  • jpegoptim - tool to optimize JPG images (apt install jpegoptim),
  • --strip-all - removes all meta data from file,
  • img.jpg - input image to be optimized (will be overwritten).

Open original oredit on Github.

3. Optimize JPG image to fit to certain file size

jpegoptim--strip-all-S 100k img.jpg
Enter fullscreen modeExit fullscreen mode
  • jpegoptim - tool to optimize JPG images (apt install jpegoptim),
  • --strip-all - removes all meta data from file,
  • -S 100k - try to optimize so that final file size is less than 100k,
  • img.jpg - input image to be optimized (will be overwritten).

Open original oredit on Github.

Top comments(0)

Subscribe
pic
Create template

Templates let you quickly answer FAQs or store snippets for re-use.

Dismiss

Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment'spermalink.

For further actions, you may consider blocking this person and/orreporting abuse

Code/data enthusiast & creator @ onelinerhub.com
  • Location
    Kyiv, Ukraine
  • Education
    Bachelor in Electronics, Software & data engineer, MBA
  • Work
    Data-intensive apps engineer, creator & contributor @ onelinerhub.com
  • Joined

More fromOnelinerhub

DEV Community

We're a place where coders share, stay up-to-date and grow their careers.

Log in Create account

[8]ページ先頭

©2009-2025 Movatter.jp