-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0e0edd2
commit b2ad077
Showing
4 changed files
with
85 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
export interface Options { | ||
/** | ||
* Speed `10` has 5% lower quality, but is about 8 times faster than the default. Speed `11` disables dithering and lowers compression level. | ||
* | ||
* Values: `1` (brute-force) to `11` (fastest) | ||
* | ||
* @default 3 | ||
*/ | ||
speed?: number; | ||
|
||
/** | ||
* Remove optional metadata. | ||
* | ||
* @default false | ||
*/ | ||
strip?: boolean; | ||
|
||
/** | ||
* Instructs pngquant to use the least amount of colors required to meet or exceed the max quality. If conversion results in quality below the min quality the image won't be saved. | ||
* Min and max are numbers in range 0 (worst) to 1 (perfect), similar to JPEG. | ||
* | ||
* Values: `[0...1, 0...1]` | ||
* | ||
* @example [0.3, 0.5] | ||
*/ | ||
quality?: [number, number]; | ||
|
||
/** | ||
* Set the dithering level using a fractional number between 0 (none) and 1 (full). | ||
* Pass in `false` to disable dithering. | ||
* | ||
* Values: 0...1 | ||
* | ||
* @default 1 | ||
*/ | ||
dithering?: number | boolean; | ||
|
||
/** | ||
* Truncate number of least significant bits of color (per channel). | ||
* Use this when image will be output on low-depth displays (e.g. 16-bit RGB). pngquant will make almost-opaque pixels fully opaque and will reduce amount of semi-transparent colors. | ||
*/ | ||
posterize?: number; | ||
|
||
/** | ||
* Print verbose status messages. | ||
* | ||
* @default false | ||
*/ | ||
verbose?: boolean; | ||
} | ||
|
||
/** | ||
* Buffer or stream to optimize. | ||
* | ||
* @returns A `Promise` for a `Buffer`. | ||
*/ | ||
export type Plugin = (input: Buffer | NodeJS.ReadableStream) => Promise<Buffer> | ||
|
||
/** | ||
* Imagemin plugin for pngquant. | ||
* | ||
* @returns An Imagemin plugin. | ||
*/ | ||
export default function imageminPngquant(options?: Options): Plugin; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import * as fs from 'fs'; | ||
import * as path from 'path'; | ||
import {expectType} from 'tsd-check'; | ||
import imageminPngquant from '.'; | ||
|
||
const buffer = await fs.readFileSync(path.join(__dirname, 'fixture.png')); | ||
|
||
expectType<Buffer>(await imageminPngquant()(buffer)); | ||
expectType<Buffer>(await imageminPngquant({ | ||
speed: 10, | ||
quality: [0.8, 1] | ||
})(buffer)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters