Coder Social home page Coder Social logo

optimizt's Introduction

@343dev/optimizt

Optimizt avatar: OK sign with Mona Lisa picture between the fingers

npm

Optimizt is a CLI tool that helps you prepare images during frontend development.

It can compress PNG, JPEG, GIF and SVG lossy and lossless and create AVIF and WebP versions for raster images.

По-русски

Rationale

As frontend developers we have to care about pictures: compress PNG & JPEG, remove useless parts of SVG, create AVIF and WebP for modern browsers, etc. One day we got tired of using a bunch of apps for that, and created one tool that does everything we want.

Usage

Install the tool:

npm i -g @343dev/optimizt

Optimize!

optimizt path/to/picture.jpg

Command line flags

  • --avif — create AVIF versions for the passed paths instead of compressing them.
  • --webp — create WebP versions for the passed paths instead of compressing them.
  • -f, --force — force create AVIF and WebP even if output file size increased or file already exists.
  • -l, --lossless — optimize losslessly instead of lossily.
  • -v, --verbose — show additional info, e.g. skipped files.
  • -c, --config — use this configuration, overriding default config options if present.
  • -o, --output — write result to provided directory.
  • -V, --version — show tool version.
  • -h, --help — show help.

Examples

# one image optimization
optimizt path/to/picture.jpg

# list of images optimization losslessly
optimizt --lossless path/to/picture.jpg path/to/another/picture.png

# recursive AVIF creation in the passed directory
optimizt --avif path/to/directory

# recursive WebP creation in the passed directory
optimizt --webp path/to/directory

# recursive JPEG optimization in the current directory
find . -iname \*.jpg -exec optimizt {} +

Differences between Lossy and Lossless

Lossy (by default)

Allows you to obtain the final image with a balance between a high level of compression and a minimum level of visual distortion.

Lossless (--lossless flag)

When creating AVIF and WebP versions, optimizations are applied that do not affect the visual quality of the images.

PNG, JPEG, and GIF optimization uses settings that maximize the visual quality of the image at the expense of the final file size.

When processing SVG files, the settings for Lossy and Lossless modes are identical.

Configuration

JPEG, PNG, WebP, and AVIF processing is done using sharp library, while SVG is processed using svgo utility.

For optimizing GIFs, gifsicle is used, and for converting to WebP, gif2webp is used.

💡 Lossless mode uses Guetzli encoder to optimize JPEG, which allows to get a high level of compression and still have a good visual quality. But you should keep in mind that if you optimize the file again, the size may decrease at the expense of degrading the visual quality of the image.

The default settings are located in .optimiztrc.js, the file contains a list of supported parameters and their brief description.

To disable any of the parameters, you should use false for the value.

When running with the --config path/to/.optimiztrc.js flag, the settings from the specified configuration file will be used for image processing.

When running normally, without the --config flag, a recursive search for the .optimiztrc.js file will be performed starting from the current directory and up to the root of the file system. If the file is not found, the default settings will be applied.

Integrations

External Tool in WebStorm, PhpStorm, etc

Add an External Tool

Open Preferences → Tools → External Tools and add a new tool with these options:

  • Program: path to the exec file (usually simply optimizt)
  • Arguments: desired ones, but use $FilePath$ to pass Optimizt the path of the selected file or directory
  • Working Directory: $ContentRoot$
  • Synchronize files after execution: ✔️

Set other options at your discretion. For example:

As you see on the screenshot above, you may add several “external tools” with the different options passed.

How to use

Run the tool through the context menu on a file or directory:

Shortcuts

To add shortcuts for the added tool go to Preferences → Keymap → External Tools:

Tasks in Visual Studio Code

Add Task

Run >Tasks: Open User Tasks from the Command Palette.

In an open file, add new tasks to the tasks array, for example:

{
  // See https://go.microsoft.com/fwlink/?LinkId=733558
  // for the documentation about the tasks.json format
  "version": "2.0.0",
  "tasks": [
    {
      "label": "optimizt: Optimize Image",
      "type": "shell",
      "command": "optimizt",
      "args": [
        "--verbose",
        {
          "value": "${file}",
          "quoting": "strong"
        }
      ],
      "presentation": {
        "echo": false,
        "showReuseMessage": false,
        "clear": true
      }
    },
    {
      "label": "optimizt: Optimize Image (lossless)",
      "type": "shell",
      "command": "optimizt",
      "args": [
        "--lossless",
        "--verbose",
        {
          "value": "${file}",
          "quoting": "strong"
        }
      ],
      "presentation": {
        "echo": false,
        "showReuseMessage": false,
        "clear": true
      }
    },
    {
      "label": "optimizt: Create WebP",
      "type": "shell",
      "command": "optimizt",
      "args": [
        "--webp",
        "--verbose",
        {
          "value": "${file}",
          "quoting": "strong"
        }
      ],
      "presentation": {
        "echo": false,
        "showReuseMessage": false,
        "clear": true
      }
    },
    {
      "label": "optimizt: Create WebP (lossless)",
      "type": "shell",
      "command": "optimizt",
      "args": [
        "--webp",
        "--lossless",
        "--verbose",
        {
          "value": "${file}",
          "quoting": "strong"
        }
      ],
      "presentation": {
        "echo": false,
        "showReuseMessage": false,
        "clear": true
      }
    }
  ]
}

How to use

  1. Open the file for processing using Optimizt, it should be in the active tab.
  2. Run >Tasks: Run Task from the Command Palette.
  3. Select the required task.

Shortcuts

You can add shortcuts for a specific task by run >Preferences: Open Keyboard Shortcuts (JSON) from the Command Palette.

An example of adding a hotkey to run the "optimizt: Optimize Image (lossless)" task:

// Place your key bindings in this file to override the defaults
[
  {
    "key": "ctrl+l",
    "command": "workbench.action.tasks.runTask",
    "args": "optimizt: Optimize Image (lossless)"
  }
]

Plugin for Sublime Text 3

You’ll find the user settings directory in one of the following paths:

  • macOS: ~/Library/Application Support/Sublime Text 3/Packages/User
  • Linux: ~/.config/sublime-text-3/Packages/User
  • Windows: %APPDATA%\Sublime Text 3\Packages\User

Add plugin

Inside the settings directory create a file optimizt.py with the following content:

import os
import sublime
import sublime_plugin

optimizt = "~/.nodenv/shims/optimizt"

class OptimiztCommand(sublime_plugin.WindowCommand):
  def run(self, paths=[], options=""):
    if len(paths) < 1:
      return

    safe_paths = ["\"" + i + "\"" for i in paths]
    shell_cmd = optimizt + " " + options + " " + " ".join(safe_paths)
    cwd = os.path.dirname(paths[0])

    self.window.run_command("exec", {
      "shell_cmd": shell_cmd,
      "working_dir": cwd
    })

Specify path to executable inside optimizt variable, this path can be obtained by running command -v optimizt (on *nix) or where optimizt (on Windows).

Integrate the plugin into the sidebar context menu

Inside the settings directory create a file Side Bar.sublime-menu with the following content:

[
    {
        "caption": "Optimizt",
        "children": [
          {
              "caption": "Optimize Images",
              "command": "optimizt",
              "args": {
                "paths": [],
                "options": "--verbose"
              }
          },
          {
              "caption": "Optimize Images (lossless)",
              "command": "optimizt",
              "args": {
                "paths": [],
                "options": "--lossless --verbose"
              }
          },
          {
              "caption": "Create WebP",
              "command": "optimizt",
              "args": {
                "paths": [],
                "options": "--webp --verbose"
              }
          },
          {
              "caption": "Create WebP (lossless)",
              "command": "optimizt",
              "args": {
                "paths": [],
                "options": "--webp --lossless --verbose"
              }
          }
        ]
    }
]

How to use

Run the tool through the context menu on a file or directory:

Workflow for GitHub Actions

Create optimizt.yml file in the .github/workflows directory of your repository.

Insert the following code into optimizt.yml:

name: optimizt

on:
  # Triggers the workflow on push events but only for the “main” branch
  # and only when there's JPEG/PNG in the commmit
  push:
    branches:
      - main
    paths:
      - "**.jpe?g"
      - "**.png"
  
  # Allows you to run this workflow manually from the Actions tab
  workflow_dispatch:

jobs:
  convert:
    runs-on: ubuntu-latest

    steps:
      # Install Node.js to avoid EACCESS errors upon install packages
      - uses: actions/setup-node@v2
        with:
          node-version: 14

      - name: Install Optimizt
        run: npm install --global @343dev/optimizt

      - uses: actions/checkout@v2
        with:
          persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
          fetch-depth: 0 # get all commits (only the last one fetched by default)

      - name: Run Optimizt
        run: optimizt --verbose --force --avif --webp .

      - name: Commit changes
        run: |
          git add -A
          git config --local user.email "[email protected]"
          git config --local user.name "github-actions[bot]"
          git diff --quiet && git diff --staged --quiet \
            || git commit -am "Create WebP & AVIF versions"

      - name: Push changes
        uses: ad-m/github-push-action@master
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          branch: ${{ github.ref }}

This workflow will find all JPEG and PNG files in pushed commits and add the AVIF and WebP versions via a new commit.

More examples you can find in the workflows directory.

Troubleshooting

“spawn guetzli ENOENT”, etc

Make sure that the ignore-scripts option is not active.

See #9.

“pkg-config: command not found”, “fatal error: 'png.h' file not found”, etc

Some operating systems may lack of required libraries and utils, so you need to install them.

Example (on macOS via Homebrew):

brew install pkg-config libpng

Docker

Pull by name

docker pull 343dev/optimizt

Pull by name and version

docker pull 343dev/optimizt:4.1.0

Build the image

If you want to manually build the Docker image, you need to:

  1. Clone this repo and cd into it.
  2. Run docker build -t 343dev/optimizt ..

OR:

  • Run docker build -t 343dev/optimizt https://github.com/343dev/optimizt.git, but keep in mind that the .dockerignore file will be ignored.

Run the container

Inside the container WORKDIR is set to /src, so by default all paths will be resolved relative to it.

Usage example:

docker run -v $(pwd):/src 343dev/optimizt --webp image.png

Credits

Cute picture for the project was made by Igor Garybaldi.

optimizt's People

Contributors

343dev avatar dependabot[bot] avatar dissimulazione avatar igoradamenko avatar ksenius avatar macleykun avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

optimizt's Issues

guetzli pre-build test failed - Error on NPM install

Hey I ran npm i -g @343dev/optimizt and I found this issue. I'm using MacOs - maybe there's some undocumented dep?

npm ERR! code 1
npm ERR! path /Users/robertwebb/.nvm/versions/node/v18.15.0/lib/node_modules/@343dev/optimizt/node_modules/guetzli
npm ERR! command failed
npm ERR! command sh -c node lib/install.js
npm ERR! compiling from source
npm ERR! guetzli built successfully
npm ERR! Command failed: /Users/robertwebb/.nvm/versions/node/v18.15.0/lib/node_modules/@343dev/optimizt/node_modules/guetzli/vendor/guetzli /Users/robertwebb/.nvm/versions/node/v18.15.0/lib/node_modules/@343dev/optimizt/node_modules/guetzli/test/fixtures/test.jpg /Users/robertwebb/.nvm/versions/node/v18.15.0/lib/node_modules/@343dev/optimizt/node_modules/guetzli/test/fixtures/dest.jpg
npm ERR! Can't open input file
npm ERR! 
npm ERR! 
npm ERR! guetzli pre-build test failed
npm ERR! /Users/robertwebb/.nvm/versions/node/v18.15.0/lib/node_modules/@343dev/optimizt/node_modules/execa/index.js:231
npm ERR!                                err = new Error(`Command failed: ${joinedCmd}${output}`);
npm ERR!                                      ^
npm ERR! 
npm ERR! Error: Command failed: /bin/sh -c make && mv bin/Release/guetzli /Users/robertwebb/.nvm/versions/node/v18.15.0/lib/node_modules/@343dev/optimizt/node_modules/guetzli/vendor/guetzli
npm ERR! /bin/sh: pkg-config: command not found
npm ERR! /bin/sh: pkg-config: command not found
npm ERR! /bin/sh: pkg-config: command not found
npm ERR! /bin/sh: pkg-config: command not found
npm ERR! /bin/sh: pkg-config: command not found
npm ERR! /bin/sh: pkg-config: command not found
npm ERR! /bin/sh: pkg-config: command not found
npm ERR! guetzli/guetzli.cc:23:10: fatal error: 'png.h' file not found
npm ERR! #include "png.h"
npm ERR!          ^~~~~~~
npm ERR! 1 error generated.
npm ERR! make[1]: *** [obj/Release/guetzli.o] Error 1
npm ERR! make: *** [guetzli] Error 2
npm ERR! 
npm ERR! ==== Building guetzli (release) ====
npm ERR! Creating bin/Release
npm ERR! Creating obj/Release
npm ERR! butteraugli_comparator.cc
npm ERR! dct_double.cc
npm ERR! debug_print.cc
npm ERR! entropy_encode.cc
npm ERR! fdct.cc
npm ERR! gamma_correct.cc
npm ERR! guetzli.cc
npm ERR! 
npm ERR!     at /Users/robertwebb/.nvm/versions/node/v18.15.0/lib/node_modules/@343dev/optimizt/node_modules/execa/index.js:231:11
npm ERR!     at process.processTicksAndRejections (node:internal/process/task_queues:95:5) {
npm ERR!   code: 2,
npm ERR!   killed: false,
npm ERR!   stdout: '==== Building guetzli (release) ====\n' +
npm ERR!     'Creating bin/Release\n' +
npm ERR!     'Creating obj/Release\n' +
npm ERR!     'butteraugli_comparator.cc\n' +
npm ERR!     'dct_double.cc\n' +
npm ERR!     'debug_print.cc\n' +
npm ERR!     'entropy_encode.cc\n' +
npm ERR!     'fdct.cc\n' +
npm ERR!     'gamma_correct.cc\n' +
npm ERR!     'guetzli.cc\n',
npm ERR!   stderr: '/bin/sh: pkg-config: command not found\n' +
npm ERR!     '/bin/sh: pkg-config: command not found\n' +
npm ERR!     '/bin/sh: pkg-config: command not found\n' +
npm ERR!     '/bin/sh: pkg-config: command not found\n' +
npm ERR!     '/bin/sh: pkg-config: command not found\n' +
npm ERR!     '/bin/sh: pkg-config: command not found\n' +
npm ERR!     '/bin/sh: pkg-config: command not found\n' +
npm ERR!     "guetzli/guetzli.cc:23:10: fatal error: 'png.h' file not found\n" +
npm ERR!     '#include "png.h"\n' +
npm ERR!     '         ^~~~~~~\n' +
npm ERR!     '1 error generated.\n' +
npm ERR!     'make[1]: *** [obj/Release/guetzli.o] Error 1\n' +
npm ERR!     'make: *** [guetzli] Error 2\n',
npm ERR!   failed: true,
npm ERR!   signal: null,
npm ERR!   cmd: '/bin/sh -c make && mv bin/Release/guetzli /Users/robertwebb/.nvm/versions/node/v18.15.0/lib/node_modules/@343dev/optimizt/node_modules/guetzli/vendor/guetzli',
npm ERR!   timedOut: false
npm ERR! }
npm ERR! 
npm ERR! Node.js v18.15.0

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/robertwebb/.npm/_logs/2023-11-03T21_27_23_404Z-debug-0.log

start optimization over RESTful API calls

I'm using paperless-ngx inside the (docker) container station on my qnap nas.

I defined a folder "consume" in my "docker-compose.yaml" where paperless-ngx looks for new files. In addition i pass a docker variable named "PAPERLESS_PRE_CONSUME_SCRIPT" to execute a special script before the new file will processed.

My wish:
If a new file is available, i would like to execute a script to check if the file is an image and if yes, i would like to optimize that image with "optimizt".

My idea:

  1. I run a container of "optimizt"
  2. Pass the right folders into both containers
  3. In my "PAPERLESS_PRE_CONSUME_SCRIPT" script i would like to fire up a call, that the new file should be optimized.

As the two containers don't know anything about the other, it would be nice that i can execute a RESTful API call to fire up the optimization of the new image.

My question:
Is it possible to integrate a RESTful API interface?
Maybe with Flask-Shell2HTTP

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.