jimp

An image processing library written entirely in JavaScript.

jimp downloads jimp version

jimp類似パッケージ:

npmのダウンロードトレンド

3 年
🌟 jimpのREADME.mdにリアルタイム使用チャートを表示するには、以下のコードをコピーしてください。
## Usage Trend
[![Usage Trend of jimp](https://npm-compare.com/img/npm-trend/THREE_YEARS/jimp.png)](https://npm-compare.com/jimp#timeRange=THREE_YEARS)
🌟 jimpのREADME.mdにGitHub Starsトレンドチャートを表示するには、以下のコードをコピーしてください。
## GitHub Stars Trend
[![GitHub Stars Trend of jimp](https://npm-compare.com/img/github-trend/jimp.png)](https://npm-compare.com/jimp)

統計詳細

パッケージ
ダウンロード数
Stars
サイズ
Issues
公開日時
ライセンス
jimp2,114,224-4.03 MB-1年前MIT

jimp のREADME

Jimp

JavaScript Image Manipulation Program

The "JavaScript Image Manipulation Program" :-)

An image processing library for Node written entirely in JavaScript, with zero native dependencies.

The default jimp configuration.

Supported types:

  • @jimp/jpeg
  • @jimp/png
  • @jimp/bmp
  • @jimp/tiff
  • @jimp/gif

Read the full docs.

Installation

npm install --save jimp

Usage

const { Jimp } = require("jimp");

// open a file called "lenna.png"
const image = await Jimp.read("test.png");

image.resize(256, 256); // resize

await image.write("test-small.jpg"); // save