フォルダ内の画像ファイルを一括でwebpに変換するNode.js+TypeScriptサンプル

フォルダ内の画像を一括でWebpに変換したいと思いました。

さらに変換する際に

  • pngファイル → 可逆圧縮なwebp
  • jpegファイル → 非可逆圧縮なwebp

というふうにjpgとpngでそれぞれ「可逆圧縮」と「非可逆圧縮」を切り替えたいと思いました。

 

ですが、これを実現するツールが見つからなかったので自分でつくりました。

どうせなのでブログ記事のネタにしたろと思って、ソースも載せてみます。

 

index.ts

 import { searchFiles } from "./serachFiles";
import { promises as fs } from "fs";
import sharp, { WebpOptions } from "sharp";

(async () => {
  const SERACH_TARGET_DIR = "./input";
  const imageFileInfos = await searchFiles(SERACH_TARGET_DIR);
  for (const { dirName, fileName, ext } of imageFileInfos) {
    const webpOption: WebpOptions = {};
    switch (ext) {
      case ".jpeg":
      case ".jpg":
        webpOption.lossless = false;
        break;
      case ".png":
        webpOption.nearLossless = true;
        break;
    }
    await sharp(`./${dirName}/${fileName}`)
      .webp(webpOption)
      .toFile(`./${dirName}/${fileName.split(".")[0]}.webp`);
    await fs.unlink(`./${dirName}/${fileName}`) //圧縮前の画像を削除したくない場合はコメントアウトする
  }
})();

 

searchFiles .ts

import { promises as fs } from "fs";
import path from "path";

type SerachFile = {
  dirName: string;
  fileName: string;
  ext: string;
};
const SERACH_EXT_LIST = [".jpg", ".jpeg", ".png"];
export const searchFiles = async (dirPath: string): Promise<SerachFile[]> => {
  const allDirents = await fs.readdir(dirPath, { withFileTypes: true });

  const files: SerachFile[] = [];
  for (const dirent of allDirents) {
    if (dirent.isDirectory()) {
      const newDirPath = path.join(dirPath, dirent.name);
      const newFiles: SerachFile[] = await searchFiles(newDirPath);
      files.push(...newFiles);
    }
    if (dirent.isFile() && SERACH_EXT_LIST.includes(path.extname(dirent.name))) {
      files.push({
        dirName: path.join(dirPath),
        fileName: dirent.name,
        ext: path.extname(dirent.name),
      });
    }
  }
  return files;
};

 

GitHubにもアップしてます。(README.mdに使い方を書いてます)

penpendayo/webp-nodejs

ソースの詳しい解説はしないのですが、このソースを書くにあたって考えた点などを書いてみます。

sharp を使った理由

理由は以下のような感じです。

  • Node.jsの画像処理ライブラリの中で一番情報が多そうだったから
  • TypeScriptの型情報があったから

 

自分のUsecase的にいうと、Google製のSquooshのライブラリ版である「@squoosh/lib」のほうが合っていました。

というのも「@squoosh/lib」のほうだと可逆圧縮のときに「色数」も選択できるんですよね。(GUI版でいうところの「Reduce Colors」のことです)

なので更に高圧縮を実現できます。

ただ、今回は「TypeScriptでなにか作ってみたいな~」な気分だったのですが、「@squoosh/lib」にはTypeScriptの型情報がないので、sharpのほうで妥協した感じです。

nearLosslessというオプション

Webpには「nearLossless」というオプションがあります。

これ自分は知らなかったのですが「限りなく可逆圧縮に近い画質だけど非可逆圧縮だよ!」にできるオプションらしいです。

なので上のソースでは、pngのほうの圧縮も、厳密にいうと非可逆圧縮にしてます。

 

おわり

Node.js
スポンサーリンク
この記事を書いた人
penpen

1991生まれ。WEBエンジニア。

技術スタック:TypeScript/Next.js/Express/Docker/AWS

フォローする
フォローする

コメント

',b.captions&&s){var u=J("figcaption");u.id="baguetteBox-figcaption-"+t,u.innerHTML=s,l.appendChild(u)}e.appendChild(l);var c=J("img");c.onload=function(){var e=document.querySelector("#baguette-img-"+t+" .baguetteBox-spinner");l.removeChild(e),!b.async&&n&&n()},c.setAttribute("src",r),c.alt=a&&a.alt||"",b.titleTag&&s&&(c.title=s),l.appendChild(c),b.async&&n&&n()}}function X(){return M(o+1)}function D(){return M(o-1)}function M(e,t){return!n&&0<=e&&e=k.length?(b.animation&&O("right"),!1):(q(o=e,function(){z(o),V(o)}),R(),b.onChange&&b.onChange(o,k.length),!0)}function O(e){l.className="bounce-from-"+e,setTimeout(function(){l.className=""},400)}function R(){var e=100*-o+"%";"fadeIn"===b.animation?(l.style.opacity=0,setTimeout(function(){m.transforms?l.style.transform=l.style.webkitTransform="translate3d("+e+",0,0)":l.style.left=e,l.style.opacity=1},400)):m.transforms?l.style.transform=l.style.webkitTransform="translate3d("+e+",0,0)":l.style.left=e}function z(e){e-o>=b.preload||q(e+1,function(){z(e+1)})}function V(e){o-e>=b.preload||q(e-1,function(){V(e-1)})}function U(e,t,n,o){e.addEventListener?e.addEventListener(t,n,o):e.attachEvent("on"+t,function(e){(e=e||window.event).target=e.target||e.srcElement,n(e)})}function W(e,t,n,o){e.removeEventListener?e.removeEventListener(t,n,o):e.detachEvent("on"+t,n)}function G(e){return document.getElementById(e)}function J(e){return document.createElement(e)}return[].forEach||(Array.prototype.forEach=function(e,t){for(var n=0;n","http://www.w3.org/2000/svg"===(e.firstChild&&e.firstChild.namespaceURI)}(),m.passiveEvents=function i(){var e=!1;try{var t=Object.defineProperty({},"passive",{get:function(){e=!0}});window.addEventListener("test",null,t)}catch(n){}return e}(),function a(){if(r=G("baguetteBox-overlay"))return l=G("baguetteBox-slider"),u=G("previous-button"),c=G("next-button"),void(d=G("close-button"));(r=J("div")).setAttribute("role","dialog"),r.id="baguetteBox-overlay",document.getElementsByTagName("body")[0].appendChild(r),(l=J("div")).id="baguetteBox-slider",r.appendChild(l),(u=J("button")).setAttribute("type","button"),u.id="previous-button",u.setAttribute("aria-label","Previous"),u.innerHTML=m.svg?f:"<",r.appendChild(u),(c=J("button")).setAttribute("type","button"),c.id="next-button",c.setAttribute("aria-label","Next"),c.innerHTML=m.svg?g:">",r.appendChild(c),(d=J("button")).setAttribute("type","button"),d.id="close-button",d.setAttribute("aria-label","Close"),d.innerHTML=m.svg?p:"×",r.appendChild(d),u.className=c.className=d.className="baguetteBox-button",function n(){var e=m.passiveEvents?{passive:!1}:null,t=m.passiveEvents?{passive:!0}:null;U(r,"click",x),U(u,"click",E),U(c,"click",C),U(d,"click",B),U(l,"contextmenu",A),U(r,"touchstart",T,t),U(r,"touchmove",N,e),U(r,"touchend",L),U(document,"focus",P,!0)}()}(),S(e),function s(e,a){var t=document.querySelectorAll(e),n={galleries:[],nodeList:t};return w[e]=n,[].forEach.call(t,function(e){a&&a.filter&&(y=a.filter);var t=[];if(t="A"===e.tagName?[e]:e.getElementsByTagName("a"),0!==(t=[].filter.call(t,function(e){if(-1===e.className.indexOf(a&&a.ignoreClass))return y.test(e.href)})).length){var i=[];[].forEach.call(t,function(e,t){var n=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1,H(i,a),I(t)},o={eventHandler:n,imageElement:e};U(e,"click",n),i.push(o)}),n.galleries.push(i)}}),n.galleries}(e,t)},show:M,showNext:X,showPrevious:D,hide:j,destroy:function e(){!function n(){var e=m.passiveEvents?{passive:!1}:null,t=m.passiveEvents?{passive:!0}:null;W(r,"click",x),W(u,"click",E),W(c,"click",C),W(d,"click",B),W(l,"contextmenu",A),W(r,"touchstart",T,t),W(r,"touchmove",N,e),W(r,"touchend",L),W(document,"focus",P,!0)}(),function t(){for(var e in w)w.hasOwnProperty(e)&&S(e)}(),W(document,"keydown",F),document.getElementsByTagName("body")[0].removeChild(document.getElementById("baguetteBox-overlay")),w={},h=[],o=0}}})
タイトルとURLをコピーしました