2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

オレオレライブラリ、スニペットAdvent Calendar 2024

Day 9

CLIでWEBP変換を行なう

Last updated at Posted at 2024-12-08

CLI上で画像をWEBPに変換するための手順になります。

cwebpをインストール

下記のいずれかを実行します。

# CentOSの場合
sudo yum install libwebp-tools

# ubuntuの場合
sudo apt install webp

下記のshファイルを作成

#!/bin/sh

DIR="resources/img"

Files=$(find $DIR -type f -iname "*.jpg" -o -iname "*.png" -o -iname "*.jpeg")

for File in $Files
do
    cwebp -metadata icc -sharp_yuv $File -o "${File%.*}.webp"
done

実行方法

DIRの部分を変換したい画像が配置されているディレクトリのパスに変更します。
.jpg.jpeg.pngの画像を変換の対象としています。

上記シェルを実行することで変換したい画像と同じディレクトリにwebpに変換された画像が生成されます。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?