Compare commits
19 Commits
b7ff2645c4
...
5ee83d13e2
Author | SHA1 | Date | |
---|---|---|---|
|
5ee83d13e2 | ||
|
0d04e9dba3 | ||
|
f3a4f060c6 | ||
|
3c177af594 | ||
|
9d40a64120 | ||
|
fda06a62b0 | ||
|
75a135eabe | ||
|
c9850afe67 | ||
|
a619f29313 | ||
|
9b88547f12 | ||
|
8e3ec0fc61 | ||
|
edad89c531 | ||
|
9d01dd20bf | ||
|
5ab9168813 | ||
|
67ff930535 | ||
|
ae5ba702a4 | ||
|
63f0ab5e20 | ||
|
eeac8d4656 | ||
|
14c83e1f4c |
4
.github/workflows/ci.yml
vendored
@ -183,7 +183,7 @@ jobs:
|
|||||||
nodejs_version_major: 18
|
nodejs_version_major: 18
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: uraimo/run-on-arch-action@v2
|
- uses: uraimo/run-on-arch-action@v3
|
||||||
with:
|
with:
|
||||||
arch: ${{ matrix.run_on_arch }}
|
arch: ${{ matrix.run_on_arch }}
|
||||||
distro: ${{ matrix.distro }}
|
distro: ${{ matrix.distro }}
|
||||||
@ -208,7 +208,7 @@ jobs:
|
|||||||
contents: write
|
contents: write
|
||||||
name: wasm32 - prebuild
|
name: wasm32 - prebuild
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
container: "emscripten/emsdk:3.1.70"
|
container: "emscripten/emsdk:4.0.5"
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
2
.gitignore
vendored
@ -14,3 +14,5 @@ test/leak/libvips.supp
|
|||||||
package-lock.json
|
package-lock.json
|
||||||
.idea
|
.idea
|
||||||
.firebase
|
.firebase
|
||||||
|
.astro
|
||||||
|
docs/dist
|
||||||
|
79
docs/astro.config.mjs
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
// @ts-check
|
||||||
|
import { defineConfig } from 'astro/config';
|
||||||
|
import starlight from '@astrojs/starlight';
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
site: 'https://sharp.pixelplumbing.com',
|
||||||
|
integrations: [
|
||||||
|
starlight({
|
||||||
|
title: 'sharp',
|
||||||
|
description:
|
||||||
|
'High performance Node.js image processing. The fastest module to resize JPEG, PNG, WebP and TIFF images.',
|
||||||
|
logo: {
|
||||||
|
src: './src/assets/sharp-logo.svg',
|
||||||
|
alt: '#'
|
||||||
|
},
|
||||||
|
customCss: ['./src/styles/custom.css'],
|
||||||
|
head: [{
|
||||||
|
tag: 'meta',
|
||||||
|
attrs: {
|
||||||
|
'http-equiv': 'Content-Security-Policy',
|
||||||
|
content: "default-src 'self'; connect-src 'self'; object-src 'none'; style-src 'self' 'unsafe-inline'; img-src 'self' data: https://cdn.jsdelivr.net/gh/lovell/; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://static.cloudflareinsights.com/beacon.min.js/;"
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
tag: 'link',
|
||||||
|
attrs: {
|
||||||
|
rel: 'author',
|
||||||
|
href: '/humans.txt',
|
||||||
|
type: 'text/plain'
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
tag: 'script',
|
||||||
|
attrs: {
|
||||||
|
type: 'application/ld+json'
|
||||||
|
},
|
||||||
|
content: JSON.stringify({
|
||||||
|
'@context': 'https://schema.org',
|
||||||
|
'@type': 'SoftwareSourceCode',
|
||||||
|
name: 'sharp',
|
||||||
|
description: 'High performance Node.js image processing',
|
||||||
|
url: 'https://sharp.pixelplumbing.com',
|
||||||
|
codeRepository: 'https://github.com/lovell/sharp',
|
||||||
|
programmingLanguage: ['JavaScript', 'C++'],
|
||||||
|
runtimePlatform: 'Node.js',
|
||||||
|
copyrightHolder: {
|
||||||
|
'@context': 'https://schema.org',
|
||||||
|
'@type': 'Person',
|
||||||
|
name: 'Lovell Fuller'
|
||||||
|
},
|
||||||
|
copyrightYear: 2013,
|
||||||
|
license: 'https://www.apache.org/licenses/LICENSE-2.0'
|
||||||
|
})
|
||||||
|
}],
|
||||||
|
sidebar: [
|
||||||
|
{ label: 'Home', link: '/' },
|
||||||
|
{ label: 'Installation', slug: 'install' },
|
||||||
|
{
|
||||||
|
label: 'API',
|
||||||
|
items: [
|
||||||
|
{ label: 'Constructor', slug: 'api-constructor' },
|
||||||
|
{ label: 'Input metadata', slug: 'api-input' },
|
||||||
|
{ label: 'Output options', slug: 'api-output' },
|
||||||
|
{ label: 'Resizing images', slug: 'api-resize' },
|
||||||
|
{ label: 'Compositing images', slug: 'api-composite' },
|
||||||
|
{ label: 'Image operations', slug: 'api-operation' },
|
||||||
|
{ label: 'Colour manipulation', slug: 'api-colour' },
|
||||||
|
{ label: 'Channel manipulation', slug: 'api-channel' },
|
||||||
|
{ label: 'Global properties', slug: 'api-utility' }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{ label: 'Performance', slug: 'performance' },
|
||||||
|
{ label: 'Changelog', slug: 'changelog' }
|
||||||
|
],
|
||||||
|
social: {
|
||||||
|
openCollective: 'https://opencollective.com/libvips',
|
||||||
|
github: 'https://github.com/lovell/sharp'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
]
|
||||||
|
});
|
@ -1,38 +0,0 @@
|
|||||||
// Copyright 2013 Lovell Fuller and others.
|
|
||||||
// SPDX-License-Identifier: Apache-2.0
|
|
||||||
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
const fs = require('fs').promises;
|
|
||||||
const path = require('path');
|
|
||||||
const jsdoc2md = require('jsdoc-to-markdown');
|
|
||||||
|
|
||||||
[
|
|
||||||
'constructor',
|
|
||||||
'input',
|
|
||||||
'resize',
|
|
||||||
'composite',
|
|
||||||
'operation',
|
|
||||||
'colour',
|
|
||||||
'channel',
|
|
||||||
'output',
|
|
||||||
'utility'
|
|
||||||
].forEach(async (m) => {
|
|
||||||
const input = path.join('lib', `${m}.js`);
|
|
||||||
const output = path.join('docs', `api-${m}.md`);
|
|
||||||
|
|
||||||
const ast = await jsdoc2md.getTemplateData({ files: input });
|
|
||||||
const markdown = await jsdoc2md.render({
|
|
||||||
data: ast,
|
|
||||||
'global-index-format': 'none',
|
|
||||||
'module-index-format': 'none'
|
|
||||||
});
|
|
||||||
|
|
||||||
const cleanMarkdown = markdown
|
|
||||||
.replace(/(## )([A-Za-z0-9]+)([^\n]*)/g, '$1$2\n> $2$3\n') // simplify headings to match those of documentationjs, ensures existing URLs work
|
|
||||||
.replace(/<a name="[A-Za-z0-9+]+"><\/a>/g, '') // remove anchors, let docute add these (at markdown to HTML render time)
|
|
||||||
.replace(/\*\*Kind\*\*: global[^\n]+/g, '') // remove all "global" Kind labels (requires JSDoc refactoring)
|
|
||||||
.trim();
|
|
||||||
|
|
||||||
await fs.writeFile(output, cleanMarkdown);
|
|
||||||
});
|
|
42
docs/build.mjs
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
// Copyright 2013 Lovell Fuller and others.
|
||||||
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
import fs from 'node:fs/promises';
|
||||||
|
import path from 'node:path';
|
||||||
|
import jsdoc2md from 'jsdoc-to-markdown';
|
||||||
|
|
||||||
|
const pages = {
|
||||||
|
constructor: 'Constructor',
|
||||||
|
input: 'Input metadata',
|
||||||
|
resize: 'Resizing images',
|
||||||
|
composite: 'Compositing images',
|
||||||
|
operation: 'Image operations',
|
||||||
|
colour: 'Colour manipulation',
|
||||||
|
channel: 'Channel manipulation',
|
||||||
|
output: 'Output options',
|
||||||
|
utility: 'Global properties'
|
||||||
|
};
|
||||||
|
|
||||||
|
Object.keys(pages).forEach(async (m) => {
|
||||||
|
const input = path.join('lib', `${m}.js`);
|
||||||
|
const output = path.join('docs', 'src', 'content', 'docs', `api-${m}.md`);
|
||||||
|
|
||||||
|
const ast = await jsdoc2md.getTemplateData({ files: input });
|
||||||
|
const markdown = await jsdoc2md.render({
|
||||||
|
data: ast,
|
||||||
|
'global-index-format': 'none',
|
||||||
|
'module-index-format': 'none'
|
||||||
|
});
|
||||||
|
|
||||||
|
const cleanMarkdown =
|
||||||
|
`---\n# This file was auto-generated from JSDoc in lib/${m}.js\ntitle: ${pages[m]}\n---\n\n` +
|
||||||
|
markdown
|
||||||
|
.replace(/(## )([A-Za-z0-9]+)([^\n]*)/g, '$1$2\n> $2$3\n') // simplify headings
|
||||||
|
.replace(/<a name="[A-Za-z0-9+]+"><\/a>/g, '') // remove anchors
|
||||||
|
.replace(/\*\*Kind\*\*: global[^\n]+/g, '') // remove all "global" Kind labels (requires JSDoc refactoring)
|
||||||
|
.trim();
|
||||||
|
|
||||||
|
await fs.writeFile(output, cleanMarkdown);
|
||||||
|
});
|
1
docs/docute.min.js
vendored
@ -1,14 +1,7 @@
|
|||||||
{
|
{
|
||||||
"hosting": {
|
"hosting": {
|
||||||
"site": "pixelplumbing-sharp",
|
"site": "pixelplumbing-sharp",
|
||||||
"public": ".",
|
"public": "dist",
|
||||||
"ignore": [
|
|
||||||
".*",
|
|
||||||
"build.js",
|
|
||||||
"firebase.json",
|
|
||||||
"image/**",
|
|
||||||
"search-index/**"
|
|
||||||
],
|
|
||||||
"headers": [
|
"headers": [
|
||||||
{
|
{
|
||||||
"source": "**",
|
"source": "**",
|
||||||
|
Before Width: | Height: | Size: 652 B |
Before Width: | Height: | Size: 2.8 KiB |
202
docs/index.html
17
docs/package.json
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"name": "sharp-docs",
|
||||||
|
"type": "module",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"private": true,
|
||||||
|
"scripts": {
|
||||||
|
"dev": "astro dev",
|
||||||
|
"start": "astro dev",
|
||||||
|
"build": "astro build",
|
||||||
|
"preview": "astro preview",
|
||||||
|
"astro": "astro"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@astrojs/starlight": "^0.31.0",
|
||||||
|
"astro": "^5.1.7"
|
||||||
|
}
|
||||||
|
}
|
@ -1,111 +0,0 @@
|
|||||||
# Performance
|
|
||||||
|
|
||||||
A test to benchmark the performance of this module relative to alternatives.
|
|
||||||
|
|
||||||
Greater libvips performance can be expected with caching enabled (default)
|
|
||||||
and using 8+ core machines, especially those with larger L1/L2 CPU caches.
|
|
||||||
|
|
||||||
The I/O limits of the relevant (de)compression library will generally determine maximum throughput.
|
|
||||||
|
|
||||||
## Contenders
|
|
||||||
|
|
||||||
* [jimp](https://www.npmjs.com/package/jimp) v0.22.10 - Image processing in pure JavaScript.
|
|
||||||
* [imagemagick](https://www.npmjs.com/package/imagemagick) v0.1.3 - Supports filesystem only and "*has been unmaintained for a long time*".
|
|
||||||
* [gm](https://www.npmjs.com/package/gm) v1.25.0 - Fully featured wrapper around GraphicsMagick's `gm` command line utility.
|
|
||||||
* [@squoosh/lib](https://www.npmjs.com/package/@squoosh/lib) v0.5.3 - Image libraries transpiled to WebAssembly, includes GPLv3 code, but "*Project no longer maintained*".
|
|
||||||
* [@squoosh/cli](https://www.npmjs.com/package/@squoosh/cli) v0.7.3 - Command line wrapper around `@squoosh/lib`, avoids GPLv3 by spawning process, but "*Project no longer maintained*".
|
|
||||||
* sharp v0.33.0 / libvips v8.15.0 - Caching within libvips disabled to ensure a fair comparison.
|
|
||||||
|
|
||||||
## Environment
|
|
||||||
|
|
||||||
### AMD64
|
|
||||||
|
|
||||||
* AWS EC2 us-east-2 [c7a.xlarge](https://aws.amazon.com/ec2/instance-types/c7a/) (4x AMD EPYC 9R14)
|
|
||||||
* Ubuntu 23.10 [13f233a16be2](https://hub.docker.com/layers/library/ubuntu/23.10/images/sha256-13f233a16be210b57907b98b0d927ceff7571df390701e14fe1f3901b2c4a4d7)
|
|
||||||
* Node.js 20.10.0
|
|
||||||
|
|
||||||
### ARM64
|
|
||||||
|
|
||||||
* AWS EC2 us-east-2 [c7g.xlarge](https://aws.amazon.com/ec2/instance-types/c7g/) (4x ARM Graviton3)
|
|
||||||
* Ubuntu 23.10 [7708743264cb](https://hub.docker.com/layers/library/ubuntu/23.10/images/sha256-7708743264cbb7f6cf7fc13e915faece45a6cdda455748bc55e58e8de3d27b63)
|
|
||||||
* Node.js 20.10.0
|
|
||||||
|
|
||||||
## Task: JPEG
|
|
||||||
|
|
||||||
Decompress a 2725x2225 JPEG image,
|
|
||||||
resize to 720x588 using Lanczos 3 resampling (where available),
|
|
||||||
then compress to JPEG at a "quality" setting of 80.
|
|
||||||
|
|
||||||
Note: jimp does not support Lanczos 3, bicubic resampling used instead.
|
|
||||||
|
|
||||||
#### Results: JPEG (AMD64)
|
|
||||||
|
|
||||||
| Module | Input | Output | Ops/sec | Speed-up |
|
|
||||||
| :----------------- | :----- | :----- | ------: | -------: |
|
|
||||||
| jimp | buffer | buffer | 0.84 | 1.0 |
|
|
||||||
| squoosh-cli | file | file | 1.54 | 1.8 |
|
|
||||||
| squoosh-lib | buffer | buffer | 2.24 | 2.7 |
|
|
||||||
| imagemagick | file | file | 11.75 | 14.0 |
|
|
||||||
| gm | buffer | buffer | 12.66 | 15.1 |
|
|
||||||
| gm | file | file | 12.72 | 15.1 |
|
|
||||||
| sharp | stream | stream | 48.31 | 57.5 |
|
|
||||||
| sharp | file | file | 51.42 | 61.2 |
|
|
||||||
| sharp | buffer | buffer | 52.41 | 62.4 |
|
|
||||||
|
|
||||||
#### Results: JPEG (ARM64)
|
|
||||||
|
|
||||||
| Module | Input | Output | Ops/sec | Speed-up |
|
|
||||||
| :----------------- | :----- | :----- | ------: | -------: |
|
|
||||||
| jimp | buffer | buffer | 0.88 | 1.0 |
|
|
||||||
| squoosh-cli | file | file | 1.18 | 1.3 |
|
|
||||||
| squoosh-lib | buffer | buffer | 1.99 | 2.3 |
|
|
||||||
| gm | buffer | buffer | 6.06 | 6.9 |
|
|
||||||
| gm | file | file | 10.81 | 12.3 |
|
|
||||||
| imagemagick | file | file | 10.95 | 12.4 |
|
|
||||||
| sharp | stream | stream | 33.15 | 37.7 |
|
|
||||||
| sharp | file | file | 34.99 | 39.8 |
|
|
||||||
| sharp | buffer | buffer | 36.05 | 41.0 |
|
|
||||||
|
|
||||||
## Task: PNG
|
|
||||||
|
|
||||||
Decompress a 2048x1536 RGBA PNG image,
|
|
||||||
premultiply the alpha channel,
|
|
||||||
resize to 720x540 using Lanczos 3 resampling (where available),
|
|
||||||
unpremultiply then compress as PNG with a "default" zlib compression level of 6
|
|
||||||
and without adaptive filtering.
|
|
||||||
|
|
||||||
Note: jimp does not support premultiply/unpremultiply.
|
|
||||||
|
|
||||||
### Results: PNG (AMD64)
|
|
||||||
|
|
||||||
| Module | Input | Output | Ops/sec | Speed-up |
|
|
||||||
| :----------------- | :----- | :----- | ------: | -------: |
|
|
||||||
| squoosh-cli | file | file | 0.34 | 1.0 |
|
|
||||||
| squoosh-lib | buffer | buffer | 0.51 | 1.5 |
|
|
||||||
| jimp | buffer | buffer | 3.59 | 10.6 |
|
|
||||||
| gm | file | file | 8.54 | 25.1 |
|
|
||||||
| imagemagick | file | file | 9.23 | 27.1 |
|
|
||||||
| sharp | file | file | 25.43 | 74.8 |
|
|
||||||
| sharp | buffer | buffer | 25.70 | 75.6 |
|
|
||||||
|
|
||||||
### Results: PNG (ARM64)
|
|
||||||
|
|
||||||
| Module | Input | Output | Ops/sec | Speed-up |
|
|
||||||
| :----------------- | :----- | :----- | ------: | -------: |
|
|
||||||
| squoosh-cli | file | file | 0.33 | 1.0 |
|
|
||||||
| squoosh-lib | buffer | buffer | 0.46 | 1.4 |
|
|
||||||
| jimp | buffer | buffer | 3.51 | 10.6 |
|
|
||||||
| gm | file | file | 7.47 | 22.6 |
|
|
||||||
| imagemagick | file | file | 8.06 | 24.4 |
|
|
||||||
| sharp | file | file | 17.31 | 52.5 |
|
|
||||||
| sharp | buffer | buffer | 17.66 | 53.5 |
|
|
||||||
|
|
||||||
## Running the benchmark test
|
|
||||||
|
|
||||||
Requires Docker.
|
|
||||||
|
|
||||||
```sh
|
|
||||||
git clone https://github.com/lovell/sharp.git
|
|
||||||
cd sharp/test/bench
|
|
||||||
./run-with-docker.sh
|
|
||||||
```
|
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 508 B After Width: | Height: | Size: 508 B |
@ -308,3 +308,9 @@ GitHub: https://github.com/sumitd2
|
|||||||
|
|
||||||
Name: Caleb Meredith
|
Name: Caleb Meredith
|
||||||
GitHub: https://github.com/calebmer
|
GitHub: https://github.com/calebmer
|
||||||
|
|
||||||
|
Name: Don Denton
|
||||||
|
GitHub: https://github.com/happycollision
|
||||||
|
|
||||||
|
Name: Florent Zabera
|
||||||
|
GitHub: https://github.com/florentzabera
|
4
docs/public/robots.txt
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
User-agent: *
|
||||||
|
Disallow:
|
||||||
|
|
||||||
|
Sitemap: https://sharp.pixelplumbing.com/sitemap-index.xml
|
Before Width: | Height: | Size: 929 B After Width: | Height: | Size: 929 B |
5
docs/public/sharp-logo.svg
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="86 86 550 550">
|
||||||
|
<!-- Creative Commons CC0 1.0 Universal Public Domain Dedication -->
|
||||||
|
<path fill="none" stroke="#9c0" stroke-width="80" d="M258.411 285.777l200.176-26.8M244.113 466.413L451.44 438.66M451.441 438.66V238.484M451.441 88.363v171.572l178.725-23.917M270.323 255.602V477.22M272.71 634.17V462.591L93.984 486.515"/>
|
||||||
|
<path fill="none" stroke="#090" stroke-width="80" d="M451.441 610.246V438.66l178.725-23.91M269.688 112.59v171.58L90.964 308.093"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 508 B |
@ -1,2 +0,0 @@
|
|||||||
User-agent: *
|
|
||||||
Disallow:
|
|
@ -1,64 +0,0 @@
|
|||||||
// Copyright 2013 Lovell Fuller and others.
|
|
||||||
// SPDX-License-Identifier: Apache-2.0
|
|
||||||
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
const fs = require('fs');
|
|
||||||
const path = require('path');
|
|
||||||
const { extractDescription, extractKeywords, extractParameters } = require('./extract');
|
|
||||||
|
|
||||||
const searchIndex = [];
|
|
||||||
|
|
||||||
// Install
|
|
||||||
const contents = fs.readFileSync(path.join(__dirname, '..', 'install.md'), 'utf8');
|
|
||||||
const matches = contents.matchAll(
|
|
||||||
/## (?<title>[A-Za-z0-9 ]+)\n\n(?<body>[^#]+)/gs
|
|
||||||
);
|
|
||||||
for (const match of matches) {
|
|
||||||
const { title, body } = match.groups;
|
|
||||||
const description = extractDescription(body);
|
|
||||||
|
|
||||||
searchIndex.push({
|
|
||||||
t: title,
|
|
||||||
d: description,
|
|
||||||
k: extractKeywords(`${title} ${description}`),
|
|
||||||
l: `/install#${title.toLowerCase().replace(/ /g, '-')}`
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// API
|
|
||||||
[
|
|
||||||
'constructor',
|
|
||||||
'input',
|
|
||||||
'output',
|
|
||||||
'resize',
|
|
||||||
'composite',
|
|
||||||
'operation',
|
|
||||||
'channel',
|
|
||||||
'colour',
|
|
||||||
'utility'
|
|
||||||
].forEach((section) => {
|
|
||||||
const contents = fs.readFileSync(path.join(__dirname, '..', `api-${section}.md`), 'utf8');
|
|
||||||
const matches = contents.matchAll(
|
|
||||||
/## (?<title>[A-Za-z]+)\n[^\n]+\n(?<firstparagraph>.+?)\n\n.+?(?<parameters>\| Param .+?\n\n)?\*\*Example/gs
|
|
||||||
);
|
|
||||||
for (const match of matches) {
|
|
||||||
const { title, firstparagraph, parameters } = match.groups;
|
|
||||||
const description = firstparagraph.startsWith('###')
|
|
||||||
? 'Constructor'
|
|
||||||
: extractDescription(firstparagraph);
|
|
||||||
const parameterNames = parameters ? extractParameters(parameters) : '';
|
|
||||||
|
|
||||||
searchIndex.push({
|
|
||||||
t: title,
|
|
||||||
d: description,
|
|
||||||
k: extractKeywords(`${title} ${description} ${parameterNames}`),
|
|
||||||
l: `/api-${section}#${title.toLowerCase()}`
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
fs.writeFileSync(
|
|
||||||
path.join(__dirname, '..', 'search-index.json'),
|
|
||||||
JSON.stringify(searchIndex)
|
|
||||||
);
|
|
@ -1,34 +0,0 @@
|
|||||||
// Copyright 2013 Lovell Fuller and others.
|
|
||||||
// SPDX-License-Identifier: Apache-2.0
|
|
||||||
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
const stopWords = require('./stop-words');
|
|
||||||
|
|
||||||
const extractDescription = (str) =>
|
|
||||||
str
|
|
||||||
.replace(/### Examples.*/sg, '')
|
|
||||||
.replace(/\(http[^)]+/g, '')
|
|
||||||
.replace(/\s+/g, ' ')
|
|
||||||
.replace(/[^A-Za-z0-9_/\-,. ]/g, '')
|
|
||||||
.replace(/\s+/g, ' ')
|
|
||||||
.substring(0, 200)
|
|
||||||
.trim();
|
|
||||||
|
|
||||||
const extractParameters = (str) =>
|
|
||||||
[...str.matchAll(/options\.(?<name>[^.`\] ]+)/gs)]
|
|
||||||
.map((match) => match.groups.name)
|
|
||||||
.map((name) => name.replace(/([A-Z])/g, ' $1').toLowerCase())
|
|
||||||
.join(' ');
|
|
||||||
|
|
||||||
const extractKeywords = (str) =>
|
|
||||||
[
|
|
||||||
...new Set(
|
|
||||||
str
|
|
||||||
.split(/[ -/]/)
|
|
||||||
.map((word) => word.toLowerCase().replace(/[^a-z]/g, ''))
|
|
||||||
.filter((word) => word.length > 2 && word.length < 15 && !stopWords.includes(word))
|
|
||||||
)
|
|
||||||
].join(' ');
|
|
||||||
|
|
||||||
module.exports = { extractDescription, extractKeywords, extractParameters };
|
|
@ -1,140 +0,0 @@
|
|||||||
// Copyright 2013 Lovell Fuller and others.
|
|
||||||
// SPDX-License-Identifier: Apache-2.0
|
|
||||||
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
module.exports = [
|
|
||||||
'about',
|
|
||||||
'after',
|
|
||||||
'all',
|
|
||||||
'allows',
|
|
||||||
'already',
|
|
||||||
'also',
|
|
||||||
'alternative',
|
|
||||||
'always',
|
|
||||||
'and',
|
|
||||||
'any',
|
|
||||||
'are',
|
|
||||||
'available',
|
|
||||||
'based',
|
|
||||||
'been',
|
|
||||||
'before',
|
|
||||||
'best',
|
|
||||||
'both',
|
|
||||||
'call',
|
|
||||||
'callback',
|
|
||||||
'can',
|
|
||||||
'containing',
|
|
||||||
'contains',
|
|
||||||
'created',
|
|
||||||
'current',
|
|
||||||
'date',
|
|
||||||
'default',
|
|
||||||
'deprecated',
|
|
||||||
'does',
|
|
||||||
'each',
|
|
||||||
'either',
|
|
||||||
'ensure',
|
|
||||||
'entirely',
|
|
||||||
'etc',
|
|
||||||
'every',
|
|
||||||
'except',
|
|
||||||
'following',
|
|
||||||
'for',
|
|
||||||
'from',
|
|
||||||
'get',
|
|
||||||
'gets',
|
|
||||||
'given',
|
|
||||||
'has',
|
|
||||||
'have',
|
|
||||||
'helps',
|
|
||||||
'how',
|
|
||||||
'image',
|
|
||||||
'implies',
|
|
||||||
'include',
|
|
||||||
'including',
|
|
||||||
'involve',
|
|
||||||
'its',
|
|
||||||
'last',
|
|
||||||
'least',
|
|
||||||
'lots',
|
|
||||||
'make',
|
|
||||||
'may',
|
|
||||||
'meaning',
|
|
||||||
'more',
|
|
||||||
'most',
|
|
||||||
'much',
|
|
||||||
'must',
|
|
||||||
'non',
|
|
||||||
'not',
|
|
||||||
'now',
|
|
||||||
'occur',
|
|
||||||
'occurs',
|
|
||||||
'one',
|
|
||||||
'options',
|
|
||||||
'other',
|
|
||||||
'out',
|
|
||||||
'over',
|
|
||||||
'part',
|
|
||||||
'perform',
|
|
||||||
'performs',
|
|
||||||
'please',
|
|
||||||
'pre',
|
|
||||||
'previously',
|
|
||||||
'produce',
|
|
||||||
'proper',
|
|
||||||
'provide',
|
|
||||||
'provided',
|
|
||||||
'ready',
|
|
||||||
'requires',
|
|
||||||
'requiresharp',
|
|
||||||
'returned',
|
|
||||||
'run',
|
|
||||||
'same',
|
|
||||||
'see',
|
|
||||||
'set',
|
|
||||||
'sets',
|
|
||||||
'sharp',
|
|
||||||
'should',
|
|
||||||
'since',
|
|
||||||
'site',
|
|
||||||
'some',
|
|
||||||
'specified',
|
|
||||||
'spelling',
|
|
||||||
'such',
|
|
||||||
'support',
|
|
||||||
'supported',
|
|
||||||
'sure',
|
|
||||||
'take',
|
|
||||||
'task',
|
|
||||||
'than',
|
|
||||||
'that',
|
|
||||||
'the',
|
|
||||||
'their',
|
|
||||||
'then',
|
|
||||||
'there',
|
|
||||||
'therefore',
|
|
||||||
'these',
|
|
||||||
'this',
|
|
||||||
'under',
|
|
||||||
'unless',
|
|
||||||
'unmaintained',
|
|
||||||
'unsuitable',
|
|
||||||
'unsupported',
|
|
||||||
'until',
|
|
||||||
'use',
|
|
||||||
'used',
|
|
||||||
'using',
|
|
||||||
'value',
|
|
||||||
'values',
|
|
||||||
'via',
|
|
||||||
'were',
|
|
||||||
'when',
|
|
||||||
'which',
|
|
||||||
'while',
|
|
||||||
'will',
|
|
||||||
'with',
|
|
||||||
'without',
|
|
||||||
'you',
|
|
||||||
'your'
|
|
||||||
];
|
|
5
docs/src/assets/sharp-logo.svg
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="86 86 550 550">
|
||||||
|
<!-- Creative Commons CC0 1.0 Universal Public Domain Dedication -->
|
||||||
|
<path fill="none" stroke="#9c0" stroke-width="80" d="M258.411 285.777l200.176-26.8M244.113 466.413L451.44 438.66M451.441 438.66V238.484M451.441 88.363v171.572l178.725-23.917M270.323 255.602V477.22M272.71 634.17V462.591L93.984 486.515"/>
|
||||||
|
<path fill="none" stroke="#090" stroke-width="80" d="M451.441 610.246V438.66l178.725-23.91M269.688 112.59v171.58L90.964 308.093"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 508 B |
7
docs/src/content.config.ts
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import { defineCollection } from 'astro:content';
|
||||||
|
import { docsLoader } from '@astrojs/starlight/loaders';
|
||||||
|
import { docsSchema } from '@astrojs/starlight/schema';
|
||||||
|
|
||||||
|
export const collections = {
|
||||||
|
docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }),
|
||||||
|
};
|
@ -1,7 +1,12 @@
|
|||||||
|
---
|
||||||
|
# This file was auto-generated from JSDoc in lib/channel.js
|
||||||
|
title: Channel manipulation
|
||||||
|
---
|
||||||
|
|
||||||
## removeAlpha
|
## removeAlpha
|
||||||
> removeAlpha() ⇒ <code>Sharp</code>
|
> removeAlpha() ⇒ <code>Sharp</code>
|
||||||
|
|
||||||
Remove alpha channel, if any. This is a no-op if the image does not have an alpha channel.
|
Remove alpha channels, if any. This is a no-op if the image does not have an alpha channel.
|
||||||
|
|
||||||
See also [flatten](/api-operation#flatten).
|
See also [flatten](/api-operation#flatten).
|
||||||
|
|
@ -1,3 +1,8 @@
|
|||||||
|
---
|
||||||
|
# This file was auto-generated from JSDoc in lib/colour.js
|
||||||
|
title: Colour manipulation
|
||||||
|
---
|
||||||
|
|
||||||
## tint
|
## tint
|
||||||
> tint(tint) ⇒ <code>Sharp</code>
|
> tint(tint) ⇒ <code>Sharp</code>
|
||||||
|
|
@ -1,3 +1,8 @@
|
|||||||
|
---
|
||||||
|
# This file was auto-generated from JSDoc in lib/composite.js
|
||||||
|
title: Compositing images
|
||||||
|
---
|
||||||
|
|
||||||
## composite
|
## composite
|
||||||
> composite(images) ⇒ <code>Sharp</code>
|
> composite(images) ⇒ <code>Sharp</code>
|
||||||
|
|
||||||
@ -46,6 +51,7 @@ and https://www.cairographics.org/operators/
|
|||||||
| [images[].input.text.dpi] | <code>number</code> | <code>72</code> | the resolution (size) at which to render the text. Does not take effect if `height` is specified. |
|
| [images[].input.text.dpi] | <code>number</code> | <code>72</code> | the resolution (size) at which to render the text. Does not take effect if `height` is specified. |
|
||||||
| [images[].input.text.rgba] | <code>boolean</code> | <code>false</code> | set this to true to enable RGBA output. This is useful for colour emoji rendering, or support for Pango markup features like `<span foreground="red">Red!</span>`. |
|
| [images[].input.text.rgba] | <code>boolean</code> | <code>false</code> | set this to true to enable RGBA output. This is useful for colour emoji rendering, or support for Pango markup features like `<span foreground="red">Red!</span>`. |
|
||||||
| [images[].input.text.spacing] | <code>number</code> | <code>0</code> | text line height in points. Will use the font line height if none is specified. |
|
| [images[].input.text.spacing] | <code>number</code> | <code>0</code> | text line height in points. Will use the font line height if none is specified. |
|
||||||
|
| [images[].autoOrient] | <code>Boolean</code> | <code>false</code> | set to true to use EXIF orientation data, if present, to orient the image. |
|
||||||
| [images[].blend] | <code>String</code> | <code>'over'</code> | how to blend this image with the image below. |
|
| [images[].blend] | <code>String</code> | <code>'over'</code> | how to blend this image with the image below. |
|
||||||
| [images[].gravity] | <code>String</code> | <code>'centre'</code> | gravity at which to place the overlay. |
|
| [images[].gravity] | <code>String</code> | <code>'centre'</code> | gravity at which to place the overlay. |
|
||||||
| [images[].top] | <code>Number</code> | | the pixel offset from the top edge. |
|
| [images[].top] | <code>Number</code> | | the pixel offset from the top edge. |
|
@ -1,3 +1,8 @@
|
|||||||
|
---
|
||||||
|
# This file was auto-generated from JSDoc in lib/constructor.js
|
||||||
|
title: Constructor
|
||||||
|
---
|
||||||
|
|
||||||
## Sharp
|
## Sharp
|
||||||
> Sharp
|
> Sharp
|
||||||
|
|
||||||
@ -28,11 +33,12 @@ where the overall height is the `pageHeight` multiplied by the number of `pages`
|
|||||||
|
|
||||||
| Param | Type | Default | Description |
|
| Param | Type | Default | Description |
|
||||||
| --- | --- | --- | --- |
|
| --- | --- | --- | --- |
|
||||||
| [input] | <code>Buffer</code> \| <code>ArrayBuffer</code> \| <code>Uint8Array</code> \| <code>Uint8ClampedArray</code> \| <code>Int8Array</code> \| <code>Uint16Array</code> \| <code>Int16Array</code> \| <code>Uint32Array</code> \| <code>Int32Array</code> \| <code>Float32Array</code> \| <code>Float64Array</code> \| <code>string</code> | | if present, can be a Buffer / ArrayBuffer / Uint8Array / Uint8ClampedArray containing JPEG, PNG, WebP, AVIF, GIF, SVG or TIFF image data, or a TypedArray containing raw pixel image data, or a String containing the filesystem path to an JPEG, PNG, WebP, AVIF, GIF, SVG or TIFF image file. JPEG, PNG, WebP, AVIF, GIF, SVG, TIFF or raw pixel image data can be streamed into the object when not present. |
|
| [input] | <code>Buffer</code> \| <code>ArrayBuffer</code> \| <code>Uint8Array</code> \| <code>Uint8ClampedArray</code> \| <code>Int8Array</code> \| <code>Uint16Array</code> \| <code>Int16Array</code> \| <code>Uint32Array</code> \| <code>Int32Array</code> \| <code>Float32Array</code> \| <code>Float64Array</code> \| <code>string</code> \| <code>Array</code> | | if present, can be a Buffer / ArrayBuffer / Uint8Array / Uint8ClampedArray containing JPEG, PNG, WebP, AVIF, GIF, SVG or TIFF image data, or a TypedArray containing raw pixel image data, or a String containing the filesystem path to an JPEG, PNG, WebP, AVIF, GIF, SVG or TIFF image file. An array of inputs can be provided, and these will be joined together. JPEG, PNG, WebP, AVIF, GIF, SVG, TIFF or raw pixel image data can be streamed into the object when not present. |
|
||||||
| [options] | <code>Object</code> | | if present, is an Object with optional attributes. |
|
| [options] | <code>Object</code> | | if present, is an Object with optional attributes. |
|
||||||
| [options.failOn] | <code>string</code> | <code>"'warning'"</code> | When to abort processing of invalid pixel data, one of (in order of sensitivity, least to most): 'none', 'truncated', 'error', 'warning'. Higher levels imply lower levels. Invalid metadata will always abort. |
|
| [options.failOn] | <code>string</code> | <code>"'warning'"</code> | When to abort processing of invalid pixel data, one of (in order of sensitivity, least to most): 'none', 'truncated', 'error', 'warning'. Higher levels imply lower levels. Invalid metadata will always abort. |
|
||||||
| [options.limitInputPixels] | <code>number</code> \| <code>boolean</code> | <code>268402689</code> | Do not process input images where the number of pixels (width x height) exceeds this limit. Assumes image dimensions contained in the input metadata can be trusted. An integral Number of pixels, zero or false to remove limit, true to use default limit of 268402689 (0x3FFF x 0x3FFF). |
|
| [options.limitInputPixels] | <code>number</code> \| <code>boolean</code> | <code>268402689</code> | Do not process input images where the number of pixels (width x height) exceeds this limit. Assumes image dimensions contained in the input metadata can be trusted. An integral Number of pixels, zero or false to remove limit, true to use default limit of 268402689 (0x3FFF x 0x3FFF). |
|
||||||
| [options.unlimited] | <code>boolean</code> | <code>false</code> | Set this to `true` to remove safety features that help prevent memory exhaustion (JPEG, PNG, SVG, HEIF). |
|
| [options.unlimited] | <code>boolean</code> | <code>false</code> | Set this to `true` to remove safety features that help prevent memory exhaustion (JPEG, PNG, SVG, HEIF). |
|
||||||
|
| [options.autoOrient] | <code>boolean</code> | <code>false</code> | Set this to `true` to rotate/flip the image to match EXIF `Orientation`, if any. |
|
||||||
| [options.sequentialRead] | <code>boolean</code> | <code>true</code> | Set this to `false` to use random access rather than sequential read. Some operations will do this automatically. |
|
| [options.sequentialRead] | <code>boolean</code> | <code>true</code> | Set this to `false` to use random access rather than sequential read. Some operations will do this automatically. |
|
||||||
| [options.density] | <code>number</code> | <code>72</code> | number representing the DPI for vector images in the range 1 to 100000. |
|
| [options.density] | <code>number</code> | <code>72</code> | number representing the DPI for vector images in the range 1 to 100000. |
|
||||||
| [options.ignoreIcc] | <code>number</code> | <code>false</code> | should the embedded ICC profile, if any, be ignored. |
|
| [options.ignoreIcc] | <code>number</code> | <code>false</code> | should the embedded ICC profile, if any, be ignored. |
|
||||||
@ -68,6 +74,13 @@ where the overall height is the `pageHeight` multiplied by the number of `pages`
|
|||||||
| [options.text.rgba] | <code>boolean</code> | <code>false</code> | set this to true to enable RGBA output. This is useful for colour emoji rendering, or support for pango markup features like `<span foreground="red">Red!</span>`. |
|
| [options.text.rgba] | <code>boolean</code> | <code>false</code> | set this to true to enable RGBA output. This is useful for colour emoji rendering, or support for pango markup features like `<span foreground="red">Red!</span>`. |
|
||||||
| [options.text.spacing] | <code>number</code> | <code>0</code> | text line height in points. Will use the font line height if none is specified. |
|
| [options.text.spacing] | <code>number</code> | <code>0</code> | text line height in points. Will use the font line height if none is specified. |
|
||||||
| [options.text.wrap] | <code>string</code> | <code>"'word'"</code> | word wrapping style when width is provided, one of: 'word', 'char', 'word-char' (prefer word, fallback to char) or 'none'. |
|
| [options.text.wrap] | <code>string</code> | <code>"'word'"</code> | word wrapping style when width is provided, one of: 'word', 'char', 'word-char' (prefer word, fallback to char) or 'none'. |
|
||||||
|
| [options.join] | <code>Object</code> | | describes how an array of input images should be joined. |
|
||||||
|
| [options.join.across] | <code>number</code> | <code>1</code> | number of images to join horizontally. |
|
||||||
|
| [options.join.animated] | <code>boolean</code> | <code>false</code> | set this to `true` to join the images as an animated image. |
|
||||||
|
| [options.join.shim] | <code>number</code> | <code>0</code> | number of pixels to insert between joined images. |
|
||||||
|
| [options.join.background] | <code>string</code> \| <code>Object</code> | | parsed by the [color](https://www.npmjs.org/package/color) module to extract values for red, green, blue and alpha. |
|
||||||
|
| [options.join.halign] | <code>string</code> | <code>"'left'"</code> | horizontal alignment style for images joined horizontally (`'left'`, `'centre'`, `'center'`, `'right'`). |
|
||||||
|
| [options.join.valign] | <code>string</code> | <code>"'top'"</code> | vertical alignment style for images joined vertically (`'top'`, `'centre'`, `'center'`, `'bottom'`). |
|
||||||
|
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
@ -167,6 +180,22 @@ await sharp({
|
|||||||
}
|
}
|
||||||
}).toFile('text_rgba.png');
|
}).toFile('text_rgba.png');
|
||||||
```
|
```
|
||||||
|
**Example**
|
||||||
|
```js
|
||||||
|
// Join four input images as a 2x2 grid with a 4 pixel gutter
|
||||||
|
const data = await sharp(
|
||||||
|
[image1, image2, image3, image4],
|
||||||
|
{ join: { across: 2, shim: 4 } }
|
||||||
|
).toBuffer();
|
||||||
|
```
|
||||||
|
**Example**
|
||||||
|
```js
|
||||||
|
// Generate a two-frame animated image from emoji
|
||||||
|
const images = ['😀', '😛'].map(text => ({
|
||||||
|
text: { text, width: 64, height: 64, channels: 4, rgba: true }
|
||||||
|
}));
|
||||||
|
await sharp(images, { join: { animated: true } }).toFile('out.gif');
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## clone
|
## clone
|
@ -1,3 +1,8 @@
|
|||||||
|
---
|
||||||
|
# This file was auto-generated from JSDoc in lib/input.js
|
||||||
|
title: Input metadata
|
||||||
|
---
|
||||||
|
|
||||||
## metadata
|
## metadata
|
||||||
> metadata([callback]) ⇒ <code>Promise.<Object></code> \| <code>Sharp</code>
|
> metadata([callback]) ⇒ <code>Promise.<Object></code> \| <code>Sharp</code>
|
||||||
|
|
||||||
@ -72,15 +77,9 @@ image
|
|||||||
```
|
```
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
// Based on EXIF rotation metadata, get the right-side-up width and height:
|
// Get dimensions taking EXIF Orientation into account.
|
||||||
|
const { autoOrient } = await sharp(input).metadata();
|
||||||
const size = getNormalSize(await sharp(input).metadata());
|
const { width, height } = autoOrient;
|
||||||
|
|
||||||
function getNormalSize({ width, height, orientation }) {
|
|
||||||
return (orientation || 0) >= 5
|
|
||||||
? { width: height, height: width }
|
|
||||||
: { width, height };
|
|
||||||
}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -1,22 +1,24 @@
|
|||||||
|
---
|
||||||
|
# This file was auto-generated from JSDoc in lib/operation.js
|
||||||
|
title: Image operations
|
||||||
|
---
|
||||||
|
|
||||||
## rotate
|
## rotate
|
||||||
> rotate([angle], [options]) ⇒ <code>Sharp</code>
|
> rotate([angle], [options]) ⇒ <code>Sharp</code>
|
||||||
|
|
||||||
Rotate the output image by either an explicit angle
|
Rotate the output image.
|
||||||
or auto-orient based on the EXIF `Orientation` tag.
|
|
||||||
|
|
||||||
If an angle is provided, it is converted to a valid positive degree rotation.
|
The provided angle is converted to a valid positive degree rotation.
|
||||||
For example, `-450` will produce a 270 degree rotation.
|
For example, `-450` will produce a 270 degree rotation.
|
||||||
|
|
||||||
When rotating by an angle other than a multiple of 90,
|
When rotating by an angle other than a multiple of 90,
|
||||||
the background colour can be provided with the `background` option.
|
the background colour can be provided with the `background` option.
|
||||||
|
|
||||||
If no angle is provided, it is determined from the EXIF data.
|
For backwards compatibility, if no angle is provided, `.autoOrient()` will be called.
|
||||||
Mirroring is supported and may infer the use of a flip operation.
|
|
||||||
|
|
||||||
The use of `rotate` without an angle will remove the EXIF `Orientation` tag, if any.
|
Only one rotation can occur per pipeline (aside from an initial call without
|
||||||
|
arguments to orient via EXIF data). Previous calls to `rotate` in the same
|
||||||
Only one rotation can occur per pipeline.
|
pipeline will be ignored.
|
||||||
Previous calls to `rotate` in the same pipeline will be ignored.
|
|
||||||
|
|
||||||
Multi-page images can only be rotated by 180 degrees.
|
Multi-page images can only be rotated by 180 degrees.
|
||||||
|
|
||||||
@ -35,18 +37,6 @@ for example `.rotate(x).extract(y)` will produce a different result to `.extract
|
|||||||
| [options] | <code>Object</code> | | if present, is an Object with optional attributes. |
|
| [options] | <code>Object</code> | | if present, is an Object with optional attributes. |
|
||||||
| [options.background] | <code>string</code> \| <code>Object</code> | <code>"\"#000000\""</code> | parsed by the [color](https://www.npmjs.org/package/color) module to extract values for red, green, blue and alpha. |
|
| [options.background] | <code>string</code> \| <code>Object</code> | <code>"\"#000000\""</code> | parsed by the [color](https://www.npmjs.org/package/color) module to extract values for red, green, blue and alpha. |
|
||||||
|
|
||||||
**Example**
|
|
||||||
```js
|
|
||||||
const pipeline = sharp()
|
|
||||||
.rotate()
|
|
||||||
.resize(null, 200)
|
|
||||||
.toBuffer(function (err, outputBuffer, info) {
|
|
||||||
// outputBuffer contains 200px high JPEG image data,
|
|
||||||
// auto-rotated using EXIF Orientation tag
|
|
||||||
// info.width and info.height contain the dimensions of the resized image
|
|
||||||
});
|
|
||||||
readableStream.pipe(pipeline);
|
|
||||||
```
|
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
const rotateThenResize = await sharp(input)
|
const rotateThenResize = await sharp(input)
|
||||||
@ -60,6 +50,34 @@ const resizeThenRotate = await sharp(input)
|
|||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## autoOrient
|
||||||
|
> autoOrient() ⇒ <code>Sharp</code>
|
||||||
|
|
||||||
|
Auto-orient based on the EXIF `Orientation` tag, then remove the tag.
|
||||||
|
Mirroring is supported and may infer the use of a flip operation.
|
||||||
|
|
||||||
|
Previous or subsequent use of `rotate(angle)` and either `flip()` or `flop()`
|
||||||
|
will logically occur after auto-orientation, regardless of call order.
|
||||||
|
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
```js
|
||||||
|
const output = await sharp(input).autoOrient().toBuffer();
|
||||||
|
```
|
||||||
|
**Example**
|
||||||
|
```js
|
||||||
|
const pipeline = sharp()
|
||||||
|
.autoOrient()
|
||||||
|
.resize(null, 200)
|
||||||
|
.toBuffer(function (err, outputBuffer, info) {
|
||||||
|
// outputBuffer contains 200px high JPEG image data,
|
||||||
|
// auto-oriented using EXIF Orientation tag
|
||||||
|
// info.width and info.height contain the dimensions of the resized image
|
||||||
|
});
|
||||||
|
readableStream.pipe(pipeline);
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## flip
|
## flip
|
||||||
> flip([flip]) ⇒ <code>Sharp</code>
|
> flip([flip]) ⇒ <code>Sharp</code>
|
||||||
|
|
@ -1,3 +1,8 @@
|
|||||||
|
---
|
||||||
|
# This file was auto-generated from JSDoc in lib/output.js
|
||||||
|
title: Output options
|
||||||
|
---
|
||||||
|
|
||||||
## toFile
|
## toFile
|
||||||
> toFile(fileOut, [callback]) ⇒ <code>Promise.<Object></code>
|
> toFile(fileOut, [callback]) ⇒ <code>Promise.<Object></code>
|
||||||
|
|
@ -1,3 +1,8 @@
|
|||||||
|
---
|
||||||
|
# This file was auto-generated from JSDoc in lib/resize.js
|
||||||
|
title: Resizing images
|
||||||
|
---
|
||||||
|
|
||||||
## resize
|
## resize
|
||||||
> resize([width], [height], [options]) ⇒ <code>Sharp</code>
|
> resize([width], [height], [options]) ⇒ <code>Sharp</code>
|
||||||
|
|
@ -1,3 +1,8 @@
|
|||||||
|
---
|
||||||
|
# This file was auto-generated from JSDoc in lib/utility.js
|
||||||
|
title: Global properties
|
||||||
|
---
|
||||||
|
|
||||||
## versions
|
## versions
|
||||||
> versions
|
> versions
|
||||||
|
|
@ -1,11 +1,19 @@
|
|||||||
# Changelog
|
---
|
||||||
|
title: Changelog
|
||||||
|
---
|
||||||
|
|
||||||
## v0.34 - *hat*
|
## v0.34 - *hat*
|
||||||
|
|
||||||
Requires libvips v8.16.0
|
Requires libvips v8.16.1
|
||||||
|
|
||||||
### v0.34.0 - TBD
|
### v0.34.0 - TBD
|
||||||
|
|
||||||
|
* Breaking: Support array of input images to be joined or animated.
|
||||||
|
[#1580](https://github.com/lovell/sharp/issues/1580)
|
||||||
|
|
||||||
|
* Breaking: Ensure `removeAlpha` removes all alpha channels.
|
||||||
|
[#2266](https://github.com/lovell/sharp/issues/2266)
|
||||||
|
|
||||||
* Breaking: Support `info.size` on wide-character systems via upgrade to C++17.
|
* Breaking: Support `info.size` on wide-character systems via upgrade to C++17.
|
||||||
[#3943](https://github.com/lovell/sharp/issues/3943)
|
[#3943](https://github.com/lovell/sharp/issues/3943)
|
||||||
|
|
||||||
@ -16,6 +24,10 @@ Requires libvips v8.16.0
|
|||||||
|
|
||||||
* Expose WebP `smartDeblock` output option.
|
* Expose WebP `smartDeblock` output option.
|
||||||
|
|
||||||
|
* Add `autoOrient` operation and constructor option.
|
||||||
|
[#4151](https://github.com/lovell/sharp/pull/4151)
|
||||||
|
[@happycollision](https://github.com/happycollision)
|
||||||
|
|
||||||
* TypeScript: Ensure channel counts use the correct range.
|
* TypeScript: Ensure channel counts use the correct range.
|
||||||
[#4197](https://github.com/lovell/sharp/pull/4197)
|
[#4197](https://github.com/lovell/sharp/pull/4197)
|
||||||
[@DavidVaness](https://github.com/DavidVaness)
|
[@DavidVaness](https://github.com/DavidVaness)
|
||||||
@ -28,6 +40,10 @@ Requires libvips v8.16.0
|
|||||||
[#4207](https://github.com/lovell/sharp/pull/4207)
|
[#4207](https://github.com/lovell/sharp/pull/4207)
|
||||||
[@calebmer](https://github.com/calebmer)
|
[@calebmer](https://github.com/calebmer)
|
||||||
|
|
||||||
|
* Add support for RGBE images. Requires libvips compiled with radiance support.
|
||||||
|
[#4316](https://github.com/lovell/sharp/pull/4316)
|
||||||
|
[@florentzabera](https://github.com/florentzabera)
|
||||||
|
|
||||||
## v0.33 - *gauge*
|
## v0.33 - *gauge*
|
||||||
|
|
||||||
Requires libvips v8.15.3
|
Requires libvips v8.15.3
|
@ -1,4 +1,6 @@
|
|||||||
# sharp
|
---
|
||||||
|
title: "High performance Node.js image processing"
|
||||||
|
---
|
||||||
|
|
||||||
<img src="https://cdn.jsdelivr.net/gh/lovell/sharp@main/docs/image/sharp-logo.svg" width="160" height="160" alt="sharp logo" align="right">
|
<img src="https://cdn.jsdelivr.net/gh/lovell/sharp@main/docs/image/sharp-logo.svg" width="160" height="160" alt="sharp logo" align="right">
|
||||||
|
|
||||||
@ -23,7 +25,11 @@ rotation, extraction, compositing and gamma correction are available.
|
|||||||
Most modern macOS, Windows and Linux systems
|
Most modern macOS, Windows and Linux systems
|
||||||
do not require any additional install or runtime dependencies.
|
do not require any additional install or runtime dependencies.
|
||||||
|
|
||||||
### Formats
|
```sh
|
||||||
|
npm install sharp
|
||||||
|
```
|
||||||
|
|
||||||
|
## Formats
|
||||||
|
|
||||||
This module supports reading JPEG, PNG, WebP, GIF, AVIF, TIFF and SVG images.
|
This module supports reading JPEG, PNG, WebP, GIF, AVIF, TIFF and SVG images.
|
||||||
|
|
||||||
@ -37,7 +43,7 @@ Deep Zoom image pyramids can be generated,
|
|||||||
suitable for use with "slippy map" tile viewers like
|
suitable for use with "slippy map" tile viewers like
|
||||||
[OpenSeadragon](https://github.com/openseadragon/openseadragon).
|
[OpenSeadragon](https://github.com/openseadragon/openseadragon).
|
||||||
|
|
||||||
### Fast
|
## Fast
|
||||||
|
|
||||||
This module is powered by the blazingly fast
|
This module is powered by the blazingly fast
|
||||||
[libvips](https://github.com/libvips/libvips) image processing library,
|
[libvips](https://github.com/libvips/libvips) image processing library,
|
||||||
@ -52,7 +58,7 @@ taking full advantage of multiple CPU cores and L1/L2/L3 cache.
|
|||||||
Everything remains non-blocking thanks to _libuv_,
|
Everything remains non-blocking thanks to _libuv_,
|
||||||
no child processes are spawned and Promises/async/await are supported.
|
no child processes are spawned and Promises/async/await are supported.
|
||||||
|
|
||||||
### Optimal
|
## Optimal
|
||||||
|
|
||||||
The features of `mozjpeg` and `pngquant` can be used
|
The features of `mozjpeg` and `pngquant` can be used
|
||||||
to optimise the file size of JPEG and PNG images respectively,
|
to optimise the file size of JPEG and PNG images respectively,
|
||||||
@ -71,12 +77,12 @@ The file size of animated GIF output is optimised
|
|||||||
without having to use separate command line tools such as
|
without having to use separate command line tools such as
|
||||||
[gifsicle](https://www.lcdf.org/gifsicle/).
|
[gifsicle](https://www.lcdf.org/gifsicle/).
|
||||||
|
|
||||||
### Contributing
|
## Contributing
|
||||||
|
|
||||||
A [guide for contributors](https://github.com/lovell/sharp/blob/main/.github/CONTRIBUTING.md)
|
A [guide for contributors](https://github.com/lovell/sharp/blob/main/.github/CONTRIBUTING.md)
|
||||||
covers reporting bugs, requesting features and submitting code changes.
|
covers reporting bugs, requesting features and submitting code changes.
|
||||||
|
|
||||||
### Licensing
|
## Licensing
|
||||||
|
|
||||||
Copyright 2013 Lovell Fuller and others.
|
Copyright 2013 Lovell Fuller and others.
|
||||||
|
|
@ -1,8 +1,12 @@
|
|||||||
# Installation
|
---
|
||||||
|
title: Installation
|
||||||
|
---
|
||||||
|
|
||||||
Works with your choice of JavaScript package manager.
|
Works with your choice of JavaScript package manager.
|
||||||
|
|
||||||
> ⚠️ **Please ensure your package manager is configured to install optional dependencies**
|
:::caution
|
||||||
|
Please ensure your package manager is configured to install optional dependencies
|
||||||
|
:::
|
||||||
|
|
||||||
If a package manager lockfile must support multiple platforms,
|
If a package manager lockfile must support multiple platforms,
|
||||||
please see the [cross-platform](#cross-platform) section
|
please see the [cross-platform](#cross-platform) section
|
||||||
@ -16,6 +20,10 @@ npm install sharp
|
|||||||
pnpm add sharp
|
pnpm add sharp
|
||||||
```
|
```
|
||||||
|
|
||||||
|
When using `pnpm`, you may need to add `sharp` to
|
||||||
|
[ignoredBuiltDependencies](https://pnpm.io/package_json#pnpmignoredbuiltdependencies)
|
||||||
|
to silence warnings.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
yarn add sharp
|
yarn add sharp
|
||||||
```
|
```
|
||||||
@ -59,7 +67,9 @@ within the same installation tree and/or using the same lockfile.
|
|||||||
|
|
||||||
### npm v10+
|
### npm v10+
|
||||||
|
|
||||||
> ⚠️ **npm `package-lock.json` files can cause installation problems due to [npm bug #4828](https://github.com/npm/cli/issues/4828)**
|
:::caution
|
||||||
|
npm `package-lock.json` files shared by multiple platforms can cause installation problems due to [npm bug #4828](https://github.com/npm/cli/issues/4828)
|
||||||
|
:::
|
||||||
|
|
||||||
Provides limited support via `--os`, `--cpu` and `--libc` flags.
|
Provides limited support via `--os`, `--cpu` and `--libc` flags.
|
||||||
|
|
||||||
@ -122,6 +132,10 @@ If `node-addon-api` or `node-gyp` cannot be found, try adding them via:
|
|||||||
npm install --save node-addon-api node-gyp
|
npm install --save node-addon-api node-gyp
|
||||||
```
|
```
|
||||||
|
|
||||||
|
When using `pnpm`, you may need to add `sharp` to
|
||||||
|
[onlyBuiltDependencies](https://pnpm.io/package_json#pnpmonlybuiltdependencies)
|
||||||
|
to ensure the installation script can be run.
|
||||||
|
|
||||||
For cross-compiling, the `--platform`, `--arch` and `--libc` npm flags
|
For cross-compiling, the `--platform`, `--arch` and `--libc` npm flags
|
||||||
(or the `npm_config_platform`, `npm_config_arch` and `npm_config_libc` environment variables)
|
(or the `npm_config_platform`, `npm_config_arch` and `npm_config_libc` environment variables)
|
||||||
can be used to configure the target environment.
|
can be used to configure the target environment.
|
103
docs/src/content/docs/performance.md
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
---
|
||||||
|
title: Performance
|
||||||
|
---
|
||||||
|
|
||||||
|
A test to benchmark the performance of this module relative to alternatives.
|
||||||
|
|
||||||
|
Greater libvips performance can be expected with caching enabled (default)
|
||||||
|
and using 8+ core machines, especially those with larger L1/L2 CPU caches.
|
||||||
|
|
||||||
|
The I/O limits of the relevant (de)compression library will generally determine maximum throughput.
|
||||||
|
|
||||||
|
## Contenders
|
||||||
|
|
||||||
|
* [jimp](https://www.npmjs.com/package/jimp) v1.6.0 - Image processing in pure JavaScript.
|
||||||
|
* [imagemagick](https://www.npmjs.com/package/imagemagick) v0.1.3 - Supports filesystem only and "*has been unmaintained for a long time*".
|
||||||
|
* [gm](https://www.npmjs.com/package/gm) v1.25.1 - Fully featured wrapper around GraphicsMagick's `gm` command line utility, but "*has been sunset*".
|
||||||
|
* sharp v0.34.0 / libvips v8.16.1 - Caching within libvips disabled to ensure a fair comparison.
|
||||||
|
|
||||||
|
## Environment
|
||||||
|
|
||||||
|
### AMD64
|
||||||
|
|
||||||
|
* AWS EC2 us-west-2 [c7a.xlarge](https://aws.amazon.com/ec2/instance-types/c7a/) (4x AMD EPYC 9R14)
|
||||||
|
* Ubuntu 24.10 [fad5ba7223f8](https://hub.docker.com/layers/library/ubuntu/24.10/images/sha256-fad5ba7223f8d87179dfa23211d31845d47e07a474ac31ad5258afb606523c0d)
|
||||||
|
* Node.js 22.14.0
|
||||||
|
|
||||||
|
### ARM64
|
||||||
|
|
||||||
|
* AWS EC2 us-west-2 [c8g.xlarge](https://aws.amazon.com/ec2/instance-types/c8g/) (4x ARM Graviton4)
|
||||||
|
* Ubuntu 24.10 [133f2e05cb69](https://hub.docker.com/layers/library/ubuntu/24.10/images/sha256-133f2e05cb6958c3ce7ec870fd5a864558ba780fb7062315b51a23670bff7e76)
|
||||||
|
* Node.js 22.14.0
|
||||||
|
|
||||||
|
## Task: JPEG
|
||||||
|
|
||||||
|
Decompress a 2725x2225 JPEG image,
|
||||||
|
resize to 720x588 using Lanczos 3 resampling (where available),
|
||||||
|
then compress to JPEG at a "quality" setting of 80.
|
||||||
|
|
||||||
|
Note: jimp does not support Lanczos 3, bicubic resampling used instead.
|
||||||
|
|
||||||
|
#### Results: JPEG (AMD64)
|
||||||
|
|
||||||
|
| Module | Input | Output | Ops/sec | Speed-up |
|
||||||
|
| :----------------- | :----- | :----- | ------: | -------: |
|
||||||
|
| jimp | buffer | buffer | 2.35 | 1.0 |
|
||||||
|
| imagemagick | file | file | 10.51 | 4.5 |
|
||||||
|
| gm | buffer | buffer | 11.67 | 5.0 |
|
||||||
|
| gm | file | file | 11.75 | 5.1 |
|
||||||
|
| sharp | stream | stream | 60.72 | 25.8 |
|
||||||
|
| sharp | file | file | 62.37 | 26.5 |
|
||||||
|
| sharp | buffer | buffer | 65.15 | 27.7 |
|
||||||
|
|
||||||
|
#### Results: JPEG (ARM64)
|
||||||
|
|
||||||
|
| Module | Input | Output | Ops/sec | Speed-up |
|
||||||
|
| :----------------- | :----- | :----- | ------: | -------: |
|
||||||
|
| jimp | buffer | buffer | 2.13 | 1.0 |
|
||||||
|
| imagemagick | file | file | 12.95 | 6.1 |
|
||||||
|
| gm | buffer | buffer | 13.53 | 6.4 |
|
||||||
|
| gm | file | file | 13.52 | 6.4 |
|
||||||
|
| sharp | stream | stream | 46.58 | 21.9 |
|
||||||
|
| sharp | file | file | 48.42 | 22.7 |
|
||||||
|
| sharp | buffer | buffer | 50.16 | 23.6 |
|
||||||
|
|
||||||
|
## Task: PNG
|
||||||
|
|
||||||
|
Decompress a 2048x1536 RGBA PNG image,
|
||||||
|
premultiply the alpha channel,
|
||||||
|
resize to 720x540 using Lanczos 3 resampling (where available),
|
||||||
|
unpremultiply then compress as PNG with a "default" zlib compression level of 6
|
||||||
|
and without adaptive filtering.
|
||||||
|
|
||||||
|
Note: jimp does not support premultiply/unpremultiply.
|
||||||
|
|
||||||
|
### Results: PNG (AMD64)
|
||||||
|
|
||||||
|
| Module | Input | Output | Ops/sec | Speed-up |
|
||||||
|
| :----------------- | :----- | :----- | ------: | -------: |
|
||||||
|
| gm | file | file | 8.66 | 1.0 |
|
||||||
|
| imagemagick | file | file | 8.79 | 1.0 |
|
||||||
|
| jimp | buffer | buffer | 11.26 | 1.3 |
|
||||||
|
| sharp | file | file | 27.93 | 3.2 |
|
||||||
|
| sharp | buffer | buffer | 28.69 | 3.3 |
|
||||||
|
|
||||||
|
### Results: PNG (ARM64)
|
||||||
|
|
||||||
|
| Module | Input | Output | Ops/sec | Speed-up |
|
||||||
|
| :----------------- | :----- | :----- | ------: | -------: |
|
||||||
|
| gm | file | file | 9.65 | 1.0 |
|
||||||
|
| imagemagick | file | file | 9.72 | 1.0 |
|
||||||
|
| jimp | buffer | buffer | 10.68 | 1.1 |
|
||||||
|
| sharp | file | file | 23.90 | 2.5 |
|
||||||
|
| sharp | buffer | buffer | 24.48 | 2.5 |
|
||||||
|
|
||||||
|
## Running the benchmark test
|
||||||
|
|
||||||
|
Requires Docker.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
git clone https://github.com/lovell/sharp.git
|
||||||
|
cd sharp/test/bench
|
||||||
|
./run-with-docker.sh
|
||||||
|
```
|
45
docs/src/styles/custom.css
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
@view-transition {
|
||||||
|
navigation: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--sl-content-width: 60rem;
|
||||||
|
--sl-color-accent-low: #072d00;
|
||||||
|
--sl-color-accent: #247f00;
|
||||||
|
--sl-color-accent-high: #aad7a0;
|
||||||
|
--sl-color-white: #ffffff;
|
||||||
|
--sl-color-gray-1: #eaf0e8;
|
||||||
|
--sl-color-gray-2: #c5cdc3;
|
||||||
|
--sl-color-gray-3: #99a796;
|
||||||
|
--sl-color-gray-4: #4f5c4d;
|
||||||
|
--sl-color-gray-5: #303c2d;
|
||||||
|
--sl-color-gray-6: #1f2a1c;
|
||||||
|
--sl-color-black: #151a13;
|
||||||
|
}
|
||||||
|
|
||||||
|
:root[data-theme="light"] {
|
||||||
|
--sl-color-accent-low: #c0e2b8;
|
||||||
|
--sl-color-accent: #165800;
|
||||||
|
--sl-color-accent-high: #0d3e00;
|
||||||
|
--sl-color-white: #151a13;
|
||||||
|
--sl-color-gray-1: #1f2a1c;
|
||||||
|
--sl-color-gray-2: #303c2d;
|
||||||
|
--sl-color-gray-3: #4f5c4d;
|
||||||
|
--sl-color-gray-4: #82907f;
|
||||||
|
--sl-color-gray-5: #bdc4bb;
|
||||||
|
--sl-color-gray-6: #eaf0e8;
|
||||||
|
--sl-color-gray-7: #f4f7f3;
|
||||||
|
--sl-color-black: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
background-color: var(--sl-color-gray-6);
|
||||||
|
padding: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.site-title::after {
|
||||||
|
content: "High performance Node.js image processing";
|
||||||
|
color: var(--sl-color-text);
|
||||||
|
font-size: var(--sl-text-sm);
|
||||||
|
padding-top: 0.3rem;
|
||||||
|
}
|
5
docs/tsconfig.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"extends": "astro/tsconfigs/strict",
|
||||||
|
"include": [".astro/types.d.ts", "**/*"],
|
||||||
|
"exclude": ["dist"]
|
||||||
|
}
|
@ -16,7 +16,7 @@ const bool = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Remove alpha channel, if any. This is a no-op if the image does not have an alpha channel.
|
* Remove alpha channels, if any. This is a no-op if the image does not have an alpha channel.
|
||||||
*
|
*
|
||||||
* See also {@link /api-operation#flatten|flatten}.
|
* See also {@link /api-operation#flatten|flatten}.
|
||||||
*
|
*
|
||||||
|
@ -110,6 +110,7 @@ const blend = {
|
|||||||
* @param {number} [images[].input.text.dpi=72] - the resolution (size) at which to render the text. Does not take effect if `height` is specified.
|
* @param {number} [images[].input.text.dpi=72] - the resolution (size) at which to render the text. Does not take effect if `height` is specified.
|
||||||
* @param {boolean} [images[].input.text.rgba=false] - set this to true to enable RGBA output. This is useful for colour emoji rendering, or support for Pango markup features like `<span foreground="red">Red!</span>`.
|
* @param {boolean} [images[].input.text.rgba=false] - set this to true to enable RGBA output. This is useful for colour emoji rendering, or support for Pango markup features like `<span foreground="red">Red!</span>`.
|
||||||
* @param {number} [images[].input.text.spacing=0] - text line height in points. Will use the font line height if none is specified.
|
* @param {number} [images[].input.text.spacing=0] - text line height in points. Will use the font line height if none is specified.
|
||||||
|
* @param {Boolean} [images[].autoOrient=false] - set to true to use EXIF orientation data, if present, to orient the image.
|
||||||
* @param {String} [images[].blend='over'] - how to blend this image with the image below.
|
* @param {String} [images[].blend='over'] - how to blend this image with the image below.
|
||||||
* @param {String} [images[].gravity='centre'] - gravity at which to place the overlay.
|
* @param {String} [images[].gravity='centre'] - gravity at which to place the overlay.
|
||||||
* @param {Number} [images[].top] - the pixel offset from the top edge.
|
* @param {Number} [images[].top] - the pixel offset from the top edge.
|
||||||
|
@ -121,10 +121,25 @@ const debuglog = util.debuglog('sharp');
|
|||||||
* }
|
* }
|
||||||
* }).toFile('text_rgba.png');
|
* }).toFile('text_rgba.png');
|
||||||
*
|
*
|
||||||
* @param {(Buffer|ArrayBuffer|Uint8Array|Uint8ClampedArray|Int8Array|Uint16Array|Int16Array|Uint32Array|Int32Array|Float32Array|Float64Array|string)} [input] - if present, can be
|
* @example
|
||||||
|
* // Join four input images as a 2x2 grid with a 4 pixel gutter
|
||||||
|
* const data = await sharp(
|
||||||
|
* [image1, image2, image3, image4],
|
||||||
|
* { join: { across: 2, shim: 4 } }
|
||||||
|
* ).toBuffer();
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* // Generate a two-frame animated image from emoji
|
||||||
|
* const images = ['😀', '😛'].map(text => ({
|
||||||
|
* text: { text, width: 64, height: 64, channels: 4, rgba: true }
|
||||||
|
* }));
|
||||||
|
* await sharp(images, { join: { animated: true } }).toFile('out.gif');
|
||||||
|
*
|
||||||
|
* @param {(Buffer|ArrayBuffer|Uint8Array|Uint8ClampedArray|Int8Array|Uint16Array|Int16Array|Uint32Array|Int32Array|Float32Array|Float64Array|string|Array)} [input] - if present, can be
|
||||||
* a Buffer / ArrayBuffer / Uint8Array / Uint8ClampedArray containing JPEG, PNG, WebP, AVIF, GIF, SVG or TIFF image data, or
|
* a Buffer / ArrayBuffer / Uint8Array / Uint8ClampedArray containing JPEG, PNG, WebP, AVIF, GIF, SVG or TIFF image data, or
|
||||||
* a TypedArray containing raw pixel image data, or
|
* a TypedArray containing raw pixel image data, or
|
||||||
* a String containing the filesystem path to an JPEG, PNG, WebP, AVIF, GIF, SVG or TIFF image file.
|
* a String containing the filesystem path to an JPEG, PNG, WebP, AVIF, GIF, SVG or TIFF image file.
|
||||||
|
* An array of inputs can be provided, and these will be joined together.
|
||||||
* JPEG, PNG, WebP, AVIF, GIF, SVG, TIFF or raw pixel image data can be streamed into the object when not present.
|
* JPEG, PNG, WebP, AVIF, GIF, SVG, TIFF or raw pixel image data can be streamed into the object when not present.
|
||||||
* @param {Object} [options] - if present, is an Object with optional attributes.
|
* @param {Object} [options] - if present, is an Object with optional attributes.
|
||||||
* @param {string} [options.failOn='warning'] - When to abort processing of invalid pixel data, one of (in order of sensitivity, least to most): 'none', 'truncated', 'error', 'warning'. Higher levels imply lower levels. Invalid metadata will always abort.
|
* @param {string} [options.failOn='warning'] - When to abort processing of invalid pixel data, one of (in order of sensitivity, least to most): 'none', 'truncated', 'error', 'warning'. Higher levels imply lower levels. Invalid metadata will always abort.
|
||||||
@ -132,6 +147,7 @@ const debuglog = util.debuglog('sharp');
|
|||||||
* (width x height) exceeds this limit. Assumes image dimensions contained in the input metadata can be trusted.
|
* (width x height) exceeds this limit. Assumes image dimensions contained in the input metadata can be trusted.
|
||||||
* An integral Number of pixels, zero or false to remove limit, true to use default limit of 268402689 (0x3FFF x 0x3FFF).
|
* An integral Number of pixels, zero or false to remove limit, true to use default limit of 268402689 (0x3FFF x 0x3FFF).
|
||||||
* @param {boolean} [options.unlimited=false] - Set this to `true` to remove safety features that help prevent memory exhaustion (JPEG, PNG, SVG, HEIF).
|
* @param {boolean} [options.unlimited=false] - Set this to `true` to remove safety features that help prevent memory exhaustion (JPEG, PNG, SVG, HEIF).
|
||||||
|
* @param {boolean} [options.autoOrient=false] - Set this to `true` to rotate/flip the image to match EXIF `Orientation`, if any.
|
||||||
* @param {boolean} [options.sequentialRead=true] - Set this to `false` to use random access rather than sequential read. Some operations will do this automatically.
|
* @param {boolean} [options.sequentialRead=true] - Set this to `false` to use random access rather than sequential read. Some operations will do this automatically.
|
||||||
* @param {number} [options.density=72] - number representing the DPI for vector images in the range 1 to 100000.
|
* @param {number} [options.density=72] - number representing the DPI for vector images in the range 1 to 100000.
|
||||||
* @param {number} [options.ignoreIcc=false] - should the embedded ICC profile, if any, be ignored.
|
* @param {number} [options.ignoreIcc=false] - should the embedded ICC profile, if any, be ignored.
|
||||||
@ -168,6 +184,14 @@ const debuglog = util.debuglog('sharp');
|
|||||||
* @param {boolean} [options.text.rgba=false] - set this to true to enable RGBA output. This is useful for colour emoji rendering, or support for pango markup features like `<span foreground="red">Red!</span>`.
|
* @param {boolean} [options.text.rgba=false] - set this to true to enable RGBA output. This is useful for colour emoji rendering, or support for pango markup features like `<span foreground="red">Red!</span>`.
|
||||||
* @param {number} [options.text.spacing=0] - text line height in points. Will use the font line height if none is specified.
|
* @param {number} [options.text.spacing=0] - text line height in points. Will use the font line height if none is specified.
|
||||||
* @param {string} [options.text.wrap='word'] - word wrapping style when width is provided, one of: 'word', 'char', 'word-char' (prefer word, fallback to char) or 'none'.
|
* @param {string} [options.text.wrap='word'] - word wrapping style when width is provided, one of: 'word', 'char', 'word-char' (prefer word, fallback to char) or 'none'.
|
||||||
|
* @param {Object} [options.join] - describes how an array of input images should be joined.
|
||||||
|
* @param {number} [options.join.across=1] - number of images to join horizontally.
|
||||||
|
* @param {boolean} [options.join.animated=false] - set this to `true` to join the images as an animated image.
|
||||||
|
* @param {number} [options.join.shim=0] - number of pixels to insert between joined images.
|
||||||
|
* @param {string|Object} [options.join.background] - parsed by the [color](https://www.npmjs.org/package/color) module to extract values for red, green, blue and alpha.
|
||||||
|
* @param {string} [options.join.halign='left'] - horizontal alignment style for images joined horizontally (`'left'`, `'centre'`, `'center'`, `'right'`).
|
||||||
|
* @param {string} [options.join.valign='top'] - vertical alignment style for images joined vertically (`'top'`, `'centre'`, `'center'`, `'bottom'`).
|
||||||
|
*
|
||||||
* @returns {Sharp}
|
* @returns {Sharp}
|
||||||
* @throws {Error} Invalid parameters
|
* @throws {Error} Invalid parameters
|
||||||
*/
|
*/
|
||||||
@ -194,7 +218,6 @@ const Sharp = function (input, options) {
|
|||||||
canvas: 'crop',
|
canvas: 'crop',
|
||||||
position: 0,
|
position: 0,
|
||||||
resizeBackground: [0, 0, 0, 255],
|
resizeBackground: [0, 0, 0, 255],
|
||||||
useExifOrientation: false,
|
|
||||||
angle: 0,
|
angle: 0,
|
||||||
rotationAngle: 0,
|
rotationAngle: 0,
|
||||||
rotationBackground: [0, 0, 0, 255],
|
rotationBackground: [0, 0, 0, 255],
|
||||||
|
156
lib/index.d.ts
vendored
@ -40,19 +40,7 @@ import { Duplex } from 'stream';
|
|||||||
*/
|
*/
|
||||||
declare function sharp(options?: sharp.SharpOptions): sharp.Sharp;
|
declare function sharp(options?: sharp.SharpOptions): sharp.Sharp;
|
||||||
declare function sharp(
|
declare function sharp(
|
||||||
input?:
|
input?: sharp.SharpInput | Array<sharp.SharpInput>,
|
||||||
| Buffer
|
|
||||||
| ArrayBuffer
|
|
||||||
| Uint8Array
|
|
||||||
| Uint8ClampedArray
|
|
||||||
| Int8Array
|
|
||||||
| Uint16Array
|
|
||||||
| Int16Array
|
|
||||||
| Uint32Array
|
|
||||||
| Int32Array
|
|
||||||
| Float32Array
|
|
||||||
| Float64Array
|
|
||||||
| string,
|
|
||||||
options?: sharp.SharpOptions,
|
options?: sharp.SharpOptions,
|
||||||
): sharp.Sharp;
|
): sharp.Sharp;
|
||||||
|
|
||||||
@ -62,33 +50,35 @@ declare namespace sharp {
|
|||||||
|
|
||||||
/** An Object containing the version numbers of sharp, libvips and its dependencies. */
|
/** An Object containing the version numbers of sharp, libvips and its dependencies. */
|
||||||
const versions: {
|
const versions: {
|
||||||
vips: string;
|
aom?: string | undefined;
|
||||||
|
archive?: string | undefined;
|
||||||
cairo?: string | undefined;
|
cairo?: string | undefined;
|
||||||
croco?: string | undefined;
|
cgif?: string | undefined;
|
||||||
exif?: string | undefined;
|
exif?: string | undefined;
|
||||||
expat?: string | undefined;
|
expat?: string | undefined;
|
||||||
ffi?: string | undefined;
|
ffi?: string | undefined;
|
||||||
fontconfig?: string | undefined;
|
fontconfig?: string | undefined;
|
||||||
freetype?: string | undefined;
|
freetype?: string | undefined;
|
||||||
gdkpixbuf?: string | undefined;
|
fribidi?: string | undefined;
|
||||||
gif?: string | undefined;
|
|
||||||
glib?: string | undefined;
|
glib?: string | undefined;
|
||||||
gsf?: string | undefined;
|
|
||||||
harfbuzz?: string | undefined;
|
harfbuzz?: string | undefined;
|
||||||
jpeg?: string | undefined;
|
heif?: string | undefined;
|
||||||
|
highway?: string | undefined;
|
||||||
|
imagequant?: string | undefined;
|
||||||
lcms?: string | undefined;
|
lcms?: string | undefined;
|
||||||
orc?: string | undefined;
|
mozjpeg?: string | undefined;
|
||||||
pango?: string | undefined;
|
pango?: string | undefined;
|
||||||
pixman?: string | undefined;
|
pixman?: string | undefined;
|
||||||
png?: string | undefined;
|
png?: string | undefined;
|
||||||
sharp?: string | undefined;
|
"proxy-libintl"?: string | undefined;
|
||||||
svg?: string | undefined;
|
rsvg?: string | undefined;
|
||||||
|
sharp: string;
|
||||||
|
spng?: string | undefined;
|
||||||
tiff?: string | undefined;
|
tiff?: string | undefined;
|
||||||
|
vips: string;
|
||||||
webp?: string | undefined;
|
webp?: string | undefined;
|
||||||
avif?: string | undefined;
|
|
||||||
heif?: string | undefined;
|
|
||||||
xml?: string | undefined;
|
xml?: string | undefined;
|
||||||
zlib?: string | undefined;
|
"zlib-ng"?: string | undefined;
|
||||||
};
|
};
|
||||||
|
|
||||||
/** An Object containing the available interpolators and their proper values */
|
/** An Object containing the available interpolators and their proper values */
|
||||||
@ -364,24 +354,72 @@ declare namespace sharp {
|
|||||||
//#region Operation functions
|
//#region Operation functions
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Rotate the output image by either an explicit angle or auto-orient based on the EXIF Orientation tag.
|
* Rotate the output image by either an explicit angle
|
||||||
|
* or auto-orient based on the EXIF `Orientation` tag.
|
||||||
*
|
*
|
||||||
* If an angle is provided, it is converted to a valid positive degree rotation. For example, -450 will produce a 270deg rotation.
|
* If an angle is provided, it is converted to a valid positive degree rotation.
|
||||||
|
* For example, `-450` will produce a 270 degree rotation.
|
||||||
*
|
*
|
||||||
* When rotating by an angle other than a multiple of 90, the background colour can be provided with the background option.
|
* When rotating by an angle other than a multiple of 90,
|
||||||
|
* the background colour can be provided with the `background` option.
|
||||||
*
|
*
|
||||||
* If no angle is provided, it is determined from the EXIF data. Mirroring is supported and may infer the use of a flip operation.
|
* If no angle is provided, it is determined from the EXIF data.
|
||||||
|
* Mirroring is supported and may infer the use of a flip operation.
|
||||||
*
|
*
|
||||||
* The use of rotate implies the removal of the EXIF Orientation tag, if any.
|
* The use of `rotate` without an angle will remove the EXIF `Orientation` tag, if any.
|
||||||
*
|
*
|
||||||
* Method order is important when both rotating and extracting regions, for example rotate(x).extract(y) will produce a different result to extract(y).rotate(x).
|
* Only one rotation can occur per pipeline (aside from an initial call without
|
||||||
* @param angle angle of rotation. (optional, default auto)
|
* arguments to orient via EXIF data). Previous calls to `rotate` in the same
|
||||||
* @param options if present, is an Object with optional attributes.
|
* pipeline will be ignored.
|
||||||
|
*
|
||||||
|
* Multi-page images can only be rotated by 180 degrees.
|
||||||
|
*
|
||||||
|
* Method order is important when rotating, resizing and/or extracting regions,
|
||||||
|
* for example `.rotate(x).extract(y)` will produce a different result to `.extract(y).rotate(x)`.
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* const pipeline = sharp()
|
||||||
|
* .rotate()
|
||||||
|
* .resize(null, 200)
|
||||||
|
* .toBuffer(function (err, outputBuffer, info) {
|
||||||
|
* // outputBuffer contains 200px high JPEG image data,
|
||||||
|
* // auto-rotated using EXIF Orientation tag
|
||||||
|
* // info.width and info.height contain the dimensions of the resized image
|
||||||
|
* });
|
||||||
|
* readableStream.pipe(pipeline);
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* const rotateThenResize = await sharp(input)
|
||||||
|
* .rotate(90)
|
||||||
|
* .resize({ width: 16, height: 8, fit: 'fill' })
|
||||||
|
* .toBuffer();
|
||||||
|
* const resizeThenRotate = await sharp(input)
|
||||||
|
* .resize({ width: 16, height: 8, fit: 'fill' })
|
||||||
|
* .rotate(90)
|
||||||
|
* .toBuffer();
|
||||||
|
*
|
||||||
|
* @param {number} [angle=auto] angle of rotation.
|
||||||
|
* @param {Object} [options] - if present, is an Object with optional attributes.
|
||||||
|
* @param {string|Object} [options.background="#000000"] parsed by the [color](https://www.npmjs.org/package/color) module to extract values for red, green, blue and alpha.
|
||||||
|
* @returns {Sharp}
|
||||||
* @throws {Error} Invalid parameters
|
* @throws {Error} Invalid parameters
|
||||||
* @returns A sharp instance that can be used to chain operations
|
|
||||||
*/
|
*/
|
||||||
rotate(angle?: number, options?: RotateOptions): Sharp;
|
rotate(angle?: number, options?: RotateOptions): Sharp;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Alias for calling `rotate()` with no arguments, which orients the image based
|
||||||
|
* on EXIF orientsion.
|
||||||
|
*
|
||||||
|
* This operation is aliased to emphasize its purpose, helping to remove any
|
||||||
|
* confusion between rotation and orientation.
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* const output = await sharp(input).autoOrient().toBuffer();
|
||||||
|
*
|
||||||
|
* @returns {Sharp}
|
||||||
|
*/
|
||||||
|
autoOrient(): Sharp
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Flip the image about the vertical Y axis. This always occurs after rotation, if any.
|
* Flip the image about the vertical Y axis. This always occurs after rotation, if any.
|
||||||
* The use of flip implies the removal of the EXIF Orientation tag, if any.
|
* The use of flip implies the removal of the EXIF Orientation tag, if any.
|
||||||
@ -897,7 +935,27 @@ declare namespace sharp {
|
|||||||
//#endregion
|
//#endregion
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type SharpInput = Buffer
|
||||||
|
| ArrayBuffer
|
||||||
|
| Uint8Array
|
||||||
|
| Uint8ClampedArray
|
||||||
|
| Int8Array
|
||||||
|
| Uint16Array
|
||||||
|
| Int16Array
|
||||||
|
| Uint32Array
|
||||||
|
| Int32Array
|
||||||
|
| Float32Array
|
||||||
|
| Float64Array
|
||||||
|
| string;
|
||||||
|
|
||||||
interface SharpOptions {
|
interface SharpOptions {
|
||||||
|
/**
|
||||||
|
* Auto-orient based on the EXIF `Orientation` tag, if present.
|
||||||
|
* Mirroring is supported and may infer the use of a flip operation.
|
||||||
|
*
|
||||||
|
* Using this option will remove the EXIF `Orientation` tag, if any.
|
||||||
|
*/
|
||||||
|
autoOrient?: boolean;
|
||||||
/**
|
/**
|
||||||
* When to abort processing of invalid pixel data, one of (in order of sensitivity):
|
* When to abort processing of invalid pixel data, one of (in order of sensitivity):
|
||||||
* 'none' (least), 'truncated', 'error' or 'warning' (most), highers level imply lower levels, invalid metadata will always abort. (optional, default 'warning')
|
* 'none' (least), 'truncated', 'error' or 'warning' (most), highers level imply lower levels, invalid metadata will always abort. (optional, default 'warning')
|
||||||
@ -943,6 +1001,8 @@ declare namespace sharp {
|
|||||||
create?: Create | undefined;
|
create?: Create | undefined;
|
||||||
/** Describes a new text image to be created. */
|
/** Describes a new text image to be created. */
|
||||||
text?: CreateText | undefined;
|
text?: CreateText | undefined;
|
||||||
|
/** Describes how array of input images should be joined. */
|
||||||
|
join?: Join | undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface CacheOptions {
|
interface CacheOptions {
|
||||||
@ -1023,6 +1083,21 @@ declare namespace sharp {
|
|||||||
wrap?: TextWrap;
|
wrap?: TextWrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface Join {
|
||||||
|
/** Number of images per row. */
|
||||||
|
across?: number | undefined;
|
||||||
|
/** Treat input as frames of an animated image. */
|
||||||
|
animated?: boolean | undefined;
|
||||||
|
/** Space between images, in pixels. */
|
||||||
|
shim?: number | undefined;
|
||||||
|
/** Background colour. */
|
||||||
|
background?: Colour | Color | undefined;
|
||||||
|
/** Horizontal alignment. */
|
||||||
|
halign?: HorizontalAlignment | undefined;
|
||||||
|
/** Vertical alignment. */
|
||||||
|
valign?: VerticalAlignment | undefined;
|
||||||
|
}
|
||||||
|
|
||||||
interface ExifDir {
|
interface ExifDir {
|
||||||
[k: string]: string;
|
[k: string]: string;
|
||||||
}
|
}
|
||||||
@ -1062,6 +1137,13 @@ declare namespace sharp {
|
|||||||
width?: number | undefined;
|
width?: number | undefined;
|
||||||
/** Number of pixels high (EXIF orientation is not taken into consideration) */
|
/** Number of pixels high (EXIF orientation is not taken into consideration) */
|
||||||
height?: number | undefined;
|
height?: number | undefined;
|
||||||
|
/** Any changed metadata after the image orientation is applied. */
|
||||||
|
autoOrient: {
|
||||||
|
/** Number of pixels wide (EXIF orientation is taken into consideration) */
|
||||||
|
width: number;
|
||||||
|
/** Number of pixels high (EXIF orientation is taken into consideration) */
|
||||||
|
height: number;
|
||||||
|
};
|
||||||
/** Name of colour space interpretation */
|
/** Name of colour space interpretation */
|
||||||
space?: keyof ColourspaceEnum | undefined;
|
space?: keyof ColourspaceEnum | undefined;
|
||||||
/** Number of bands e.g. 3 for sRGB, 4 for CMYK */
|
/** Number of bands e.g. 3 for sRGB, 4 for CMYK */
|
||||||
@ -1512,6 +1594,8 @@ declare namespace sharp {
|
|||||||
failOn?: FailOnOptions | undefined;
|
failOn?: FailOnOptions | undefined;
|
||||||
/** see sharp() constructor, (optional, default 268402689) */
|
/** see sharp() constructor, (optional, default 268402689) */
|
||||||
limitInputPixels?: number | boolean | undefined;
|
limitInputPixels?: number | boolean | undefined;
|
||||||
|
/** see sharp() constructor, (optional, default false) */
|
||||||
|
autoOrient?: boolean | undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface TileOptions {
|
interface TileOptions {
|
||||||
@ -1652,6 +1736,10 @@ declare namespace sharp {
|
|||||||
|
|
||||||
type TextWrap = 'word' | 'char' | 'word-char' | 'none';
|
type TextWrap = 'word' | 'char' | 'word-char' | 'none';
|
||||||
|
|
||||||
|
type HorizontalAlignment = 'left' | 'centre' | 'center' | 'right';
|
||||||
|
|
||||||
|
type VerticalAlignment = 'top' | 'centre' | 'center' | 'bottom';
|
||||||
|
|
||||||
type TileContainer = 'fs' | 'zip';
|
type TileContainer = 'fs' | 'zip';
|
||||||
|
|
||||||
type TileLayout = 'dz' | 'iiif' | 'iiif3' | 'zoomify' | 'google';
|
type TileLayout = 'dz' | 'iiif' | 'iiif3' | 'zoomify' | 'google';
|
||||||
|
96
lib/input.js
@ -14,9 +14,13 @@ const sharp = require('./sharp');
|
|||||||
*/
|
*/
|
||||||
const align = {
|
const align = {
|
||||||
left: 'low',
|
left: 'low',
|
||||||
|
top: 'low',
|
||||||
|
low: 'low',
|
||||||
center: 'centre',
|
center: 'centre',
|
||||||
centre: 'centre',
|
centre: 'centre',
|
||||||
right: 'high'
|
right: 'high',
|
||||||
|
bottom: 'high',
|
||||||
|
high: 'high'
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -24,9 +28,9 @@ const align = {
|
|||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
function _inputOptionsFromObject (obj) {
|
function _inputOptionsFromObject (obj) {
|
||||||
const { raw, density, limitInputPixels, ignoreIcc, unlimited, sequentialRead, failOn, failOnError, animated, page, pages, subifd, pdfBackground } = obj;
|
const { raw, density, limitInputPixels, ignoreIcc, unlimited, sequentialRead, failOn, failOnError, animated, page, pages, subifd, pdfBackground, autoOrient } = obj;
|
||||||
return [raw, density, limitInputPixels, ignoreIcc, unlimited, sequentialRead, failOn, failOnError, animated, page, pages, subifd, pdfBackground].some(is.defined)
|
return [raw, density, limitInputPixels, ignoreIcc, unlimited, sequentialRead, failOn, failOnError, animated, page, pages, subifd, pdfBackground, autoOrient].some(is.defined)
|
||||||
? { raw, density, limitInputPixels, ignoreIcc, unlimited, sequentialRead, failOn, failOnError, animated, page, pages, subifd, pdfBackground }
|
? { raw, density, limitInputPixels, ignoreIcc, unlimited, sequentialRead, failOn, failOnError, animated, page, pages, subifd, pdfBackground, autoOrient }
|
||||||
: undefined;
|
: undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -36,6 +40,7 @@ function _inputOptionsFromObject (obj) {
|
|||||||
*/
|
*/
|
||||||
function _createInputDescriptor (input, inputOptions, containerOptions) {
|
function _createInputDescriptor (input, inputOptions, containerOptions) {
|
||||||
const inputDescriptor = {
|
const inputDescriptor = {
|
||||||
|
autoOrient: false,
|
||||||
failOn: 'warning',
|
failOn: 'warning',
|
||||||
limitInputPixels: Math.pow(0x3FFF, 2),
|
limitInputPixels: Math.pow(0x3FFF, 2),
|
||||||
ignoreIcc: false,
|
ignoreIcc: false,
|
||||||
@ -71,6 +76,18 @@ function _createInputDescriptor (input, inputOptions, containerOptions) {
|
|||||||
} else if (!is.defined(input) && !is.defined(inputOptions) && is.object(containerOptions) && containerOptions.allowStream) {
|
} else if (!is.defined(input) && !is.defined(inputOptions) && is.object(containerOptions) && containerOptions.allowStream) {
|
||||||
// Stream without options
|
// Stream without options
|
||||||
inputDescriptor.buffer = [];
|
inputDescriptor.buffer = [];
|
||||||
|
} else if (Array.isArray(input)) {
|
||||||
|
if (input.length > 1) {
|
||||||
|
// Join images together
|
||||||
|
if (!this.options.joining) {
|
||||||
|
this.options.joining = true;
|
||||||
|
this.options.join = input.map(i => this._createInputDescriptor(i));
|
||||||
|
} else {
|
||||||
|
throw new Error('Recursive join is unsupported');
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
throw new Error('Expected at least two images to join');
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
throw new Error(`Unsupported input '${input}' of type ${typeof input}${
|
throw new Error(`Unsupported input '${input}' of type ${typeof input}${
|
||||||
is.defined(inputOptions) ? ` when also providing options of type ${typeof inputOptions}` : ''
|
is.defined(inputOptions) ? ` when also providing options of type ${typeof inputOptions}` : ''
|
||||||
@ -93,6 +110,14 @@ function _createInputDescriptor (input, inputOptions, containerOptions) {
|
|||||||
throw is.invalidParameterError('failOn', 'one of: none, truncated, error, warning', inputOptions.failOn);
|
throw is.invalidParameterError('failOn', 'one of: none, truncated, error, warning', inputOptions.failOn);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// autoOrient
|
||||||
|
if (is.defined(inputOptions.autoOrient)) {
|
||||||
|
if (is.bool(inputOptions.autoOrient)) {
|
||||||
|
inputDescriptor.autoOrient = inputOptions.autoOrient;
|
||||||
|
} else {
|
||||||
|
throw is.invalidParameterError('autoOrient', 'boolean', inputOptions.autoOrient);
|
||||||
|
}
|
||||||
|
}
|
||||||
// Density
|
// Density
|
||||||
if (is.defined(inputOptions.density)) {
|
if (is.defined(inputOptions.density)) {
|
||||||
if (is.inRange(inputOptions.density, 1, 100000)) {
|
if (is.inRange(inputOptions.density, 1, 100000)) {
|
||||||
@ -360,6 +385,57 @@ function _createInputDescriptor (input, inputOptions, containerOptions) {
|
|||||||
throw new Error('Expected a valid string to create an image with text.');
|
throw new Error('Expected a valid string to create an image with text.');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Join images together
|
||||||
|
if (is.defined(inputOptions.join)) {
|
||||||
|
if (is.defined(this.options.join)) {
|
||||||
|
if (is.defined(inputOptions.join.animated)) {
|
||||||
|
if (is.bool(inputOptions.join.animated)) {
|
||||||
|
inputDescriptor.joinAnimated = inputOptions.join.animated;
|
||||||
|
} else {
|
||||||
|
throw is.invalidParameterError('join.animated', 'boolean', inputOptions.join.animated);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (is.defined(inputOptions.join.across)) {
|
||||||
|
if (is.integer(inputOptions.join.across) && is.inRange(inputOptions.join.across, 1, 1000000)) {
|
||||||
|
inputDescriptor.joinAcross = inputOptions.join.across;
|
||||||
|
} else {
|
||||||
|
throw is.invalidParameterError('join.across', 'integer between 1 and 100000', inputOptions.join.across);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (is.defined(inputOptions.join.shim)) {
|
||||||
|
if (is.integer(inputOptions.join.shim) && is.inRange(inputOptions.join.shim, 0, 1000000)) {
|
||||||
|
inputDescriptor.joinShim = inputOptions.join.shim;
|
||||||
|
} else {
|
||||||
|
throw is.invalidParameterError('join.shim', 'integer between 0 and 100000', inputOptions.join.shim);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (is.defined(inputOptions.join.background)) {
|
||||||
|
const background = color(inputOptions.join.background);
|
||||||
|
inputDescriptor.joinBackground = [
|
||||||
|
background.red(),
|
||||||
|
background.green(),
|
||||||
|
background.blue(),
|
||||||
|
Math.round(background.alpha() * 255)
|
||||||
|
];
|
||||||
|
}
|
||||||
|
if (is.defined(inputOptions.join.halign)) {
|
||||||
|
if (is.string(inputOptions.join.halign) && is.string(this.constructor.align[inputOptions.join.halign])) {
|
||||||
|
inputDescriptor.joinHalign = this.constructor.align[inputOptions.join.halign];
|
||||||
|
} else {
|
||||||
|
throw is.invalidParameterError('join.halign', 'valid alignment', inputOptions.join.halign);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (is.defined(inputOptions.join.valign)) {
|
||||||
|
if (is.string(inputOptions.join.valign) && is.string(this.constructor.align[inputOptions.join.valign])) {
|
||||||
|
inputDescriptor.joinValign = this.constructor.align[inputOptions.join.valign];
|
||||||
|
} else {
|
||||||
|
throw is.invalidParameterError('join.valign', 'valid alignment', inputOptions.join.valign);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
throw new Error('Expected input to be an array of images to join');
|
||||||
|
}
|
||||||
|
}
|
||||||
} else if (is.defined(inputOptions)) {
|
} else if (is.defined(inputOptions)) {
|
||||||
throw new Error('Invalid input options ' + inputOptions);
|
throw new Error('Invalid input options ' + inputOptions);
|
||||||
}
|
}
|
||||||
@ -475,15 +551,9 @@ function _isStreamInput () {
|
|||||||
* });
|
* });
|
||||||
*
|
*
|
||||||
* @example
|
* @example
|
||||||
* // Based on EXIF rotation metadata, get the right-side-up width and height:
|
* // Get dimensions taking EXIF Orientation into account.
|
||||||
*
|
* const { autoOrient } = await sharp(input).metadata();
|
||||||
* const size = getNormalSize(await sharp(input).metadata());
|
* const { width, height } = autoOrient;
|
||||||
*
|
|
||||||
* function getNormalSize({ width, height, orientation }) {
|
|
||||||
* return (orientation || 0) >= 5
|
|
||||||
* ? { width: height, height: width }
|
|
||||||
* : { width, height };
|
|
||||||
* }
|
|
||||||
*
|
*
|
||||||
* @param {Function} [callback] - called with the arguments `(err, metadata)`
|
* @param {Function} [callback] - called with the arguments `(err, metadata)`
|
||||||
* @returns {Promise<Object>|Sharp}
|
* @returns {Promise<Object>|Sharp}
|
||||||
|
@ -18,22 +18,19 @@ const vipsPrecision = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Rotate the output image by either an explicit angle
|
* Rotate the output image.
|
||||||
* or auto-orient based on the EXIF `Orientation` tag.
|
|
||||||
*
|
*
|
||||||
* If an angle is provided, it is converted to a valid positive degree rotation.
|
* The provided angle is converted to a valid positive degree rotation.
|
||||||
* For example, `-450` will produce a 270 degree rotation.
|
* For example, `-450` will produce a 270 degree rotation.
|
||||||
*
|
*
|
||||||
* When rotating by an angle other than a multiple of 90,
|
* When rotating by an angle other than a multiple of 90,
|
||||||
* the background colour can be provided with the `background` option.
|
* the background colour can be provided with the `background` option.
|
||||||
*
|
*
|
||||||
* If no angle is provided, it is determined from the EXIF data.
|
* For backwards compatibility, if no angle is provided, `.autoOrient()` will be called.
|
||||||
* Mirroring is supported and may infer the use of a flip operation.
|
|
||||||
*
|
*
|
||||||
* The use of `rotate` without an angle will remove the EXIF `Orientation` tag, if any.
|
* Only one rotation can occur per pipeline (aside from an initial call without
|
||||||
*
|
* arguments to orient via EXIF data). Previous calls to `rotate` in the same
|
||||||
* Only one rotation can occur per pipeline.
|
* pipeline will be ignored.
|
||||||
* Previous calls to `rotate` in the same pipeline will be ignored.
|
|
||||||
*
|
*
|
||||||
* Multi-page images can only be rotated by 180 degrees.
|
* Multi-page images can only be rotated by 180 degrees.
|
||||||
*
|
*
|
||||||
@ -41,17 +38,6 @@ const vipsPrecision = {
|
|||||||
* for example `.rotate(x).extract(y)` will produce a different result to `.extract(y).rotate(x)`.
|
* for example `.rotate(x).extract(y)` will produce a different result to `.extract(y).rotate(x)`.
|
||||||
*
|
*
|
||||||
* @example
|
* @example
|
||||||
* const pipeline = sharp()
|
|
||||||
* .rotate()
|
|
||||||
* .resize(null, 200)
|
|
||||||
* .toBuffer(function (err, outputBuffer, info) {
|
|
||||||
* // outputBuffer contains 200px high JPEG image data,
|
|
||||||
* // auto-rotated using EXIF Orientation tag
|
|
||||||
* // info.width and info.height contain the dimensions of the resized image
|
|
||||||
* });
|
|
||||||
* readableStream.pipe(pipeline);
|
|
||||||
*
|
|
||||||
* @example
|
|
||||||
* const rotateThenResize = await sharp(input)
|
* const rotateThenResize = await sharp(input)
|
||||||
* .rotate(90)
|
* .rotate(90)
|
||||||
* .resize({ width: 16, height: 8, fit: 'fill' })
|
* .resize({ width: 16, height: 8, fit: 'fill' })
|
||||||
@ -68,12 +54,15 @@ const vipsPrecision = {
|
|||||||
* @throws {Error} Invalid parameters
|
* @throws {Error} Invalid parameters
|
||||||
*/
|
*/
|
||||||
function rotate (angle, options) {
|
function rotate (angle, options) {
|
||||||
if (this.options.useExifOrientation || this.options.angle || this.options.rotationAngle) {
|
|
||||||
this.options.debuglog('ignoring previous rotate options');
|
|
||||||
}
|
|
||||||
if (!is.defined(angle)) {
|
if (!is.defined(angle)) {
|
||||||
this.options.useExifOrientation = true;
|
return this.autoOrient();
|
||||||
} else if (is.integer(angle) && !(angle % 90)) {
|
}
|
||||||
|
if (this.options.angle || this.options.rotationAngle) {
|
||||||
|
this.options.debuglog('ignoring previous rotate options');
|
||||||
|
this.options.angle = 0;
|
||||||
|
this.options.rotationAngle = 0;
|
||||||
|
}
|
||||||
|
if (is.integer(angle) && !(angle % 90)) {
|
||||||
this.options.angle = angle;
|
this.options.angle = angle;
|
||||||
} else if (is.number(angle)) {
|
} else if (is.number(angle)) {
|
||||||
this.options.rotationAngle = angle;
|
this.options.rotationAngle = angle;
|
||||||
@ -92,6 +81,34 @@ function rotate (angle, options) {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Auto-orient based on the EXIF `Orientation` tag, then remove the tag.
|
||||||
|
* Mirroring is supported and may infer the use of a flip operation.
|
||||||
|
*
|
||||||
|
* Previous or subsequent use of `rotate(angle)` and either `flip()` or `flop()`
|
||||||
|
* will logically occur after auto-orientation, regardless of call order.
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* const output = await sharp(input).autoOrient().toBuffer();
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* const pipeline = sharp()
|
||||||
|
* .autoOrient()
|
||||||
|
* .resize(null, 200)
|
||||||
|
* .toBuffer(function (err, outputBuffer, info) {
|
||||||
|
* // outputBuffer contains 200px high JPEG image data,
|
||||||
|
* // auto-oriented using EXIF Orientation tag
|
||||||
|
* // info.width and info.height contain the dimensions of the resized image
|
||||||
|
* });
|
||||||
|
* readableStream.pipe(pipeline);
|
||||||
|
*
|
||||||
|
* @returns {Sharp}
|
||||||
|
*/
|
||||||
|
function autoOrient () {
|
||||||
|
this.options.input.autoOrient = true;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Mirror the image vertically (up-down) about the x-axis.
|
* Mirror the image vertically (up-down) about the x-axis.
|
||||||
* This always occurs before rotation, if any.
|
* This always occurs before rotation, if any.
|
||||||
@ -935,6 +952,7 @@ function modulate (options) {
|
|||||||
*/
|
*/
|
||||||
module.exports = function (Sharp) {
|
module.exports = function (Sharp) {
|
||||||
Object.assign(Sharp.prototype, {
|
Object.assign(Sharp.prototype, {
|
||||||
|
autoOrient,
|
||||||
rotate,
|
rotate,
|
||||||
flip,
|
flip,
|
||||||
flop,
|
flop,
|
||||||
|
@ -107,7 +107,7 @@ const mapFitToCanvas = {
|
|||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
function isRotationExpected (options) {
|
function isRotationExpected (options) {
|
||||||
return (options.angle % 360) !== 0 || options.useExifOrientation === true || options.rotationAngle !== 0;
|
return (options.angle % 360) !== 0 || options.input.autoOrient === true || options.rotationAngle !== 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@img/sharp-darwin-arm64",
|
"name": "@img/sharp-darwin-arm64",
|
||||||
"version": "0.33.5",
|
"version": "0.34.0-rc.0",
|
||||||
"description": "Prebuilt sharp for use with macOS 64-bit ARM",
|
"description": "Prebuilt sharp for use with macOS 64-bit ARM",
|
||||||
"author": "Lovell Fuller <npm@lovell.info>",
|
"author": "Lovell Fuller <npm@lovell.info>",
|
||||||
"homepage": "https://sharp.pixelplumbing.com",
|
"homepage": "https://sharp.pixelplumbing.com",
|
||||||
@ -15,7 +15,7 @@
|
|||||||
},
|
},
|
||||||
"preferUnplugged": true,
|
"preferUnplugged": true,
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@img/sharp-libvips-darwin-arm64": "1.1.0-rc3"
|
"@img/sharp-libvips-darwin-arm64": "1.1.0-rc4"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"lib"
|
"lib"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@img/sharp-darwin-x64",
|
"name": "@img/sharp-darwin-x64",
|
||||||
"version": "0.33.5",
|
"version": "0.34.0-rc.0",
|
||||||
"description": "Prebuilt sharp for use with macOS x64",
|
"description": "Prebuilt sharp for use with macOS x64",
|
||||||
"author": "Lovell Fuller <npm@lovell.info>",
|
"author": "Lovell Fuller <npm@lovell.info>",
|
||||||
"homepage": "https://sharp.pixelplumbing.com",
|
"homepage": "https://sharp.pixelplumbing.com",
|
||||||
@ -15,7 +15,7 @@
|
|||||||
},
|
},
|
||||||
"preferUnplugged": true,
|
"preferUnplugged": true,
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@img/sharp-libvips-darwin-x64": "1.1.0-rc3"
|
"@img/sharp-libvips-darwin-x64": "1.1.0-rc4"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"lib"
|
"lib"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@img/sharp-linux-arm",
|
"name": "@img/sharp-linux-arm",
|
||||||
"version": "0.33.5",
|
"version": "0.34.0-rc.0",
|
||||||
"description": "Prebuilt sharp for use with Linux (glibc) ARM (32-bit)",
|
"description": "Prebuilt sharp for use with Linux (glibc) ARM (32-bit)",
|
||||||
"author": "Lovell Fuller <npm@lovell.info>",
|
"author": "Lovell Fuller <npm@lovell.info>",
|
||||||
"homepage": "https://sharp.pixelplumbing.com",
|
"homepage": "https://sharp.pixelplumbing.com",
|
||||||
@ -15,7 +15,7 @@
|
|||||||
},
|
},
|
||||||
"preferUnplugged": true,
|
"preferUnplugged": true,
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@img/sharp-libvips-linux-arm": "1.1.0-rc3.1"
|
"@img/sharp-libvips-linux-arm": "1.1.0-rc4.1"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"lib"
|
"lib"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@img/sharp-linux-arm64",
|
"name": "@img/sharp-linux-arm64",
|
||||||
"version": "0.33.5",
|
"version": "0.34.0-rc.0",
|
||||||
"description": "Prebuilt sharp for use with Linux (glibc) 64-bit ARM",
|
"description": "Prebuilt sharp for use with Linux (glibc) 64-bit ARM",
|
||||||
"author": "Lovell Fuller <npm@lovell.info>",
|
"author": "Lovell Fuller <npm@lovell.info>",
|
||||||
"homepage": "https://sharp.pixelplumbing.com",
|
"homepage": "https://sharp.pixelplumbing.com",
|
||||||
@ -15,7 +15,7 @@
|
|||||||
},
|
},
|
||||||
"preferUnplugged": true,
|
"preferUnplugged": true,
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@img/sharp-libvips-linux-arm64": "1.1.0-rc3"
|
"@img/sharp-libvips-linux-arm64": "1.1.0-rc4"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"lib"
|
"lib"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@img/sharp-linux-ppc64",
|
"name": "@img/sharp-linux-ppc64",
|
||||||
"version": "0.33.5",
|
"version": "0.34.0-rc.0",
|
||||||
"description": "Prebuilt sharp for use with Linux (glibc) ppc64",
|
"description": "Prebuilt sharp for use with Linux (glibc) ppc64",
|
||||||
"author": "Lovell Fuller <npm@lovell.info>",
|
"author": "Lovell Fuller <npm@lovell.info>",
|
||||||
"homepage": "https://sharp.pixelplumbing.com",
|
"homepage": "https://sharp.pixelplumbing.com",
|
||||||
@ -15,7 +15,7 @@
|
|||||||
},
|
},
|
||||||
"preferUnplugged": true,
|
"preferUnplugged": true,
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@img/sharp-libvips-linux-ppc64": "1.1.0-rc3"
|
"@img/sharp-libvips-linux-ppc64": "1.1.0-rc4"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"lib"
|
"lib"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@img/sharp-linux-s390x",
|
"name": "@img/sharp-linux-s390x",
|
||||||
"version": "0.33.5",
|
"version": "0.34.0-rc.0",
|
||||||
"description": "Prebuilt sharp for use with Linux (glibc) s390x",
|
"description": "Prebuilt sharp for use with Linux (glibc) s390x",
|
||||||
"author": "Lovell Fuller <npm@lovell.info>",
|
"author": "Lovell Fuller <npm@lovell.info>",
|
||||||
"homepage": "https://sharp.pixelplumbing.com",
|
"homepage": "https://sharp.pixelplumbing.com",
|
||||||
@ -15,7 +15,7 @@
|
|||||||
},
|
},
|
||||||
"preferUnplugged": true,
|
"preferUnplugged": true,
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@img/sharp-libvips-linux-s390x": "1.1.0-rc3"
|
"@img/sharp-libvips-linux-s390x": "1.1.0-rc4"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"lib"
|
"lib"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@img/sharp-linux-x64",
|
"name": "@img/sharp-linux-x64",
|
||||||
"version": "0.33.5",
|
"version": "0.34.0-rc.0",
|
||||||
"description": "Prebuilt sharp for use with Linux (glibc) x64",
|
"description": "Prebuilt sharp for use with Linux (glibc) x64",
|
||||||
"author": "Lovell Fuller <npm@lovell.info>",
|
"author": "Lovell Fuller <npm@lovell.info>",
|
||||||
"homepage": "https://sharp.pixelplumbing.com",
|
"homepage": "https://sharp.pixelplumbing.com",
|
||||||
@ -15,7 +15,7 @@
|
|||||||
},
|
},
|
||||||
"preferUnplugged": true,
|
"preferUnplugged": true,
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@img/sharp-libvips-linux-x64": "1.1.0-rc3"
|
"@img/sharp-libvips-linux-x64": "1.1.0-rc4"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"lib"
|
"lib"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@img/sharp-linuxmusl-arm64",
|
"name": "@img/sharp-linuxmusl-arm64",
|
||||||
"version": "0.33.5",
|
"version": "0.34.0-rc.0",
|
||||||
"description": "Prebuilt sharp for use with Linux (musl) 64-bit ARM",
|
"description": "Prebuilt sharp for use with Linux (musl) 64-bit ARM",
|
||||||
"author": "Lovell Fuller <npm@lovell.info>",
|
"author": "Lovell Fuller <npm@lovell.info>",
|
||||||
"homepage": "https://sharp.pixelplumbing.com",
|
"homepage": "https://sharp.pixelplumbing.com",
|
||||||
@ -15,7 +15,7 @@
|
|||||||
},
|
},
|
||||||
"preferUnplugged": true,
|
"preferUnplugged": true,
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@img/sharp-libvips-linuxmusl-arm64": "1.1.0-rc3"
|
"@img/sharp-libvips-linuxmusl-arm64": "1.1.0-rc4"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"lib"
|
"lib"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@img/sharp-linuxmusl-x64",
|
"name": "@img/sharp-linuxmusl-x64",
|
||||||
"version": "0.33.5",
|
"version": "0.34.0-rc.0",
|
||||||
"description": "Prebuilt sharp for use with Linux (musl) x64",
|
"description": "Prebuilt sharp for use with Linux (musl) x64",
|
||||||
"author": "Lovell Fuller <npm@lovell.info>",
|
"author": "Lovell Fuller <npm@lovell.info>",
|
||||||
"homepage": "https://sharp.pixelplumbing.com",
|
"homepage": "https://sharp.pixelplumbing.com",
|
||||||
@ -15,7 +15,7 @@
|
|||||||
},
|
},
|
||||||
"preferUnplugged": true,
|
"preferUnplugged": true,
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@img/sharp-libvips-linuxmusl-x64": "1.1.0-rc3"
|
"@img/sharp-libvips-linuxmusl-x64": "1.1.0-rc4"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"lib"
|
"lib"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@img/sharp",
|
"name": "@img/sharp",
|
||||||
"version": "0.33.5",
|
"version": "0.34.0-rc.0",
|
||||||
"private": "true",
|
"private": "true",
|
||||||
"workspaces": [
|
"workspaces": [
|
||||||
"darwin-arm64",
|
"darwin-arm64",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@img/sharp-wasm32",
|
"name": "@img/sharp-wasm32",
|
||||||
"version": "0.33.5",
|
"version": "0.34.0-rc.0",
|
||||||
"description": "Prebuilt sharp for use with wasm32",
|
"description": "Prebuilt sharp for use with wasm32",
|
||||||
"author": "Lovell Fuller <npm@lovell.info>",
|
"author": "Lovell Fuller <npm@lovell.info>",
|
||||||
"homepage": "https://sharp.pixelplumbing.com",
|
"homepage": "https://sharp.pixelplumbing.com",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@img/sharp-win32-ia32",
|
"name": "@img/sharp-win32-ia32",
|
||||||
"version": "0.33.5",
|
"version": "0.34.0-rc.0",
|
||||||
"description": "Prebuilt sharp for use with Windows x86 (32-bit)",
|
"description": "Prebuilt sharp for use with Windows x86 (32-bit)",
|
||||||
"author": "Lovell Fuller <npm@lovell.info>",
|
"author": "Lovell Fuller <npm@lovell.info>",
|
||||||
"homepage": "https://sharp.pixelplumbing.com",
|
"homepage": "https://sharp.pixelplumbing.com",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@img/sharp-win32-x64",
|
"name": "@img/sharp-win32-x64",
|
||||||
"version": "0.33.5",
|
"version": "0.34.0-rc.0",
|
||||||
"description": "Prebuilt sharp for use with Windows x64",
|
"description": "Prebuilt sharp for use with Windows x64",
|
||||||
"author": "Lovell Fuller <npm@lovell.info>",
|
"author": "Lovell Fuller <npm@lovell.info>",
|
||||||
"homepage": "https://sharp.pixelplumbing.com",
|
"homepage": "https://sharp.pixelplumbing.com",
|
||||||
|
68
package.json
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "sharp",
|
"name": "sharp",
|
||||||
"description": "High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP, GIF, AVIF and TIFF images",
|
"description": "High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP, GIF, AVIF and TIFF images",
|
||||||
"version": "0.33.5",
|
"version": "0.34.0-rc.0",
|
||||||
"author": "Lovell Fuller <npm@lovell.info>",
|
"author": "Lovell Fuller <npm@lovell.info>",
|
||||||
"homepage": "https://sharp.pixelplumbing.com",
|
"homepage": "https://sharp.pixelplumbing.com",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
@ -102,9 +102,9 @@
|
|||||||
"test-types": "tsd",
|
"test-types": "tsd",
|
||||||
"package-from-local-build": "node npm/from-local-build",
|
"package-from-local-build": "node npm/from-local-build",
|
||||||
"package-from-github-release": "node npm/from-github-release",
|
"package-from-github-release": "node npm/from-github-release",
|
||||||
"docs-build": "node docs/build && node docs/search-index/build",
|
"docs-build": "node docs/build.mjs",
|
||||||
"docs-serve": "cd docs && npx serve",
|
"docs-serve": "cd docs && npm start",
|
||||||
"docs-publish": "cd docs && npx firebase-tools deploy --project pixelplumbing --only hosting:pixelplumbing-sharp"
|
"docs-publish": "cd docs && npm run build && npx firebase-tools deploy --project pixelplumbing --only hosting:pixelplumbing-sharp"
|
||||||
},
|
},
|
||||||
"type": "commonjs",
|
"type": "commonjs",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
@ -139,50 +139,50 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"color": "^4.2.3",
|
"color": "^4.2.3",
|
||||||
"detect-libc": "^2.0.3",
|
"detect-libc": "^2.0.3",
|
||||||
"semver": "^7.6.3"
|
"semver": "^7.7.1"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@img/sharp-darwin-arm64": "0.33.5",
|
"@img/sharp-darwin-arm64": "0.34.0-rc.0",
|
||||||
"@img/sharp-darwin-x64": "0.33.5",
|
"@img/sharp-darwin-x64": "0.34.0-rc.0",
|
||||||
"@img/sharp-libvips-darwin-arm64": "1.1.0-rc3",
|
"@img/sharp-libvips-darwin-arm64": "1.1.0-rc4",
|
||||||
"@img/sharp-libvips-darwin-x64": "1.1.0-rc3",
|
"@img/sharp-libvips-darwin-x64": "1.1.0-rc4",
|
||||||
"@img/sharp-libvips-linux-arm": "1.1.0-rc3.1",
|
"@img/sharp-libvips-linux-arm": "1.1.0-rc4.1",
|
||||||
"@img/sharp-libvips-linux-arm64": "1.1.0-rc3",
|
"@img/sharp-libvips-linux-arm64": "1.1.0-rc4",
|
||||||
"@img/sharp-libvips-linux-ppc64": "1.1.0-rc3",
|
"@img/sharp-libvips-linux-ppc64": "1.1.0-rc4",
|
||||||
"@img/sharp-libvips-linux-s390x": "1.1.0-rc3",
|
"@img/sharp-libvips-linux-s390x": "1.1.0-rc4",
|
||||||
"@img/sharp-libvips-linux-x64": "1.1.0-rc3",
|
"@img/sharp-libvips-linux-x64": "1.1.0-rc4",
|
||||||
"@img/sharp-libvips-linuxmusl-arm64": "1.1.0-rc3",
|
"@img/sharp-libvips-linuxmusl-arm64": "1.1.0-rc4",
|
||||||
"@img/sharp-libvips-linuxmusl-x64": "1.1.0-rc3",
|
"@img/sharp-libvips-linuxmusl-x64": "1.1.0-rc4",
|
||||||
"@img/sharp-linux-arm": "0.33.5",
|
"@img/sharp-linux-arm": "0.34.0-rc.0",
|
||||||
"@img/sharp-linux-arm64": "0.33.5",
|
"@img/sharp-linux-arm64": "0.34.0-rc.0",
|
||||||
"@img/sharp-linux-s390x": "0.33.5",
|
"@img/sharp-linux-s390x": "0.34.0-rc.0",
|
||||||
"@img/sharp-linux-x64": "0.33.5",
|
"@img/sharp-linux-x64": "0.34.0-rc.0",
|
||||||
"@img/sharp-linuxmusl-arm64": "0.33.5",
|
"@img/sharp-linuxmusl-arm64": "0.34.0-rc.0",
|
||||||
"@img/sharp-linuxmusl-x64": "0.33.5",
|
"@img/sharp-linuxmusl-x64": "0.34.0-rc.0",
|
||||||
"@img/sharp-wasm32": "0.33.5",
|
"@img/sharp-wasm32": "0.34.0-rc.0",
|
||||||
"@img/sharp-win32-ia32": "0.33.5",
|
"@img/sharp-win32-ia32": "0.34.0-rc.0",
|
||||||
"@img/sharp-win32-x64": "0.33.5"
|
"@img/sharp-win32-x64": "0.34.0-rc.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@emnapi/runtime": "^1.3.1",
|
"@emnapi/runtime": "^1.3.1",
|
||||||
"@img/sharp-libvips-dev": "1.1.0-rc3",
|
"@img/sharp-libvips-dev": "1.1.0-rc4",
|
||||||
"@img/sharp-libvips-dev-wasm32": "1.1.0-rc3",
|
"@img/sharp-libvips-dev-wasm32": "1.1.0-rc4",
|
||||||
"@img/sharp-libvips-win32-ia32": "1.1.0-rc3",
|
"@img/sharp-libvips-win32-ia32": "1.1.0-rc4",
|
||||||
"@img/sharp-libvips-win32-x64": "1.1.0-rc3",
|
"@img/sharp-libvips-win32-x64": "1.1.0-rc4",
|
||||||
"@types/node": "*",
|
"@types/node": "*",
|
||||||
"cc": "^3.0.1",
|
"cc": "^3.0.1",
|
||||||
"emnapi": "^1.3.1",
|
"emnapi": "^1.3.1",
|
||||||
"exif-reader": "^2.0.1",
|
"exif-reader": "^2.0.2",
|
||||||
"extract-zip": "^2.0.1",
|
"extract-zip": "^2.0.1",
|
||||||
"icc": "^3.0.0",
|
"icc": "^3.0.0",
|
||||||
"jsdoc-to-markdown": "^9.1.1",
|
"jsdoc-to-markdown": "^9.1.1",
|
||||||
"license-checker": "^25.0.1",
|
"license-checker": "^25.0.1",
|
||||||
"mocha": "^11.0.1",
|
"mocha": "^11.1.0",
|
||||||
"node-addon-api": "^8.3.0",
|
"node-addon-api": "^8.3.1",
|
||||||
"nyc": "^17.1.0",
|
"nyc": "^17.1.0",
|
||||||
"prebuild": "^13.0.1",
|
"prebuild": "^13.0.1",
|
||||||
"semistandard": "^17.0.0",
|
"semistandard": "^17.0.0",
|
||||||
"tar-fs": "^3.0.6",
|
"tar-fs": "^3.0.8",
|
||||||
"tsd": "^0.31.2"
|
"tsd": "^0.31.2"
|
||||||
},
|
},
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
@ -190,7 +190,7 @@
|
|||||||
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"libvips": ">=8.16.0"
|
"libvips": ">=8.16.1"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://opencollective.com/libvips"
|
"url": "https://opencollective.com/libvips"
|
||||||
|
@ -160,12 +160,34 @@ namespace sharp {
|
|||||||
descriptor->textWrap = AttrAsEnum<VipsTextWrap>(input, "textWrap", VIPS_TYPE_TEXT_WRAP);
|
descriptor->textWrap = AttrAsEnum<VipsTextWrap>(input, "textWrap", VIPS_TYPE_TEXT_WRAP);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Join images together
|
||||||
|
if (HasAttr(input, "joinAnimated")) {
|
||||||
|
descriptor->joinAnimated = AttrAsBool(input, "joinAnimated");
|
||||||
|
}
|
||||||
|
if (HasAttr(input, "joinAcross")) {
|
||||||
|
descriptor->joinAcross = AttrAsUint32(input, "joinAcross");
|
||||||
|
}
|
||||||
|
if (HasAttr(input, "joinShim")) {
|
||||||
|
descriptor->joinShim = AttrAsUint32(input, "joinShim");
|
||||||
|
}
|
||||||
|
if (HasAttr(input, "joinBackground")) {
|
||||||
|
descriptor->joinBackground = AttrAsVectorOfDouble(input, "joinBackground");
|
||||||
|
}
|
||||||
|
if (HasAttr(input, "joinHalign")) {
|
||||||
|
descriptor->joinHalign = AttrAsEnum<VipsAlign>(input, "joinHalign", VIPS_TYPE_ALIGN);
|
||||||
|
}
|
||||||
|
if (HasAttr(input, "joinValign")) {
|
||||||
|
descriptor->joinValign = AttrAsEnum<VipsAlign>(input, "joinValign", VIPS_TYPE_ALIGN);
|
||||||
|
}
|
||||||
// Limit input images to a given number of pixels, where pixels = width * height
|
// Limit input images to a given number of pixels, where pixels = width * height
|
||||||
descriptor->limitInputPixels = static_cast<uint64_t>(AttrAsInt64(input, "limitInputPixels"));
|
descriptor->limitInputPixels = static_cast<uint64_t>(AttrAsInt64(input, "limitInputPixels"));
|
||||||
// Allow switch from random to sequential access
|
if (HasAttr(input, "access")) {
|
||||||
descriptor->access = AttrAsBool(input, "sequentialRead") ? VIPS_ACCESS_SEQUENTIAL : VIPS_ACCESS_RANDOM;
|
descriptor->access = AttrAsBool(input, "sequentialRead") ? VIPS_ACCESS_SEQUENTIAL : VIPS_ACCESS_RANDOM;
|
||||||
|
}
|
||||||
// Remove safety features and allow unlimited input
|
// Remove safety features and allow unlimited input
|
||||||
descriptor->unlimited = AttrAsBool(input, "unlimited");
|
descriptor->unlimited = AttrAsBool(input, "unlimited");
|
||||||
|
// Use the EXIF orientation to auto orient the image
|
||||||
|
descriptor->autoOrient = AttrAsBool(input, "autoOrient");
|
||||||
return descriptor;
|
return descriptor;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -248,6 +270,7 @@ namespace sharp {
|
|||||||
case ImageType::FITS: id = "fits"; break;
|
case ImageType::FITS: id = "fits"; break;
|
||||||
case ImageType::EXR: id = "exr"; break;
|
case ImageType::EXR: id = "exr"; break;
|
||||||
case ImageType::JXL: id = "jxl"; break;
|
case ImageType::JXL: id = "jxl"; break;
|
||||||
|
case ImageType::RAD: id = "rad"; break;
|
||||||
case ImageType::VIPS: id = "vips"; break;
|
case ImageType::VIPS: id = "vips"; break;
|
||||||
case ImageType::RAW: id = "raw"; break;
|
case ImageType::RAW: id = "raw"; break;
|
||||||
case ImageType::UNKNOWN: id = "unknown"; break;
|
case ImageType::UNKNOWN: id = "unknown"; break;
|
||||||
@ -294,6 +317,8 @@ namespace sharp {
|
|||||||
{ "VipsForeignLoadOpenexr", ImageType::EXR },
|
{ "VipsForeignLoadOpenexr", ImageType::EXR },
|
||||||
{ "VipsForeignLoadJxlFile", ImageType::JXL },
|
{ "VipsForeignLoadJxlFile", ImageType::JXL },
|
||||||
{ "VipsForeignLoadJxlBuffer", ImageType::JXL },
|
{ "VipsForeignLoadJxlBuffer", ImageType::JXL },
|
||||||
|
{ "VipsForeignLoadRadFile", ImageType::RAD },
|
||||||
|
{ "VipsForeignLoadRadBuffer", ImageType::RAD },
|
||||||
{ "VipsForeignLoadVips", ImageType::VIPS },
|
{ "VipsForeignLoadVips", ImageType::VIPS },
|
||||||
{ "VipsForeignLoadVipsFile", ImageType::VIPS },
|
{ "VipsForeignLoadVipsFile", ImageType::VIPS },
|
||||||
{ "VipsForeignLoadRaw", ImageType::RAW }
|
{ "VipsForeignLoadRaw", ImageType::RAW }
|
||||||
@ -570,14 +595,6 @@ namespace sharp {
|
|||||||
return image;
|
return image;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
Does this image have an alpha channel?
|
|
||||||
Uses colour space interpretation with number of channels to guess this.
|
|
||||||
*/
|
|
||||||
bool HasAlpha(VImage image) {
|
|
||||||
return image.has_alpha();
|
|
||||||
}
|
|
||||||
|
|
||||||
static void* RemoveExifCallback(VipsImage *image, char const *field, GValue *value, void *data) {
|
static void* RemoveExifCallback(VipsImage *image, char const *field, GValue *value, void *data) {
|
||||||
std::vector<std::string> *fieldNames = static_cast<std::vector<std::string> *>(data);
|
std::vector<std::string> *fieldNames = static_cast<std::vector<std::string> *>(data);
|
||||||
std::string fieldName(field);
|
std::string fieldName(field);
|
||||||
@ -986,13 +1003,13 @@ namespace sharp {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
// Add alpha channel to alphaColour colour
|
// Add alpha channel to alphaColour colour
|
||||||
if (colour[3] < 255.0 || HasAlpha(image)) {
|
if (colour[3] < 255.0 || image.has_alpha()) {
|
||||||
alphaColour.push_back(colour[3] * multiplier);
|
alphaColour.push_back(colour[3] * multiplier);
|
||||||
}
|
}
|
||||||
// Ensure alphaColour colour uses correct colourspace
|
// Ensure alphaColour colour uses correct colourspace
|
||||||
alphaColour = sharp::GetRgbaAsColourspace(alphaColour, image.interpretation(), premultiply);
|
alphaColour = sharp::GetRgbaAsColourspace(alphaColour, image.interpretation(), premultiply);
|
||||||
// Add non-transparent alpha channel, if required
|
// Add non-transparent alpha channel, if required
|
||||||
if (colour[3] < 255.0 && !HasAlpha(image)) {
|
if (colour[3] < 255.0 && !image.has_alpha()) {
|
||||||
image = image.bandjoin(
|
image = image.bandjoin(
|
||||||
VImage::new_matrix(image.width(), image.height()).new_from_image(255 * multiplier).cast(image.format()));
|
VImage::new_matrix(image.width(), image.height()).new_from_image(255 * multiplier).cast(image.format()));
|
||||||
}
|
}
|
||||||
@ -1000,10 +1017,10 @@ namespace sharp {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Removes alpha channel, if any.
|
Removes alpha channels, if any.
|
||||||
*/
|
*/
|
||||||
VImage RemoveAlpha(VImage image) {
|
VImage RemoveAlpha(VImage image) {
|
||||||
if (HasAlpha(image)) {
|
while (image.bands() > 1 && image.has_alpha()) {
|
||||||
image = image.extract_band(0, VImage::option()->set("n", image.bands() - 1));
|
image = image.extract_band(0, VImage::option()->set("n", image.bands() - 1));
|
||||||
}
|
}
|
||||||
return image;
|
return image;
|
||||||
@ -1013,7 +1030,7 @@ namespace sharp {
|
|||||||
Ensures alpha channel, if missing.
|
Ensures alpha channel, if missing.
|
||||||
*/
|
*/
|
||||||
VImage EnsureAlpha(VImage image, double const value) {
|
VImage EnsureAlpha(VImage image, double const value) {
|
||||||
if (!HasAlpha(image)) {
|
if (!image.has_alpha()) {
|
||||||
std::vector<double> alpha;
|
std::vector<double> alpha;
|
||||||
alpha.push_back(value * sharp::MaximumImageAlpha(image.interpretation()));
|
alpha.push_back(value * sharp::MaximumImageAlpha(image.interpretation()));
|
||||||
image = image.bandjoin_const(alpha);
|
image = image.bandjoin_const(alpha);
|
||||||
|
29
src/common.h
@ -16,8 +16,8 @@
|
|||||||
|
|
||||||
#if (VIPS_MAJOR_VERSION < 8) || \
|
#if (VIPS_MAJOR_VERSION < 8) || \
|
||||||
(VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION < 16) || \
|
(VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION < 16) || \
|
||||||
(VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION == 16 && VIPS_MICRO_VERSION < 0)
|
(VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION == 16 && VIPS_MICRO_VERSION < 1)
|
||||||
#error "libvips version 8.16.0+ is required - please see https://sharp.pixelplumbing.com/install"
|
#error "libvips version 8.16.1+ is required - please see https://sharp.pixelplumbing.com/install"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__has_include)
|
#if defined(__has_include)
|
||||||
@ -33,6 +33,7 @@ namespace sharp {
|
|||||||
struct InputDescriptor { // NOLINT(runtime/indentation_namespace)
|
struct InputDescriptor { // NOLINT(runtime/indentation_namespace)
|
||||||
std::string name;
|
std::string name;
|
||||||
std::string file;
|
std::string file;
|
||||||
|
bool autoOrient;
|
||||||
char *buffer;
|
char *buffer;
|
||||||
VipsFailOn failOn;
|
VipsFailOn failOn;
|
||||||
uint64_t limitInputPixels;
|
uint64_t limitInputPixels;
|
||||||
@ -70,14 +71,21 @@ namespace sharp {
|
|||||||
int textSpacing;
|
int textSpacing;
|
||||||
VipsTextWrap textWrap;
|
VipsTextWrap textWrap;
|
||||||
int textAutofitDpi;
|
int textAutofitDpi;
|
||||||
|
bool joinAnimated;
|
||||||
|
int joinAcross;
|
||||||
|
int joinShim;
|
||||||
|
std::vector<double> joinBackground;
|
||||||
|
VipsAlign joinHalign;
|
||||||
|
VipsAlign joinValign;
|
||||||
std::vector<double> pdfBackground;
|
std::vector<double> pdfBackground;
|
||||||
|
|
||||||
InputDescriptor():
|
InputDescriptor():
|
||||||
|
autoOrient(false),
|
||||||
buffer(nullptr),
|
buffer(nullptr),
|
||||||
failOn(VIPS_FAIL_ON_WARNING),
|
failOn(VIPS_FAIL_ON_WARNING),
|
||||||
limitInputPixels(0x3FFF * 0x3FFF),
|
limitInputPixels(0x3FFF * 0x3FFF),
|
||||||
unlimited(false),
|
unlimited(false),
|
||||||
access(VIPS_ACCESS_RANDOM),
|
access(VIPS_ACCESS_SEQUENTIAL),
|
||||||
bufferLength(0),
|
bufferLength(0),
|
||||||
isBuffer(false),
|
isBuffer(false),
|
||||||
density(72.0),
|
density(72.0),
|
||||||
@ -106,6 +114,12 @@ namespace sharp {
|
|||||||
textSpacing(0),
|
textSpacing(0),
|
||||||
textWrap(VIPS_TEXT_WRAP_WORD),
|
textWrap(VIPS_TEXT_WRAP_WORD),
|
||||||
textAutofitDpi(0),
|
textAutofitDpi(0),
|
||||||
|
joinAnimated(false),
|
||||||
|
joinAcross(1),
|
||||||
|
joinShim(0),
|
||||||
|
joinBackground{ 0.0, 0.0, 0.0, 255.0 },
|
||||||
|
joinHalign(VIPS_ALIGN_LOW),
|
||||||
|
joinValign(VIPS_ALIGN_LOW),
|
||||||
pdfBackground{ 255.0, 255.0, 255.0, 255.0 } {}
|
pdfBackground{ 255.0, 255.0, 255.0, 255.0 } {}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -145,6 +159,7 @@ namespace sharp {
|
|||||||
FITS,
|
FITS,
|
||||||
EXR,
|
EXR,
|
||||||
JXL,
|
JXL,
|
||||||
|
RAD,
|
||||||
VIPS,
|
VIPS,
|
||||||
RAW,
|
RAW,
|
||||||
UNKNOWN,
|
UNKNOWN,
|
||||||
@ -230,12 +245,6 @@ namespace sharp {
|
|||||||
*/
|
*/
|
||||||
VImage SetProfile(VImage image, std::pair<char*, size_t> icc);
|
VImage SetProfile(VImage image, std::pair<char*, size_t> icc);
|
||||||
|
|
||||||
/*
|
|
||||||
Does this image have an alpha channel?
|
|
||||||
Uses colour space interpretation with number of channels to guess this.
|
|
||||||
*/
|
|
||||||
bool HasAlpha(VImage image);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Remove all EXIF-related image fields.
|
Remove all EXIF-related image fields.
|
||||||
*/
|
*/
|
||||||
@ -366,7 +375,7 @@ namespace sharp {
|
|||||||
std::tuple<VImage, std::vector<double>> ApplyAlpha(VImage image, std::vector<double> colour, bool premultiply);
|
std::tuple<VImage, std::vector<double>> ApplyAlpha(VImage image, std::vector<double> colour, bool premultiply);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Removes alpha channel, if any.
|
Removes alpha channels, if any.
|
||||||
*/
|
*/
|
||||||
VImage RemoveAlpha(VImage image);
|
VImage RemoveAlpha(VImage image);
|
||||||
|
|
||||||
|
@ -95,7 +95,7 @@ class MetadataWorker : public Napi::AsyncWorker {
|
|||||||
baton->background = image.get_array_double("background");
|
baton->background = image.get_array_double("background");
|
||||||
}
|
}
|
||||||
// Derived attributes
|
// Derived attributes
|
||||||
baton->hasAlpha = sharp::HasAlpha(image);
|
baton->hasAlpha = image.has_alpha();
|
||||||
baton->orientation = sharp::ExifOrientation(image);
|
baton->orientation = sharp::ExifOrientation(image);
|
||||||
// EXIF
|
// EXIF
|
||||||
if (image.get_typeof(VIPS_META_EXIF_NAME) == VIPS_TYPE_BLOB) {
|
if (image.get_typeof(VIPS_META_EXIF_NAME) == VIPS_TYPE_BLOB) {
|
||||||
@ -242,6 +242,15 @@ class MetadataWorker : public Napi::AsyncWorker {
|
|||||||
if (baton->orientation > 0) {
|
if (baton->orientation > 0) {
|
||||||
info.Set("orientation", baton->orientation);
|
info.Set("orientation", baton->orientation);
|
||||||
}
|
}
|
||||||
|
Napi::Object autoOrient = Napi::Object::New(env);
|
||||||
|
info.Set("autoOrient", autoOrient);
|
||||||
|
if (baton->orientation >= 5) {
|
||||||
|
autoOrient.Set("width", baton->height);
|
||||||
|
autoOrient.Set("height", baton->width);
|
||||||
|
} else {
|
||||||
|
autoOrient.Set("width", baton->width);
|
||||||
|
autoOrient.Set("height", baton->height);
|
||||||
|
}
|
||||||
if (baton->exifLength > 0) {
|
if (baton->exifLength > 0) {
|
||||||
info.Set("exif", Napi::Buffer<char>::NewOrCopy(env, baton->exif, baton->exifLength, sharp::FreeCallback));
|
info.Set("exif", Napi::Buffer<char>::NewOrCopy(env, baton->exif, baton->exifLength, sharp::FreeCallback));
|
||||||
}
|
}
|
||||||
|
@ -40,7 +40,7 @@ namespace sharp {
|
|||||||
typeBeforeTint = VIPS_INTERPRETATION_sRGB;
|
typeBeforeTint = VIPS_INTERPRETATION_sRGB;
|
||||||
}
|
}
|
||||||
// Apply lookup table
|
// Apply lookup table
|
||||||
if (HasAlpha(image)) {
|
if (image.has_alpha()) {
|
||||||
VImage alpha = image[image.bands() - 1];
|
VImage alpha = image[image.bands() - 1];
|
||||||
image = RemoveAlpha(image)
|
image = RemoveAlpha(image)
|
||||||
.colourspace(VIPS_INTERPRETATION_B_W)
|
.colourspace(VIPS_INTERPRETATION_B_W)
|
||||||
@ -83,7 +83,7 @@ namespace sharp {
|
|||||||
// Scale luminance, join to chroma, convert back to original colourspace
|
// Scale luminance, join to chroma, convert back to original colourspace
|
||||||
VImage normalized = luminance.linear(f, a).bandjoin(chroma).colourspace(typeBeforeNormalize);
|
VImage normalized = luminance.linear(f, a).bandjoin(chroma).colourspace(typeBeforeNormalize);
|
||||||
// Attach original alpha channel, if any
|
// Attach original alpha channel, if any
|
||||||
if (HasAlpha(image)) {
|
if (image.has_alpha()) {
|
||||||
// Extract original alpha channel
|
// Extract original alpha channel
|
||||||
VImage alpha = image[image.bands() - 1];
|
VImage alpha = image[image.bands() - 1];
|
||||||
// Join alpha channel to normalised image
|
// Join alpha channel to normalised image
|
||||||
@ -106,7 +106,7 @@ namespace sharp {
|
|||||||
* Gamma encoding/decoding
|
* Gamma encoding/decoding
|
||||||
*/
|
*/
|
||||||
VImage Gamma(VImage image, double const exponent) {
|
VImage Gamma(VImage image, double const exponent) {
|
||||||
if (HasAlpha(image)) {
|
if (image.has_alpha()) {
|
||||||
// Separate alpha channel
|
// Separate alpha channel
|
||||||
VImage alpha = image[image.bands() - 1];
|
VImage alpha = image[image.bands() - 1];
|
||||||
return RemoveAlpha(image).gamma(VImage::option()->set("exponent", exponent)).bandjoin(alpha);
|
return RemoveAlpha(image).gamma(VImage::option()->set("exponent", exponent)).bandjoin(alpha);
|
||||||
@ -132,7 +132,7 @@ namespace sharp {
|
|||||||
* Produce the "negative" of the image.
|
* Produce the "negative" of the image.
|
||||||
*/
|
*/
|
||||||
VImage Negate(VImage image, bool const negateAlpha) {
|
VImage Negate(VImage image, bool const negateAlpha) {
|
||||||
if (HasAlpha(image) && !negateAlpha) {
|
if (image.has_alpha() && !negateAlpha) {
|
||||||
// Separate alpha channel
|
// Separate alpha channel
|
||||||
VImage alpha = image[image.bands() - 1];
|
VImage alpha = image[image.bands() - 1];
|
||||||
return RemoveAlpha(image).invert().bandjoin(alpha);
|
return RemoveAlpha(image).invert().bandjoin(alpha);
|
||||||
@ -205,7 +205,7 @@ namespace sharp {
|
|||||||
VImage Modulate(VImage image, double const brightness, double const saturation,
|
VImage Modulate(VImage image, double const brightness, double const saturation,
|
||||||
int const hue, double const lightness) {
|
int const hue, double const lightness) {
|
||||||
VipsInterpretation colourspaceBeforeModulate = image.interpretation();
|
VipsInterpretation colourspaceBeforeModulate = image.interpretation();
|
||||||
if (HasAlpha(image)) {
|
if (image.has_alpha()) {
|
||||||
// Separate alpha channel
|
// Separate alpha channel
|
||||||
VImage alpha = image[image.bands() - 1];
|
VImage alpha = image[image.bands() - 1];
|
||||||
return RemoveAlpha(image)
|
return RemoveAlpha(image)
|
||||||
@ -297,7 +297,7 @@ namespace sharp {
|
|||||||
threshold *= 256.0;
|
threshold *= 256.0;
|
||||||
}
|
}
|
||||||
std::vector<double> backgroundAlpha({ background.back() });
|
std::vector<double> backgroundAlpha({ background.back() });
|
||||||
if (HasAlpha(image)) {
|
if (image.has_alpha()) {
|
||||||
background.pop_back();
|
background.pop_back();
|
||||||
} else {
|
} else {
|
||||||
background.resize(image.bands());
|
background.resize(image.bands());
|
||||||
@ -307,7 +307,7 @@ namespace sharp {
|
|||||||
->set("background", background)
|
->set("background", background)
|
||||||
->set("line_art", lineArt)
|
->set("line_art", lineArt)
|
||||||
->set("threshold", threshold));
|
->set("threshold", threshold));
|
||||||
if (HasAlpha(image)) {
|
if (image.has_alpha()) {
|
||||||
// Search alpha channel (A)
|
// Search alpha channel (A)
|
||||||
int leftA, topA, widthA, heightA;
|
int leftA, topA, widthA, heightA;
|
||||||
VImage alpha = image[image.bands() - 1];
|
VImage alpha = image[image.bands() - 1];
|
||||||
@ -344,7 +344,7 @@ namespace sharp {
|
|||||||
throw VError("Band expansion using linear is unsupported");
|
throw VError("Band expansion using linear is unsupported");
|
||||||
}
|
}
|
||||||
bool const uchar = !Is16Bit(image.interpretation());
|
bool const uchar = !Is16Bit(image.interpretation());
|
||||||
if (HasAlpha(image) && a.size() != bands && (a.size() == 1 || a.size() == bands - 1 || bands - 1 == 1)) {
|
if (image.has_alpha() && a.size() != bands && (a.size() == 1 || a.size() == bands - 1 || bands - 1 == 1)) {
|
||||||
// Separate alpha channel
|
// Separate alpha channel
|
||||||
VImage alpha = image[bands - 1];
|
VImage alpha = image[bands - 1];
|
||||||
return RemoveAlpha(image).linear(a, b, VImage::option()->set("uchar", uchar)).bandjoin(alpha);
|
return RemoveAlpha(image).linear(a, b, VImage::option()->set("uchar", uchar)).bandjoin(alpha);
|
||||||
@ -357,7 +357,7 @@ namespace sharp {
|
|||||||
* Unflatten
|
* Unflatten
|
||||||
*/
|
*/
|
||||||
VImage Unflatten(VImage image) {
|
VImage Unflatten(VImage image) {
|
||||||
if (HasAlpha(image)) {
|
if (image.has_alpha()) {
|
||||||
VImage alpha = image[image.bands() - 1];
|
VImage alpha = image[image.bands() - 1];
|
||||||
VImage noAlpha = RemoveAlpha(image);
|
VImage noAlpha = RemoveAlpha(image);
|
||||||
return noAlpha.bandjoin(alpha & (noAlpha.colourspace(VIPS_INTERPRETATION_B_W) < 255));
|
return noAlpha.bandjoin(alpha & (noAlpha.colourspace(VIPS_INTERPRETATION_B_W) < 255));
|
||||||
|
101
src/pipeline.cc
@ -42,7 +42,39 @@ class PipelineWorker : public Napi::AsyncWorker {
|
|||||||
// Open input
|
// Open input
|
||||||
vips::VImage image;
|
vips::VImage image;
|
||||||
sharp::ImageType inputImageType;
|
sharp::ImageType inputImageType;
|
||||||
|
if (baton->join.empty()) {
|
||||||
std::tie(image, inputImageType) = sharp::OpenInput(baton->input);
|
std::tie(image, inputImageType) = sharp::OpenInput(baton->input);
|
||||||
|
} else {
|
||||||
|
std::vector<VImage> images;
|
||||||
|
bool hasAlpha = false;
|
||||||
|
for (auto &join : baton->join) {
|
||||||
|
std::tie(image, inputImageType) = sharp::OpenInput(join);
|
||||||
|
image = sharp::EnsureColourspace(image, baton->colourspacePipeline);
|
||||||
|
images.push_back(image);
|
||||||
|
hasAlpha |= image.has_alpha();
|
||||||
|
}
|
||||||
|
if (hasAlpha) {
|
||||||
|
for (auto &image : images) {
|
||||||
|
if (!image.has_alpha()) {
|
||||||
|
image = sharp::EnsureAlpha(image, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
baton->input->joinBackground.pop_back();
|
||||||
|
}
|
||||||
|
inputImageType = sharp::ImageType::PNG;
|
||||||
|
image = VImage::arrayjoin(images, VImage::option()
|
||||||
|
->set("across", baton->input->joinAcross)
|
||||||
|
->set("shim", baton->input->joinShim)
|
||||||
|
->set("background", baton->input->joinBackground)
|
||||||
|
->set("halign", baton->input->joinHalign)
|
||||||
|
->set("valign", baton->input->joinValign));
|
||||||
|
if (baton->input->joinAnimated) {
|
||||||
|
image = image.copy();
|
||||||
|
image.set(VIPS_META_N_PAGES, static_cast<int>(images.size()));
|
||||||
|
image.set(VIPS_META_PAGE_HEIGHT, static_cast<int>(image.height() / images.size()));
|
||||||
|
}
|
||||||
|
}
|
||||||
VipsAccess access = baton->input->access;
|
VipsAccess access = baton->input->access;
|
||||||
image = sharp::EnsureColourspace(image, baton->colourspacePipeline);
|
image = sharp::EnsureColourspace(image, baton->colourspacePipeline);
|
||||||
|
|
||||||
@ -63,14 +95,14 @@ class PipelineWorker : public Napi::AsyncWorker {
|
|||||||
bool autoFlip = false;
|
bool autoFlip = false;
|
||||||
bool autoFlop = false;
|
bool autoFlop = false;
|
||||||
|
|
||||||
if (baton->useExifOrientation) {
|
if (baton->input->autoOrient) {
|
||||||
// Rotate and flip image according to Exif orientation
|
// Rotate and flip image according to Exif orientation
|
||||||
std::tie(autoRotation, autoFlip, autoFlop) = CalculateExifRotationAndFlip(sharp::ExifOrientation(image));
|
std::tie(autoRotation, autoFlip, autoFlop) = CalculateExifRotationAndFlip(sharp::ExifOrientation(image));
|
||||||
image = sharp::RemoveExifOrientation(image);
|
image = sharp::RemoveExifOrientation(image);
|
||||||
} else {
|
|
||||||
rotation = CalculateAngleRotation(baton->angle);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
rotation = CalculateAngleRotation(baton->angle);
|
||||||
|
|
||||||
// Rotate pre-extract
|
// Rotate pre-extract
|
||||||
bool const shouldRotateBefore = baton->rotateBeforePreExtract &&
|
bool const shouldRotateBefore = baton->rotateBeforePreExtract &&
|
||||||
(rotation != VIPS_ANGLE_D0 || autoRotation != VIPS_ANGLE_D0 ||
|
(rotation != VIPS_ANGLE_D0 || autoRotation != VIPS_ANGLE_D0 ||
|
||||||
@ -92,18 +124,14 @@ class PipelineWorker : public Napi::AsyncWorker {
|
|||||||
image = image.rot(autoRotation);
|
image = image.rot(autoRotation);
|
||||||
autoRotation = VIPS_ANGLE_D0;
|
autoRotation = VIPS_ANGLE_D0;
|
||||||
}
|
}
|
||||||
if (autoFlip) {
|
if (autoFlip != baton->flip) {
|
||||||
image = image.flip(VIPS_DIRECTION_VERTICAL);
|
image = image.flip(VIPS_DIRECTION_VERTICAL);
|
||||||
autoFlip = false;
|
autoFlip = false;
|
||||||
} else if (baton->flip) {
|
|
||||||
image = image.flip(VIPS_DIRECTION_VERTICAL);
|
|
||||||
baton->flip = false;
|
baton->flip = false;
|
||||||
}
|
}
|
||||||
if (autoFlop) {
|
if (autoFlop != baton->flop) {
|
||||||
image = image.flip(VIPS_DIRECTION_HORIZONTAL);
|
image = image.flip(VIPS_DIRECTION_HORIZONTAL);
|
||||||
autoFlop = false;
|
autoFlop = false;
|
||||||
} else if (baton->flop) {
|
|
||||||
image = image.flip(VIPS_DIRECTION_HORIZONTAL);
|
|
||||||
baton->flop = false;
|
baton->flop = false;
|
||||||
}
|
}
|
||||||
if (rotation != VIPS_ANGLE_D0) {
|
if (rotation != VIPS_ANGLE_D0) {
|
||||||
@ -344,7 +372,7 @@ class PipelineWorker : public Napi::AsyncWorker {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Flatten image to remove alpha channel
|
// Flatten image to remove alpha channel
|
||||||
if (baton->flatten && sharp::HasAlpha(image)) {
|
if (baton->flatten && image.has_alpha()) {
|
||||||
image = sharp::Flatten(image, baton->flattenBackground);
|
image = sharp::Flatten(image, baton->flattenBackground);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -364,12 +392,12 @@ class PipelineWorker : public Napi::AsyncWorker {
|
|||||||
bool const shouldSharpen = baton->sharpenSigma != 0.0;
|
bool const shouldSharpen = baton->sharpenSigma != 0.0;
|
||||||
bool const shouldComposite = !baton->composite.empty();
|
bool const shouldComposite = !baton->composite.empty();
|
||||||
|
|
||||||
if (shouldComposite && !sharp::HasAlpha(image)) {
|
if (shouldComposite && !image.has_alpha()) {
|
||||||
image = sharp::EnsureAlpha(image, 1);
|
image = sharp::EnsureAlpha(image, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
VipsBandFormat premultiplyFormat = image.format();
|
VipsBandFormat premultiplyFormat = image.format();
|
||||||
bool const shouldPremultiplyAlpha = sharp::HasAlpha(image) &&
|
bool const shouldPremultiplyAlpha = image.has_alpha() &&
|
||||||
(shouldResize || shouldBlur || shouldConv || shouldSharpen);
|
(shouldResize || shouldBlur || shouldConv || shouldSharpen);
|
||||||
|
|
||||||
if (shouldPremultiplyAlpha) {
|
if (shouldPremultiplyAlpha) {
|
||||||
@ -396,11 +424,11 @@ class PipelineWorker : public Napi::AsyncWorker {
|
|||||||
image = image.rot(autoRotation);
|
image = image.rot(autoRotation);
|
||||||
}
|
}
|
||||||
// Mirror vertically (up-down) about the x-axis
|
// Mirror vertically (up-down) about the x-axis
|
||||||
if (baton->flip || autoFlip) {
|
if (baton->flip != autoFlip) {
|
||||||
image = image.flip(VIPS_DIRECTION_VERTICAL);
|
image = image.flip(VIPS_DIRECTION_VERTICAL);
|
||||||
}
|
}
|
||||||
// Mirror horizontally (left-right) about the y-axis
|
// Mirror horizontally (left-right) about the y-axis
|
||||||
if (baton->flop || autoFlop) {
|
if (baton->flop != autoFlop) {
|
||||||
image = image.flip(VIPS_DIRECTION_HORIZONTAL);
|
image = image.flip(VIPS_DIRECTION_HORIZONTAL);
|
||||||
}
|
}
|
||||||
// Rotate post-extract 90-angle
|
// Rotate post-extract 90-angle
|
||||||
@ -631,6 +659,30 @@ class PipelineWorker : public Napi::AsyncWorker {
|
|||||||
composite->input->access = access;
|
composite->input->access = access;
|
||||||
std::tie(compositeImage, compositeImageType) = sharp::OpenInput(composite->input);
|
std::tie(compositeImage, compositeImageType) = sharp::OpenInput(composite->input);
|
||||||
compositeImage = sharp::EnsureColourspace(compositeImage, baton->colourspacePipeline);
|
compositeImage = sharp::EnsureColourspace(compositeImage, baton->colourspacePipeline);
|
||||||
|
|
||||||
|
if (composite->input->autoOrient) {
|
||||||
|
// Respect EXIF Orientation
|
||||||
|
VipsAngle compositeAutoRotation = VIPS_ANGLE_D0;
|
||||||
|
bool compositeAutoFlip = false;
|
||||||
|
bool compositeAutoFlop = false;
|
||||||
|
std::tie(compositeAutoRotation, compositeAutoFlip, compositeAutoFlop) =
|
||||||
|
CalculateExifRotationAndFlip(sharp::ExifOrientation(compositeImage));
|
||||||
|
|
||||||
|
compositeImage = sharp::RemoveExifOrientation(compositeImage);
|
||||||
|
compositeImage = sharp::StaySequential(compositeImage,
|
||||||
|
compositeAutoRotation != VIPS_ANGLE_D0 || compositeAutoFlip);
|
||||||
|
|
||||||
|
if (compositeAutoRotation != VIPS_ANGLE_D0) {
|
||||||
|
compositeImage = compositeImage.rot(compositeAutoRotation);
|
||||||
|
}
|
||||||
|
if (compositeAutoFlip) {
|
||||||
|
compositeImage = compositeImage.flip(VIPS_DIRECTION_VERTICAL);
|
||||||
|
}
|
||||||
|
if (compositeAutoFlop) {
|
||||||
|
compositeImage = compositeImage.flip(VIPS_DIRECTION_HORIZONTAL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Verify within current dimensions
|
// Verify within current dimensions
|
||||||
if (compositeImage.width() > image.width() || compositeImage.height() > image.height()) {
|
if (compositeImage.width() > image.width() || compositeImage.height() > image.height()) {
|
||||||
throw vips::VError("Image to composite must have same dimensions or smaller");
|
throw vips::VError("Image to composite must have same dimensions or smaller");
|
||||||
@ -673,9 +725,7 @@ class PipelineWorker : public Napi::AsyncWorker {
|
|||||||
}
|
}
|
||||||
// Ensure image to composite is sRGB with unpremultiplied alpha
|
// Ensure image to composite is sRGB with unpremultiplied alpha
|
||||||
compositeImage = compositeImage.colourspace(VIPS_INTERPRETATION_sRGB);
|
compositeImage = compositeImage.colourspace(VIPS_INTERPRETATION_sRGB);
|
||||||
if (!sharp::HasAlpha(compositeImage)) {
|
|
||||||
compositeImage = sharp::EnsureAlpha(compositeImage, 1);
|
compositeImage = sharp::EnsureAlpha(compositeImage, 1);
|
||||||
}
|
|
||||||
if (composite->premultiplied) compositeImage = compositeImage.unpremultiply();
|
if (composite->premultiplied) compositeImage = compositeImage.unpremultiply();
|
||||||
// Calculate position
|
// Calculate position
|
||||||
int left;
|
int left;
|
||||||
@ -776,7 +826,7 @@ class PipelineWorker : public Napi::AsyncWorker {
|
|||||||
// Extract channel
|
// Extract channel
|
||||||
if (baton->extractChannel > -1) {
|
if (baton->extractChannel > -1) {
|
||||||
if (baton->extractChannel >= image.bands()) {
|
if (baton->extractChannel >= image.bands()) {
|
||||||
if (baton->extractChannel == 3 && sharp::HasAlpha(image)) {
|
if (baton->extractChannel == 3 && image.has_alpha()) {
|
||||||
baton->extractChannel = image.bands() - 1;
|
baton->extractChannel = image.bands() - 1;
|
||||||
} else {
|
} else {
|
||||||
(baton->err)
|
(baton->err)
|
||||||
@ -1000,7 +1050,7 @@ class PipelineWorker : public Napi::AsyncWorker {
|
|||||||
} else if (baton->formatOut == "dz") {
|
} else if (baton->formatOut == "dz") {
|
||||||
// Write DZ to buffer
|
// Write DZ to buffer
|
||||||
baton->tileContainer = VIPS_FOREIGN_DZ_CONTAINER_ZIP;
|
baton->tileContainer = VIPS_FOREIGN_DZ_CONTAINER_ZIP;
|
||||||
if (!sharp::HasAlpha(image)) {
|
if (!image.has_alpha()) {
|
||||||
baton->tileBackground.pop_back();
|
baton->tileBackground.pop_back();
|
||||||
}
|
}
|
||||||
image = sharp::StaySequential(image, baton->tileAngle != 0);
|
image = sharp::StaySequential(image, baton->tileAngle != 0);
|
||||||
@ -1049,6 +1099,7 @@ class PipelineWorker : public Napi::AsyncWorker {
|
|||||||
// Unsupported output format
|
// Unsupported output format
|
||||||
(baton->err).append("Unsupported output format ");
|
(baton->err).append("Unsupported output format ");
|
||||||
if (baton->formatOut == "input") {
|
if (baton->formatOut == "input") {
|
||||||
|
(baton->err).append("when trying to match input format of ");
|
||||||
(baton->err).append(ImageTypeId(inputImageType));
|
(baton->err).append(ImageTypeId(inputImageType));
|
||||||
} else {
|
} else {
|
||||||
(baton->err).append(baton->formatOut);
|
(baton->err).append(baton->formatOut);
|
||||||
@ -1203,7 +1254,7 @@ class PipelineWorker : public Napi::AsyncWorker {
|
|||||||
if (isDzZip) {
|
if (isDzZip) {
|
||||||
baton->tileContainer = VIPS_FOREIGN_DZ_CONTAINER_ZIP;
|
baton->tileContainer = VIPS_FOREIGN_DZ_CONTAINER_ZIP;
|
||||||
}
|
}
|
||||||
if (!sharp::HasAlpha(image)) {
|
if (!image.has_alpha()) {
|
||||||
baton->tileBackground.pop_back();
|
baton->tileBackground.pop_back();
|
||||||
}
|
}
|
||||||
image = sharp::StaySequential(image, baton->tileAngle != 0);
|
image = sharp::StaySequential(image, baton->tileAngle != 0);
|
||||||
@ -1318,6 +1369,9 @@ class PipelineWorker : public Napi::AsyncWorker {
|
|||||||
for (sharp::InputDescriptor *input : baton->joinChannelIn) {
|
for (sharp::InputDescriptor *input : baton->joinChannelIn) {
|
||||||
delete input;
|
delete input;
|
||||||
}
|
}
|
||||||
|
for (sharp::InputDescriptor *input : baton->join) {
|
||||||
|
delete input;
|
||||||
|
}
|
||||||
delete baton;
|
delete baton;
|
||||||
|
|
||||||
// Decrement processing task counter
|
// Decrement processing task counter
|
||||||
@ -1475,6 +1529,14 @@ Napi::Value pipeline(const Napi::CallbackInfo& info) {
|
|||||||
|
|
||||||
// Input
|
// Input
|
||||||
baton->input = sharp::CreateInputDescriptor(options.Get("input").As<Napi::Object>());
|
baton->input = sharp::CreateInputDescriptor(options.Get("input").As<Napi::Object>());
|
||||||
|
// Join images together
|
||||||
|
if (sharp::HasAttr(options, "join")) {
|
||||||
|
Napi::Array join = options.Get("join").As<Napi::Array>();
|
||||||
|
for (unsigned int i = 0; i < join.Length(); i++) {
|
||||||
|
baton->join.push_back(
|
||||||
|
sharp::CreateInputDescriptor(join.Get(i).As<Napi::Object>()));
|
||||||
|
}
|
||||||
|
}
|
||||||
// Extract image options
|
// Extract image options
|
||||||
baton->topOffsetPre = sharp::AttrAsInt32(options, "topOffsetPre");
|
baton->topOffsetPre = sharp::AttrAsInt32(options, "topOffsetPre");
|
||||||
baton->leftOffsetPre = sharp::AttrAsInt32(options, "leftOffsetPre");
|
baton->leftOffsetPre = sharp::AttrAsInt32(options, "leftOffsetPre");
|
||||||
@ -1567,7 +1629,6 @@ Napi::Value pipeline(const Napi::CallbackInfo& info) {
|
|||||||
baton->claheWidth = sharp::AttrAsUint32(options, "claheWidth");
|
baton->claheWidth = sharp::AttrAsUint32(options, "claheWidth");
|
||||||
baton->claheHeight = sharp::AttrAsUint32(options, "claheHeight");
|
baton->claheHeight = sharp::AttrAsUint32(options, "claheHeight");
|
||||||
baton->claheMaxSlope = sharp::AttrAsUint32(options, "claheMaxSlope");
|
baton->claheMaxSlope = sharp::AttrAsUint32(options, "claheMaxSlope");
|
||||||
baton->useExifOrientation = sharp::AttrAsBool(options, "useExifOrientation");
|
|
||||||
baton->angle = sharp::AttrAsInt32(options, "angle");
|
baton->angle = sharp::AttrAsInt32(options, "angle");
|
||||||
baton->rotationAngle = sharp::AttrAsDouble(options, "rotationAngle");
|
baton->rotationAngle = sharp::AttrAsDouble(options, "rotationAngle");
|
||||||
baton->rotationBackground = sharp::AttrAsVectorOfDouble(options, "rotationBackground");
|
baton->rotationBackground = sharp::AttrAsVectorOfDouble(options, "rotationBackground");
|
||||||
|
@ -39,6 +39,7 @@ struct Composite {
|
|||||||
|
|
||||||
struct PipelineBaton {
|
struct PipelineBaton {
|
||||||
sharp::InputDescriptor *input;
|
sharp::InputDescriptor *input;
|
||||||
|
std::vector<sharp::InputDescriptor *> join;
|
||||||
std::string formatOut;
|
std::string formatOut;
|
||||||
std::string fileOut;
|
std::string fileOut;
|
||||||
void *bufferOut;
|
void *bufferOut;
|
||||||
@ -109,7 +110,6 @@ struct PipelineBaton {
|
|||||||
int claheWidth;
|
int claheWidth;
|
||||||
int claheHeight;
|
int claheHeight;
|
||||||
int claheMaxSlope;
|
int claheMaxSlope;
|
||||||
bool useExifOrientation;
|
|
||||||
int angle;
|
int angle;
|
||||||
double rotationAngle;
|
double rotationAngle;
|
||||||
std::vector<double> rotationBackground;
|
std::vector<double> rotationBackground;
|
||||||
@ -282,7 +282,6 @@ struct PipelineBaton {
|
|||||||
claheWidth(0),
|
claheWidth(0),
|
||||||
claheHeight(0),
|
claheHeight(0),
|
||||||
claheMaxSlope(3),
|
claheMaxSlope(3),
|
||||||
useExifOrientation(false),
|
|
||||||
angle(0),
|
angle(0),
|
||||||
rotationAngle(0.0),
|
rotationAngle(0.0),
|
||||||
rotationBackground{ 0.0, 0.0, 0.0, 255.0 },
|
rotationBackground{ 0.0, 0.0, 0.0, 255.0 },
|
||||||
|
@ -58,7 +58,7 @@ class StatsWorker : public Napi::AsyncWorker {
|
|||||||
baton->channelStats.push_back(cStats);
|
baton->channelStats.push_back(cStats);
|
||||||
}
|
}
|
||||||
// Image is not opaque when alpha layer is present and contains a non-mamixa value
|
// Image is not opaque when alpha layer is present and contains a non-mamixa value
|
||||||
if (sharp::HasAlpha(image)) {
|
if (image.has_alpha()) {
|
||||||
double const minAlpha = static_cast<double>(stats.getpoint(STAT_MIN_INDEX, bands).front());
|
double const minAlpha = static_cast<double>(stats.getpoint(STAT_MIN_INDEX, bands).front());
|
||||||
if (minAlpha != sharp::MaximumImageAlpha(image.interpretation())) {
|
if (minAlpha != sharp::MaximumImageAlpha(image.interpretation())) {
|
||||||
baton->isOpaque = false;
|
baton->isOpaque = false;
|
||||||
|
@ -119,7 +119,7 @@ Napi::Value format(const Napi::CallbackInfo& info) {
|
|||||||
Napi::Object format = Napi::Object::New(env);
|
Napi::Object format = Napi::Object::New(env);
|
||||||
for (std::string const f : {
|
for (std::string const f : {
|
||||||
"jpeg", "png", "webp", "tiff", "magick", "openslide", "dz",
|
"jpeg", "png", "webp", "tiff", "magick", "openslide", "dz",
|
||||||
"ppm", "fits", "gif", "svg", "heif", "pdf", "vips", "jp2k", "jxl"
|
"ppm", "fits", "gif", "svg", "heif", "pdf", "vips", "jp2k", "jxl", "rad"
|
||||||
}) {
|
}) {
|
||||||
// Input
|
// Input
|
||||||
const VipsObjectClass *oc = vips_class_find("VipsOperation", (f + "load").c_str());
|
const VipsObjectClass *oc = vips_class_find("VipsOperation", (f + "load").c_str());
|
||||||
@ -233,10 +233,10 @@ Napi::Value _maxColourDistance(const Napi::CallbackInfo& info) {
|
|||||||
double maxColourDistance;
|
double maxColourDistance;
|
||||||
try {
|
try {
|
||||||
// Premultiply and remove alpha
|
// Premultiply and remove alpha
|
||||||
if (sharp::HasAlpha(image1)) {
|
if (image1.has_alpha()) {
|
||||||
image1 = image1.premultiply().extract_band(1, VImage::option()->set("n", image1.bands() - 1));
|
image1 = image1.premultiply().extract_band(1, VImage::option()->set("n", image1.bands() - 1));
|
||||||
}
|
}
|
||||||
if (sharp::HasAlpha(image2)) {
|
if (image2.has_alpha()) {
|
||||||
image2 = image2.premultiply().extract_band(1, VImage::option()->set("n", image2.bands() - 1));
|
image2 = image2.premultiply().extract_band(1, VImage::option()->set("n", image2.bands() - 1));
|
||||||
}
|
}
|
||||||
// Calculate colour distance
|
// Calculate colour distance
|
||||||
|
@ -1,14 +1,13 @@
|
|||||||
FROM ubuntu:23.10
|
FROM ubuntu:24.10
|
||||||
ARG BRANCH=main
|
ARG BRANCH=main
|
||||||
|
|
||||||
# Install basic dependencies
|
# Install basic dependencies
|
||||||
RUN apt-get -y update && apt-get install -y build-essential curl git ca-certificates gnupg
|
RUN apt-get -y update && apt-get install -y build-essential curl git ca-certificates gnupg
|
||||||
|
|
||||||
# Install latest Node.js LTS
|
# Install latest Node.js LTS
|
||||||
RUN mkdir -p /etc/apt/keyrings
|
RUN curl -fsSL https://deb.nodesource.com/setup_22.x -o nodesource_setup.sh
|
||||||
RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
RUN bash nodesource_setup.sh
|
||||||
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
|
RUN apt-get install -y nodejs
|
||||||
RUN apt-get -y update && apt-get install -y nodejs
|
|
||||||
|
|
||||||
# Install benchmark dependencies
|
# Install benchmark dependencies
|
||||||
RUN apt-get install -y imagemagick libmagick++-dev graphicsmagick
|
RUN apt-get install -y imagemagick libmagick++-dev graphicsmagick
|
||||||
@ -26,8 +25,4 @@ RUN node -v
|
|||||||
|
|
||||||
WORKDIR /tmp/sharp/test/bench
|
WORKDIR /tmp/sharp/test/bench
|
||||||
|
|
||||||
# Workaround for: https://github.com/emscripten-core/emscripten/pull/16917
|
|
||||||
# This could be removed once Squoosh is an optional dependency.
|
|
||||||
ENV NODE_OPTIONS="--no-experimental-fetch"
|
|
||||||
|
|
||||||
CMD [ "node", "perf" ]
|
CMD [ "node", "perf" ]
|
||||||
|
@ -8,16 +8,14 @@
|
|||||||
"test": "node perf && node random && node parallel"
|
"test": "node perf && node random && node parallel"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@squoosh/cli": "0.7.3",
|
"async": "3.2.6",
|
||||||
"@squoosh/lib": "0.5.3",
|
|
||||||
"async": "3.2.5",
|
|
||||||
"benchmark": "2.1.4",
|
"benchmark": "2.1.4",
|
||||||
"gm": "1.25.0",
|
"gm": "1.25.1",
|
||||||
"imagemagick": "0.1.3",
|
"imagemagick": "0.1.3",
|
||||||
"jimp": "0.22.10"
|
"jimp": "1.6.0"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@tensorflow/tfjs-node": "4.13.0",
|
"@tensorflow/tfjs-node": "4.22.0",
|
||||||
"mapnik": "4.5.9"
|
"mapnik": "4.5.9"
|
||||||
},
|
},
|
||||||
"license": "Apache-2.0"
|
"license": "Apache-2.0"
|
||||||
|
@ -3,9 +3,8 @@
|
|||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
const os = require('os');
|
|
||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const { exec, execSync } = require('child_process');
|
const { execSync } = require('child_process');
|
||||||
|
|
||||||
const async = require('async');
|
const async = require('async');
|
||||||
const Benchmark = require('benchmark');
|
const Benchmark = require('benchmark');
|
||||||
@ -22,8 +21,8 @@ const sharp = require('../../');
|
|||||||
const gm = require('gm');
|
const gm = require('gm');
|
||||||
const imagemagick = require('imagemagick');
|
const imagemagick = require('imagemagick');
|
||||||
const mapnik = safeRequire('mapnik');
|
const mapnik = safeRequire('mapnik');
|
||||||
const jimp = require('jimp');
|
const { Jimp, JimpMime } = require('jimp');
|
||||||
const squoosh = require('@squoosh/lib');
|
|
||||||
process.env.TF_CPP_MIN_LOG_LEVEL = 1;
|
process.env.TF_CPP_MIN_LOG_LEVEL = 1;
|
||||||
const tfjs = safeRequire('@tensorflow/tfjs-node');
|
const tfjs = safeRequire('@tensorflow/tfjs-node');
|
||||||
|
|
||||||
@ -52,104 +51,23 @@ async.series({
|
|||||||
// jimp
|
// jimp
|
||||||
jpegSuite.add('jimp-buffer-buffer', {
|
jpegSuite.add('jimp-buffer-buffer', {
|
||||||
defer: true,
|
defer: true,
|
||||||
fn: function (deferred) {
|
fn: async function (deferred) {
|
||||||
jimp.read(inputJpgBuffer, function (err, image) {
|
const image = await Jimp.read(inputJpgBuffer);
|
||||||
if (err) {
|
await image
|
||||||
throw err;
|
.resize({ w: width, h: height, mode: Jimp.RESIZE_BICUBIC })
|
||||||
} else {
|
.getBuffer(JimpMime.jpeg, { quality: 80 });
|
||||||
image
|
|
||||||
.resize(width, height, jimp.RESIZE_BICUBIC)
|
|
||||||
.quality(80)
|
|
||||||
.getBuffer(jimp.MIME_JPEG, function (err) {
|
|
||||||
if (err) {
|
|
||||||
throw err;
|
|
||||||
} else {
|
|
||||||
deferred.resolve();
|
deferred.resolve();
|
||||||
}
|
}
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}).add('jimp-file-file', {
|
}).add('jimp-file-file', {
|
||||||
defer: true,
|
defer: true,
|
||||||
fn: function (deferred) {
|
fn: async function (deferred) {
|
||||||
jimp.read(fixtures.inputJpg, function (err, image) {
|
const image = await Jimp.read(fixtures.inputJpg);
|
||||||
if (err) {
|
await image
|
||||||
throw err;
|
.resize({ w: width, h: height, mode: Jimp.RESIZE_BICUBIC })
|
||||||
} else {
|
.getBuffer(JimpMime.jpeg, { quality: 80 });
|
||||||
image
|
|
||||||
.resize(width, height, jimp.RESIZE_BICUBIC)
|
|
||||||
.quality(80)
|
|
||||||
.write(outputJpg, function (err) {
|
|
||||||
if (err) {
|
|
||||||
throw err;
|
|
||||||
} else {
|
|
||||||
deferred.resolve();
|
deferred.resolve();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
// squoosh-cli
|
|
||||||
jpegSuite.add('squoosh-cli-file-file', {
|
|
||||||
defer: true,
|
|
||||||
fn: function (deferred) {
|
|
||||||
exec(`./node_modules/.bin/squoosh-cli \
|
|
||||||
--output-dir ${os.tmpdir()} \
|
|
||||||
--resize '{"enabled":true,"width":${width},"height":${height},"method":"lanczos3","premultiply":false,"linearRGB":false}' \
|
|
||||||
--mozjpeg '{"quality":80,"progressive":false,"optimize_coding":true,"quant_table":0,"trellis_multipass":false,"chroma_subsample":2,"separate_chroma_quality":false}' \
|
|
||||||
"${fixtures.inputJpg}"`, function (err) {
|
|
||||||
if (err) {
|
|
||||||
throw err;
|
|
||||||
}
|
|
||||||
deferred.resolve();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
// squoosh-lib (GPLv3)
|
|
||||||
jpegSuite.add('squoosh-lib-buffer-buffer', {
|
|
||||||
defer: true,
|
|
||||||
fn: function (deferred) {
|
|
||||||
const pool = new squoosh.ImagePool(os.cpus().length);
|
|
||||||
const image = pool.ingestImage(inputJpgBuffer);
|
|
||||||
image.decoded
|
|
||||||
.then(function () {
|
|
||||||
return image.preprocess({
|
|
||||||
resize: {
|
|
||||||
enabled: true,
|
|
||||||
width,
|
|
||||||
height,
|
|
||||||
method: 'lanczos3',
|
|
||||||
premultiply: false,
|
|
||||||
linearRGB: false
|
|
||||||
}
|
|
||||||
});
|
|
||||||
})
|
|
||||||
.then(function () {
|
|
||||||
return image.encode({
|
|
||||||
mozjpeg: {
|
|
||||||
quality: 80,
|
|
||||||
progressive: false,
|
|
||||||
optimize_coding: true,
|
|
||||||
quant_table: 0,
|
|
||||||
trellis_multipass: false,
|
|
||||||
chroma_subsample: 2,
|
|
||||||
separate_chroma_quality: false
|
|
||||||
}
|
|
||||||
});
|
|
||||||
})
|
|
||||||
.then(function () {
|
|
||||||
return pool.close();
|
|
||||||
})
|
|
||||||
.then(function () {
|
|
||||||
return image.encodedWith.mozjpeg;
|
|
||||||
})
|
|
||||||
.then(function () {
|
|
||||||
deferred.resolve();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
// mapnik
|
// mapnik
|
||||||
mapnik && jpegSuite.add('mapnik-file-file', {
|
mapnik && jpegSuite.add('mapnik-file-file', {
|
||||||
defer: true,
|
defer: true,
|
||||||
@ -648,100 +566,23 @@ async.series({
|
|||||||
// jimp
|
// jimp
|
||||||
pngSuite.add('jimp-buffer-buffer', {
|
pngSuite.add('jimp-buffer-buffer', {
|
||||||
defer: true,
|
defer: true,
|
||||||
fn: function (deferred) {
|
fn: async function (deferred) {
|
||||||
jimp.read(inputPngBuffer, function (err, image) {
|
const image = await Jimp.read(inputPngBuffer);
|
||||||
if (err) {
|
await image
|
||||||
throw err;
|
.resize({ w: width, h: heightPng, mode: Jimp.RESIZE_BICUBIC })
|
||||||
} else {
|
.getBuffer(JimpMime.png, { deflateLevel: 6, filterType: 0 });
|
||||||
image
|
|
||||||
.resize(width, heightPng, jimp.RESIZE_BICUBIC)
|
|
||||||
.deflateLevel(6)
|
|
||||||
.filterType(0)
|
|
||||||
.getBuffer(jimp.MIME_PNG, function (err) {
|
|
||||||
if (err) {
|
|
||||||
throw err;
|
|
||||||
} else {
|
|
||||||
deferred.resolve();
|
deferred.resolve();
|
||||||
}
|
}
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}).add('jimp-file-file', {
|
}).add('jimp-file-file', {
|
||||||
defer: true,
|
defer: true,
|
||||||
fn: function (deferred) {
|
fn: async function (deferred) {
|
||||||
jimp.read(fixtures.inputPngAlphaPremultiplicationLarge, function (err, image) {
|
const image = await Jimp.read(fixtures.inputPngAlphaPremultiplicationLarge);
|
||||||
if (err) {
|
await image
|
||||||
throw err;
|
.resize({ w: width, h: heightPng, mode: Jimp.RESIZE_BICUBIC })
|
||||||
} else {
|
.write(outputPng, { deflateLevel: 6, filterType: 0 });
|
||||||
image
|
|
||||||
.resize(width, heightPng, jimp.RESIZE_BICUBIC)
|
|
||||||
.deflateLevel(6)
|
|
||||||
.filterType(0)
|
|
||||||
.write(outputPng, function (err) {
|
|
||||||
if (err) {
|
|
||||||
throw err;
|
|
||||||
} else {
|
|
||||||
deferred.resolve();
|
deferred.resolve();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
// squoosh-cli
|
|
||||||
pngSuite.add('squoosh-cli-file-file', {
|
|
||||||
defer: true,
|
|
||||||
fn: function (deferred) {
|
|
||||||
exec(`./node_modules/.bin/squoosh-cli \
|
|
||||||
--output-dir ${os.tmpdir()} \
|
|
||||||
--resize '{"enabled":true,"width":${width},"height":${heightPng},"method":"lanczos3","premultiply":true,"linearRGB":false}' \
|
|
||||||
--oxipng '{"level":1}' \
|
|
||||||
"${fixtures.inputPngAlphaPremultiplicationLarge}"`, function (err) {
|
|
||||||
if (err) {
|
|
||||||
throw err;
|
|
||||||
}
|
|
||||||
deferred.resolve();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
// squoosh-lib (GPLv3)
|
|
||||||
pngSuite.add('squoosh-lib-buffer-buffer', {
|
|
||||||
defer: true,
|
|
||||||
fn: function (deferred) {
|
|
||||||
const pool = new squoosh.ImagePool(os.cpus().length);
|
|
||||||
const image = pool.ingestImage(inputPngBuffer);
|
|
||||||
image.decoded
|
|
||||||
.then(function () {
|
|
||||||
return image.preprocess({
|
|
||||||
resize: {
|
|
||||||
enabled: true,
|
|
||||||
width,
|
|
||||||
height: heightPng,
|
|
||||||
method: 'lanczos3',
|
|
||||||
premultiply: true,
|
|
||||||
linearRGB: false
|
|
||||||
}
|
|
||||||
});
|
|
||||||
})
|
|
||||||
.then(function () {
|
|
||||||
return image.encode({
|
|
||||||
oxipng: {
|
|
||||||
level: 1
|
|
||||||
}
|
|
||||||
});
|
|
||||||
})
|
|
||||||
.then(function () {
|
|
||||||
return pool.close();
|
|
||||||
})
|
|
||||||
.then(function () {
|
|
||||||
return image.encodedWith.oxipng;
|
|
||||||
})
|
|
||||||
.then(function () {
|
|
||||||
deferred.resolve();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
// mapnik
|
// mapnik
|
||||||
mapnik && pngSuite.add('mapnik-file-file', {
|
mapnik && pngSuite.add('mapnik-file-file', {
|
||||||
defer: true,
|
defer: true,
|
||||||
|
BIN
test/fixtures/expected/Landscape_1_flip-out.jpg
vendored
Normal file
After Width: | Height: | Size: 79 KiB |
BIN
test/fixtures/expected/Landscape_1_flip_flop-out.jpg
vendored
Normal file
After Width: | Height: | Size: 78 KiB |
BIN
test/fixtures/expected/Landscape_1_flop-out.jpg
vendored
Normal file
After Width: | Height: | Size: 77 KiB |
BIN
test/fixtures/expected/Landscape_1_rotate180-out.jpg
vendored
Normal file
After Width: | Height: | Size: 78 KiB |
BIN
test/fixtures/expected/Landscape_1_rotate270-out.jpg
vendored
Normal file
After Width: | Height: | Size: 77 KiB |
BIN
test/fixtures/expected/Landscape_1_rotate45-out.jpg
vendored
Normal file
After Width: | Height: | Size: 76 KiB |
BIN
test/fixtures/expected/Landscape_1_rotate90-out.jpg
vendored
Normal file
After Width: | Height: | Size: 78 KiB |
BIN
test/fixtures/expected/Landscape_2_flip-out.jpg
vendored
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
test/fixtures/expected/Landscape_2_flip_flop-out.jpg
vendored
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
test/fixtures/expected/Landscape_2_flop-out.jpg
vendored
Normal file
After Width: | Height: | Size: 78 KiB |
BIN
test/fixtures/expected/Landscape_2_rotate180-out.jpg
vendored
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
test/fixtures/expected/Landscape_2_rotate270-out.jpg
vendored
Normal file
After Width: | Height: | Size: 78 KiB |
BIN
test/fixtures/expected/Landscape_2_rotate45-out.jpg
vendored
Normal file
After Width: | Height: | Size: 77 KiB |
BIN
test/fixtures/expected/Landscape_2_rotate90-out.jpg
vendored
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
test/fixtures/expected/Landscape_3_flip-out.jpg
vendored
Normal file
After Width: | Height: | Size: 82 KiB |
BIN
test/fixtures/expected/Landscape_3_flip_flop-out.jpg
vendored
Normal file
After Width: | Height: | Size: 82 KiB |
BIN
test/fixtures/expected/Landscape_3_flop-out.jpg
vendored
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
test/fixtures/expected/Landscape_3_rotate180-out.jpg
vendored
Normal file
After Width: | Height: | Size: 82 KiB |
BIN
test/fixtures/expected/Landscape_3_rotate270-out.jpg
vendored
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
test/fixtures/expected/Landscape_3_rotate45-out.jpg
vendored
Normal file
After Width: | Height: | Size: 78 KiB |
BIN
test/fixtures/expected/Landscape_3_rotate90-out.jpg
vendored
Normal file
After Width: | Height: | Size: 82 KiB |
BIN
test/fixtures/expected/Landscape_4_flip-out.jpg
vendored
Normal file
After Width: | Height: | Size: 82 KiB |
BIN
test/fixtures/expected/Landscape_4_flip_flop-out.jpg
vendored
Normal file
After Width: | Height: | Size: 81 KiB |
BIN
test/fixtures/expected/Landscape_4_flop-out.jpg
vendored
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
test/fixtures/expected/Landscape_4_rotate180-out.jpg
vendored
Normal file
After Width: | Height: | Size: 81 KiB |
BIN
test/fixtures/expected/Landscape_4_rotate270-out.jpg
vendored
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
test/fixtures/expected/Landscape_4_rotate45-out.jpg
vendored
Normal file
After Width: | Height: | Size: 77 KiB |
BIN
test/fixtures/expected/Landscape_4_rotate90-out.jpg
vendored
Normal file
After Width: | Height: | Size: 82 KiB |