npm.io
0.1.0 • Published 6 years ago

weserv-sdk

Licence
ISC
Version
0.1.0
Deps
2
Size
10 kB
Vulns
0
Weekly
0

Weserv.nl SDK

A javascript/typescript SDK for using weserv.nl image transformation service

Example Usage 1

import weserv, {Transform} from "./index"

const original = "https://images.weserv.nl/puppy.jpg"

const config: Transform = { 
    w: 1000, 
    h: 1000, 
    fit: "cover", 
    a: "attention", 
    mask: "heart"
}

const transformed = weserv.transform(original, config)
// https://images.weserv.nl?url=images.weserv.nl%2Fpuppy.jpg&w=1000&h=1000&fit=cover&a=attention&mask=heart
Original Transformed

Documentation

You can see the full documentation here: Weserv.nl Docs

The config arguments for the SDK are basically the same as the query strings from the documentation.

Exceptions

For queries that require multiple parameters to be passed at the same time (e.g. &ch=300&cw=300&cx=300&cy=300), you would use it like this:

List of properties affected by this:

  • Rectangular crop

    • From
    "&ch=300&cw=300&cx=300&cy=300"
    • To
    {
       // ...other transformations
       c: {
           x: 300,
           y: 300,
           w: 300,
           h: 300
       }
      }
  • Focal Alignment

    • From
    "&a=focal-0-20"
    • To
       {
          // ...other transformations
          a: {
              x: 0,
              y: 20,
          }
      }