0.0.14 • Published 3 years ago

@imageproc/core v0.0.14

Weekly downloads
10
License
MIT
Repository
-
Last release
3 years ago

@imageproc/core

Image processing core module

Usage

npm install @imageproc/core
import * as imageproc from "@imageproc/core";

(async () => {
    const proc = new imageproc.ImageProcessorSharp();
    const sourceBuf = fs.readFileSync("image.png");
    const buf = await proc.resizeAspectFit(sourceBuf, {
        ...
    });
    fs.writeFileSync("generated.png", buf);
})();

ImageProcessor usage

see: ImageProcessor.ts

ImageProcessor implementation

0.0.14

3 years ago

0.0.13

4 years ago

0.0.12

4 years ago

0.0.11

4 years ago

0.0.10

4 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago