npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

imtool

v1.2.1

Published

Client-side canvas-based image manipulation library.

Downloads

4,460

Readme

npm install imtool
# or:
yarn add imtool

Table of contents

  1. Why?
  2. Examples
  3. Usage

Why?

Client-side image manipulation:

  • allows for end to end encryption of thumbnails along with the original images,
  • allows for easy usage within Electron without relying on external tools like Imagemagick,
  • allows for cropping and compressing the image on the client side without quality loss.

Examples

Demo

The source code of the live demo is available here: https://github.com/mat-sz/imtool-demo

Load an image, create a thumbnail and export it as data URL

import { fromImage } from 'imtool';

async function example() {
  const tool = await fromImage('./image.png');
  return await tool.thumbnail(250).toDataURL();
}

Load a screenshot, crop a part of it and export it as a Blob

import { fromScreen } from 'imtool';

async function example() {
  const tool = await fromScreen();
  return await tool.crop(50, 50, 200, 200).toBlob();
}

Load a webcam capture, crop a part of it, create a thumbnail and export as data URL

import { fromWebcam } from 'imtool';

async function example() {
  const tool = await fromWebcam();
  return await tool.crop(50, 50, 500, 500).thumbnail(250).toDataURL();
}

Usage

Import

imtool provides 6 easy to use from* functions, all of the functions return a Promise:

fromImage(image: string | Blob | File | HTMLImageElement)

Creates an instance of ImTool from an URL, Blob, File or HTMLImageElement.

In case of URL and HTMLImageElement being used the image must be accessible to the current origin, by either being from the same origin or by being from an origin specified in Access-Control-Allow-Origin header on the response from the desired URL.

fromVideo(video: HTMLVideoElement)

Creates an instance of ImTool from an HTMLVideoElement.

The video must be accessible to the current origin, by either being from the same origin or by being from an origin specified in Access-Control-Allow-Origin header on the response from the desired URL.

fromCanvas(video: HTMLCanvasElement)

Creates an instance of ImTool from an HTMLCanvasElement.

The canvas must not be tainted.

fromWebcam()

Asks the user for the permission to access their webcam, captures the image, and creates an instance of ImTool.

Must be called directly from an user action, for example: a button press.

fromScreen()

Asks the user for the permission to access their desktop capture, captures the image, and creates an instance of ImTool.

Must be called directly from an user action, for example: a button press. May be not supported on some browsers, like Safari (including all internet browsers on iOS), Internet Explorer and older versions of other browsers.

fromMediaStream(stream: MediaStream)

Creates an instance of ImTool from MediaStream (must contain at least one video track).

Image manipulation

All functions return the same instance of ImTool, allowing for easy chaining.

thumbnail(maxSize: number, cover: boolean = false)

Creates a thumbnail. The code for this comes from my older project, nailit.

  • maxSize specifies the maximum size (either width or height) of the resulting image.
  • cover when set to true will cause the resulting image to be a square and the input image will be centered with its smallest dimension becoming as large as maxDimension and the overflow being cut off.

scale(width: number, height: number)

Scales the image down/up to specified width and height.

crop(x: number, y: number, width: number, height: number)

Moves the input image from (x, y) to (0, 0) and crops it down to the specified width and height.

flipV()

Flips the image vertically.

flipH()

Flips the image horizontally.

rotate(rad: number)

Rotates the input image by rad radians relative to the center of the image. The output image size will be increased to fit the entire rotated image.

rotateDeg(degrees: number)

Rotates the input image by degrees degrees relative to the center of the image. The output image size will be increased to fit the entire rotated image.

background(color: string)

Set the background color of the current image.

Export options

type(type: string)

Sets the output mimetype (most commmonly supported ones are image/jpeg and image/png).

quality(quality: number)

Output quality (for lossy compression), a number between 0.0 and 1.0.

Export

toBlob(): Promise<Blob>

Outputs a Blob.

toBlobURL(): Promise<string>

Outputs a blob URL.

toDataURL(): Promise<string>

Outputs a data URL.

toCanvas(): Promise<HTMLCanvasElement>

Outputs a <canvas>.

toImage(): Promise<HTMLImageElement>

Outputs an <img>.

toDownload(name: string): Promise

Causes the resulting file to be downloaded by the browser with a given name.

toFile(name: string): Promise<File>

Outputs a File that can be easily sent with FormData.

Properties

All of the following are readonly unless noted otherwise.

width: number

Width of the output image.

height: number

Height of the output image.

originalWidth: number

Width of the input image.

originalHeight: number

Height of the input image.