9.3.2 • Published 1 year ago

@hkjeffchan/imagemin v9.3.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

imagemin

Minify images seamlessly Fork from https://github.com/imagemin/imagemin Repackage with latest dependencies and cjs support


Install

$ npm install @hkjeffchan/imagemin

Usage

import imagemin from "imagemin";
import imageminJpegtran from "imagemin-jpegtran";
import imageminPngquant from "imagemin-pngquant";

const files = await imagemin(["images/*.{jpg,png}"], {
	destination: "build/images",
	plugins: [
		imageminJpegtran(),
		imageminPngquant({
			quality: [0.6, 0.8],
		}),
	],
});

console.log(files);
//=> [{data: <Buffer 89 50 4e …>, destinationPath: 'build/images/foo.jpg'}, …]

API

imagemin(input, options?)

Returns Promise<object[]> in the format {data: Buffer, sourcePath: string, destinationPath: string}.

input

Type: string[]

File paths or glob patterns.

options

Type: object

destination

Type: string

Set the destination folder to where your files will be written. If no destination is specified, no files will be written.

plugins

Type: Array

Plugins to use.

glob

Type: boolean\ Default: true

Enable globbing when matching file paths.

imagemin.buffer(buffer, options?)

Returns Promise<Buffer>.

buffer

Type: Buffer

Buffer to optimize.

options

Type: object

plugins

Type: Array

Plugins to use.

Related

9.3.2

1 year ago

9.3.0

1 year ago

9.2.0

1 year ago

9.1.0

1 year ago

9.0.2

1 year ago

9.0.1

1 year ago

9.0.0

1 year ago