Compare commits
No commits in common. "main" and "v0.32.5" have entirely different histories.
79
.circleci/config.yml
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
version: 2.1
|
||||||
|
|
||||||
|
workflows:
|
||||||
|
build:
|
||||||
|
jobs:
|
||||||
|
- linux-arm64-glibc-node-14:
|
||||||
|
filters:
|
||||||
|
tags:
|
||||||
|
only: /^v.*/
|
||||||
|
- linux-arm64-musl-node-14:
|
||||||
|
filters:
|
||||||
|
tags:
|
||||||
|
only: /^v.*/
|
||||||
|
- linux-arm64-glibc-node-18:
|
||||||
|
filters:
|
||||||
|
tags:
|
||||||
|
only: /^v.*/
|
||||||
|
- linux-arm64-musl-node-18:
|
||||||
|
filters:
|
||||||
|
tags:
|
||||||
|
only: /^v.*/
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
linux-arm64-glibc-node-14:
|
||||||
|
resource_class: arm.medium
|
||||||
|
machine:
|
||||||
|
image: ubuntu-2004:current
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run: |
|
||||||
|
sudo docker run -dit --name sharp --volume "${PWD}:/mnt/sharp" --workdir /mnt/sharp arm64v8/debian:bullseye
|
||||||
|
sudo docker exec sharp sh -c "apt-get update && apt-get install -y build-essential git python3 curl fonts-noto-core"
|
||||||
|
sudo docker exec sharp sh -c "curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -"
|
||||||
|
sudo docker exec sharp sh -c "echo 'deb https://deb.nodesource.com/node_14.x sid main' >/etc/apt/sources.list.d/nodesource.list"
|
||||||
|
sudo docker exec sharp sh -c "apt-get update && apt-get install -y nodejs"
|
||||||
|
- run: sudo docker exec sharp sh -c "npm install --build-from-source --unsafe-perm"
|
||||||
|
- run: sudo docker exec sharp sh -c "npm test"
|
||||||
|
- run: "[[ -n $CIRCLE_TAG ]] && sudo docker exec --env prebuild_upload sharp sh -c \"npx prebuild --runtime napi --target 7 --upload=$prebuild_upload\" || true"
|
||||||
|
linux-arm64-glibc-node-18:
|
||||||
|
resource_class: arm.medium
|
||||||
|
machine:
|
||||||
|
image: ubuntu-2004:current
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run: |
|
||||||
|
sudo docker run -dit --name sharp --workdir /mnt/sharp arm64v8/debian:bullseye
|
||||||
|
sudo docker exec sharp sh -c "apt-get update && apt-get install -y build-essential git python3 curl fonts-noto-core"
|
||||||
|
sudo docker exec sharp sh -c "curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -"
|
||||||
|
sudo docker exec sharp sh -c "echo 'deb https://deb.nodesource.com/node_18.x sid main' >/etc/apt/sources.list.d/nodesource.list"
|
||||||
|
sudo docker exec sharp sh -c "apt-get update && apt-get install -y nodejs"
|
||||||
|
sudo docker exec sharp sh -c "mkdir -p /mnt/sharp"
|
||||||
|
sudo docker cp . sharp:/mnt/sharp/.
|
||||||
|
- run: sudo docker exec sharp sh -c "npm install --build-from-source"
|
||||||
|
- run: sudo docker exec sharp sh -c "npm test"
|
||||||
|
linux-arm64-musl-node-14:
|
||||||
|
resource_class: arm.medium
|
||||||
|
machine:
|
||||||
|
image: ubuntu-2004:current
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run: |
|
||||||
|
sudo docker run -dit --name sharp --volume "${PWD}:/mnt/sharp" --workdir /mnt/sharp node:14-alpine3.12
|
||||||
|
sudo docker exec sharp sh -c "apk add build-base git python3 font-noto --update-cache"
|
||||||
|
- run: sudo docker exec sharp sh -c "npm install --build-from-source --unsafe-perm"
|
||||||
|
- run: sudo docker exec sharp sh -c "npm test"
|
||||||
|
- run: "[[ -n $CIRCLE_TAG ]] && sudo docker exec --env prebuild_upload sharp sh -c \"npx prebuild --runtime napi --target 7 --upload=$prebuild_upload\" || true"
|
||||||
|
linux-arm64-musl-node-18:
|
||||||
|
resource_class: arm.medium
|
||||||
|
machine:
|
||||||
|
image: ubuntu-2004:current
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run: |
|
||||||
|
sudo docker run -dit --name sharp --workdir /mnt/sharp node:18-alpine3.14
|
||||||
|
sudo docker exec sharp sh -c "apk add build-base git python3 font-noto --update-cache"
|
||||||
|
sudo docker exec sharp sh -c "mkdir -p /mnt/sharp"
|
||||||
|
sudo docker cp . sharp:/mnt/sharp/.
|
||||||
|
- run: sudo docker exec sharp sh -c "npm install --build-from-source"
|
||||||
|
- run: sudo docker exec sharp sh -c "npm test"
|
@ -1,5 +1,5 @@
|
|||||||
freebsd_instance:
|
freebsd_instance:
|
||||||
image_family: freebsd-15-0-snap
|
image_family: freebsd-13-2
|
||||||
|
|
||||||
task:
|
task:
|
||||||
name: FreeBSD
|
name: FreeBSD
|
||||||
@ -10,8 +10,7 @@ task:
|
|||||||
- pkg update -f
|
- pkg update -f
|
||||||
- pkg upgrade -y
|
- pkg upgrade -y
|
||||||
- pkg install -y devel/git devel/pkgconf graphics/vips www/node20 www/npm
|
- pkg install -y devel/git devel/pkgconf graphics/vips www/node20 www/npm
|
||||||
- pkg-config --modversion vips-cpp
|
|
||||||
install_script:
|
install_script:
|
||||||
- npm install --build-from-source
|
- npm install --build-from-source --unsafe-perm
|
||||||
test_script:
|
test_script:
|
||||||
- npx mocha --no-config --spec=test/unit/io.js --timeout=30000
|
- npm test
|
||||||
|
1
.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
src/libvips/* linguist-vendored
|
2
.github/CONTRIBUTING.md
vendored
@ -63,7 +63,7 @@ By way of example, the `background()` method present in v0.20.0 was deprecated i
|
|||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
The public API is documented with [JSDoc](https://jsdoc.app/) annotated comments.
|
The public API is documented with [JSDoc](http://usejsdoc.org/) annotated comments.
|
||||||
|
|
||||||
These can be converted to Markdown by running:
|
These can be converted to Markdown by running:
|
||||||
```sh
|
```sh
|
||||||
|
38
.github/ISSUE_TEMPLATE/installation.md
vendored
@ -11,10 +11,8 @@ labels: installation
|
|||||||
|
|
||||||
<!-- Please place an [x] in the box to confirm. -->
|
<!-- Please place an [x] in the box to confirm. -->
|
||||||
|
|
||||||
- [ ] I have read and understood all of the [documentation relating to installation](https://sharp.pixelplumbing.com/install).
|
- [ ] I have read the [documentation relating to installation](https://sharp.pixelplumbing.com/install).
|
||||||
- [ ] I have searched for known bugs relating to this problem in my choice of package manager.
|
- [ ] I have ensured that the architecture and platform of Node.js used for `npm install` is the same as the architecture and platform of Node.js used at runtime.
|
||||||
|
|
||||||
You must confirm both of these before continuing.
|
|
||||||
|
|
||||||
### Are you using the latest version of sharp?
|
### Are you using the latest version of sharp?
|
||||||
|
|
||||||
@ -24,37 +22,15 @@ You must confirm both of these before continuing.
|
|||||||
|
|
||||||
If you cannot confirm this, please upgrade to the latest version and try again before opening an issue.
|
If you cannot confirm this, please upgrade to the latest version and try again before opening an issue.
|
||||||
|
|
||||||
If you are using another package which depends on a version of `sharp` that is not the latest,
|
If you are using another package which depends on a version of `sharp` that is not the latest, please open an issue against that package instead.
|
||||||
please open an issue against that package instead.
|
|
||||||
|
|
||||||
### Are you using a supported runtime?
|
### Is this a problem with filesystem permissions?
|
||||||
|
|
||||||
<!-- Please place an [x] in the relevant box to confirm. -->
|
If you are using npm v6 or earlier and installing as a `root` or `sudo` user, have you tried with the `npm install --unsafe-perm` flag?
|
||||||
|
|
||||||
- [ ] I am using Node.js with a version that satisfies `^18.17.0 || ^20.3.0 || >=21.0.0`
|
If you are using npm v7 or later, does the user running `npm install` own the directory it is run in?
|
||||||
- [ ] I am using Deno
|
|
||||||
- [ ] I am using Bun
|
|
||||||
|
|
||||||
If you cannot confirm any of these,
|
If you are using the `ignore-scripts` feature of `npm`, have you tried with the `npm install --ignore-scripts=false` flag?
|
||||||
please upgrade to the latest version
|
|
||||||
and try again before opening an issue.
|
|
||||||
|
|
||||||
### Are you using a supported package manager and installing optional dependencies?
|
|
||||||
|
|
||||||
<!-- Please place an [x] in the relevant box to confirm. -->
|
|
||||||
|
|
||||||
- [ ] I am using npm >= 10.1.0 with `--include=optional`
|
|
||||||
- [ ] I am using yarn >= 3.2.0
|
|
||||||
- [ ] I am using pnpm >= 7.1.0 with `--no-optional=false`
|
|
||||||
- [ ] I am using Deno
|
|
||||||
- [ ] I am using Bun
|
|
||||||
|
|
||||||
If you cannot confirm any of these, please upgrade to the latest version of your chosen package manager
|
|
||||||
and ensure you are allowing the installation of optional or multi-platform dependencies before opening an issue.
|
|
||||||
|
|
||||||
### What is the complete error message, including the full stack trace?
|
|
||||||
|
|
||||||
<!-- Please provide the error message and stack trace here. -->
|
|
||||||
|
|
||||||
### What is the complete output of running `npm install --verbose --foreground-scripts sharp` in an empty directory?
|
### What is the complete output of running `npm install --verbose --foreground-scripts sharp` in an empty directory?
|
||||||
|
|
||||||
|
16
.github/ISSUE_TEMPLATE/possible-bug.md
vendored
@ -32,22 +32,6 @@ If you are using another package which depends on a version of `sharp` that is n
|
|||||||
|
|
||||||
<!-- Please provide output of the above command here. -->
|
<!-- Please provide output of the above command here. -->
|
||||||
|
|
||||||
### Does this problem relate to file caching?
|
|
||||||
|
|
||||||
The default behaviour of libvips is to cache input files, which can lead to `EBUSY` or `EPERM` errors on Windows.
|
|
||||||
Use [`sharp.cache(false)`](https://sharp.pixelplumbing.com/api-utility#cache) to switch this feature off.
|
|
||||||
|
|
||||||
- [ ] Adding `sharp.cache(false)` does not fix this problem.
|
|
||||||
|
|
||||||
### Does this problem relate to images appearing to have been rotated by 90 degrees?
|
|
||||||
|
|
||||||
Images that contain EXIF Orientation metadata are not auto-oriented. By default, EXIF metadata is removed.
|
|
||||||
|
|
||||||
- To auto-orient pixel values use the parameter-less [`rotate()`](https://sharp.pixelplumbing.com/api-operation#rotate) operation.
|
|
||||||
- To retain EXIF Orientation use [`keepExif()`](https://sharp.pixelplumbing.com/api-output#keepexif).
|
|
||||||
|
|
||||||
- [ ] Using `rotate()` or `keepExif()` does not fix this problem.
|
|
||||||
|
|
||||||
### What are the steps to reproduce?
|
### What are the steps to reproduce?
|
||||||
|
|
||||||
<!-- Please enter steps to reproduce here. -->
|
<!-- Please enter steps to reproduce here. -->
|
||||||
|
40
.github/workflows/ci-darwin-arm64v8.yml
vendored
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
name: CI (MacStadium)
|
||||||
|
on:
|
||||||
|
- push
|
||||||
|
- pull_request
|
||||||
|
permissions: {}
|
||||||
|
jobs:
|
||||||
|
CI:
|
||||||
|
permissions:
|
||||||
|
contents: write # for npx prebuild to make release
|
||||||
|
name: Node.js ${{ matrix.nodejs_version }} ${{ matrix.nodejs_arch }} ${{ matrix.prebuild && '- prebuild' }}
|
||||||
|
runs-on: macos-m1
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- nodejs_version: 14
|
||||||
|
nodejs_arch: x64
|
||||||
|
- nodejs_version: 18
|
||||||
|
nodejs_arch: arm64
|
||||||
|
prebuild: true
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: /usr/bin/arch -arch arm64e /bin/bash -l {0}
|
||||||
|
steps:
|
||||||
|
- name: Dependencies (Node.js)
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.nodejs_version }}
|
||||||
|
architecture: ${{ matrix.nodejs_arch }}
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Install
|
||||||
|
run: npm install --build-from-source --unsafe-perm
|
||||||
|
- name: Test
|
||||||
|
run: npm test
|
||||||
|
- name: Prebuild
|
||||||
|
if: matrix.prebuild && startsWith(github.ref, 'refs/tags/')
|
||||||
|
env:
|
||||||
|
prebuild_upload: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
run: npx prebuild --runtime napi --target 7
|
363
.github/workflows/ci.yml
vendored
@ -1,331 +1,106 @@
|
|||||||
name: CI
|
name: CI (GitHub)
|
||||||
on:
|
on:
|
||||||
- push
|
- push
|
||||||
- pull_request
|
- pull_request
|
||||||
permissions: {}
|
permissions: {}
|
||||||
jobs:
|
jobs:
|
||||||
build-native:
|
CI:
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: write # for npx prebuild to make release
|
||||||
name: "build-${{ matrix.platform }} [Node.js ${{ matrix.nodejs_version_major }}] ${{ matrix.package && '[package]' }}"
|
name: ${{ matrix.container || matrix.os }} - Node.js ${{ matrix.nodejs_version }} ${{ matrix.nodejs_arch }} ${{ matrix.prebuild && '- prebuild' }}
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
container: ${{ matrix.container }}
|
container: ${{ matrix.container }}
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: ubuntu-24.04
|
- os: ubuntu-22.04
|
||||||
|
container: centos:7
|
||||||
|
nodejs_version: 14
|
||||||
|
prebuild: true
|
||||||
|
- os: ubuntu-22.04
|
||||||
|
container: centos:7
|
||||||
|
nodejs_version: 16
|
||||||
|
- os: ubuntu-22.04
|
||||||
container: rockylinux:8
|
container: rockylinux:8
|
||||||
|
nodejs_version: 18
|
||||||
|
- os: ubuntu-22.04
|
||||||
|
container: node:14-alpine3.12
|
||||||
|
prebuild: true
|
||||||
|
- os: ubuntu-22.04
|
||||||
|
container: node:16-alpine3.12
|
||||||
|
- os: ubuntu-22.04
|
||||||
|
container: node:18-alpine3.14
|
||||||
|
- os: macos-11
|
||||||
|
nodejs_version: 14
|
||||||
|
prebuild: true
|
||||||
nodejs_arch: x64
|
nodejs_arch: x64
|
||||||
nodejs_version: "^18.17.0"
|
- os: macos-11
|
||||||
nodejs_version_major: 18
|
nodejs_version: 16
|
||||||
platform: linux-x64
|
|
||||||
package: true
|
|
||||||
- os: ubuntu-24.04
|
|
||||||
container: rockylinux:8
|
|
||||||
nodejs_arch: x64
|
nodejs_arch: x64
|
||||||
nodejs_version: "^20.3.0"
|
- os: macos-11
|
||||||
nodejs_version_major: 20
|
nodejs_version: 18
|
||||||
platform: linux-x64
|
|
||||||
- os: ubuntu-24.04
|
|
||||||
container: rockylinux:8
|
|
||||||
nodejs_arch: x64
|
nodejs_arch: x64
|
||||||
nodejs_version: "^22.9.0"
|
- os: windows-2019
|
||||||
nodejs_version_major: 22
|
nodejs_version: 14
|
||||||
platform: linux-x64
|
|
||||||
- os: ubuntu-24.04
|
|
||||||
container: node:18-alpine3.17
|
|
||||||
nodejs_version_major: 18
|
|
||||||
platform: linuxmusl-x64
|
|
||||||
package: true
|
|
||||||
- os: ubuntu-24.04
|
|
||||||
container: node:20-alpine3.18
|
|
||||||
nodejs_version_major: 20
|
|
||||||
platform: linuxmusl-x64
|
|
||||||
- os: ubuntu-24.04
|
|
||||||
container: node:22-alpine3.20
|
|
||||||
nodejs_version_major: 22
|
|
||||||
platform: linuxmusl-x64
|
|
||||||
- os: ubuntu-24.04-arm
|
|
||||||
container: arm64v8/rockylinux:8
|
|
||||||
nodejs_arch: arm64
|
|
||||||
nodejs_version: "^18.17.0"
|
|
||||||
nodejs_version_major: 18
|
|
||||||
platform: linux-arm64
|
|
||||||
package: true
|
|
||||||
- os: ubuntu-24.04-arm
|
|
||||||
container: arm64v8/rockylinux:8
|
|
||||||
nodejs_arch: arm64
|
|
||||||
nodejs_version: "^20.3.0"
|
|
||||||
nodejs_version_major: 20
|
|
||||||
platform: linux-arm64
|
|
||||||
- os: macos-13
|
|
||||||
nodejs_arch: x64
|
|
||||||
nodejs_version: "^18.17.0"
|
|
||||||
nodejs_version_major: 18
|
|
||||||
platform: darwin-x64
|
|
||||||
package: true
|
|
||||||
- os: macos-13
|
|
||||||
nodejs_arch: x64
|
|
||||||
nodejs_version: "^20.3.0"
|
|
||||||
nodejs_version_major: 20
|
|
||||||
platform: darwin-x64
|
|
||||||
- os: macos-13
|
|
||||||
nodejs_arch: x64
|
|
||||||
nodejs_version: "^22.9.0"
|
|
||||||
nodejs_version_major: 22
|
|
||||||
platform: darwin-x64
|
|
||||||
- os: macos-14
|
|
||||||
nodejs_arch: arm64
|
|
||||||
nodejs_version: "^18.17.0"
|
|
||||||
nodejs_version_major: 18
|
|
||||||
platform: darwin-arm64
|
|
||||||
package: true
|
|
||||||
- os: macos-14
|
|
||||||
nodejs_arch: arm64
|
|
||||||
nodejs_version: "^20.3.0"
|
|
||||||
nodejs_version_major: 20
|
|
||||||
platform: darwin-arm64
|
|
||||||
- os: macos-14
|
|
||||||
nodejs_arch: arm64
|
|
||||||
nodejs_version: "^22.9.0"
|
|
||||||
nodejs_version_major: 22
|
|
||||||
platform: darwin-arm64
|
|
||||||
- os: windows-2022
|
|
||||||
nodejs_arch: x86
|
nodejs_arch: x86
|
||||||
nodejs_version: "18.18.2" # pinned to avoid 18.19.0 and npm 10
|
prebuild: true
|
||||||
nodejs_version_major: 18
|
- os: windows-2019
|
||||||
platform: win32-ia32
|
nodejs_version: 16
|
||||||
package: true
|
|
||||||
- os: windows-2022
|
|
||||||
nodejs_arch: x86
|
nodejs_arch: x86
|
||||||
nodejs_version: "^20.3.0"
|
- os: windows-2019
|
||||||
nodejs_version_major: 20
|
nodejs_version: 18
|
||||||
platform: win32-ia32
|
|
||||||
- os: windows-2022
|
|
||||||
nodejs_arch: x86
|
nodejs_arch: x86
|
||||||
nodejs_version: "^22.9.0"
|
- os: windows-2019
|
||||||
nodejs_version_major: 22
|
nodejs_version: 14
|
||||||
platform: win32-ia32
|
|
||||||
- os: windows-2022
|
|
||||||
nodejs_arch: x64
|
nodejs_arch: x64
|
||||||
nodejs_version: "^18.17.0"
|
prebuild: true
|
||||||
nodejs_version_major: 18
|
- os: windows-2019
|
||||||
platform: win32-x64
|
nodejs_version: 16
|
||||||
package: true
|
|
||||||
- os: windows-2022
|
|
||||||
nodejs_arch: x64
|
nodejs_arch: x64
|
||||||
nodejs_version: "^20.3.0"
|
- os: windows-2019
|
||||||
nodejs_version_major: 20
|
nodejs_version: 18
|
||||||
platform: win32-x64
|
|
||||||
- os: windows-2022
|
|
||||||
nodejs_arch: x64
|
nodejs_arch: x64
|
||||||
nodejs_version: "^22.9.0"
|
|
||||||
nodejs_version_major: 22
|
|
||||||
platform: win32-x64
|
|
||||||
- os: windows-11-arm
|
|
||||||
nodejs_arch: arm64
|
|
||||||
nodejs_version: "^20.3.0"
|
|
||||||
nodejs_version_major: 20
|
|
||||||
platform: win32-arm64
|
|
||||||
package: true
|
|
||||||
- os: windows-11-arm
|
|
||||||
nodejs_arch: arm64
|
|
||||||
nodejs_version: "^22.9.0"
|
|
||||||
nodejs_version_major: 22
|
|
||||||
platform: win32-arm64
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Dependencies (Linux glibc)
|
||||||
|
if: contains(matrix.container, 'centos')
|
||||||
|
run: |
|
||||||
|
curl -sL https://rpm.nodesource.com/setup_${{ matrix.nodejs_version }}.x | bash -
|
||||||
|
yum install -y https://packages.endpointdev.com/rhel/7/os/x86_64/endpoint-repo.x86_64.rpm
|
||||||
|
yum install -y centos-release-scl
|
||||||
|
yum install -y devtoolset-11-gcc-c++ make git python3 nodejs fontconfig google-noto-sans-fonts
|
||||||
|
echo "/opt/rh/devtoolset-11/root/usr/bin" >> $GITHUB_PATH
|
||||||
- name: Dependencies (Rocky Linux glibc)
|
- name: Dependencies (Rocky Linux glibc)
|
||||||
if: contains(matrix.container, 'rockylinux')
|
if: contains(matrix.container, 'rockylinux')
|
||||||
run: |
|
run: |
|
||||||
dnf install -y gcc-toolset-14-gcc-c++ make git python3.12 fontconfig google-noto-sans-fonts
|
curl -sL https://rpm.nodesource.com/setup_${{ matrix.nodejs_version }}.x | bash -
|
||||||
echo "/opt/rh/gcc-toolset-14/root/usr/bin" >> $GITHUB_PATH
|
dnf install -y gcc-toolset-11-gcc-c++ make git python3 nodejs fontconfig google-noto-sans-fonts
|
||||||
|
echo "/opt/rh/gcc-toolset-11/root/usr/bin" >> $GITHUB_PATH
|
||||||
- name: Dependencies (Linux musl)
|
- name: Dependencies (Linux musl)
|
||||||
if: contains(matrix.container, 'alpine')
|
if: contains(matrix.container, 'alpine')
|
||||||
run: apk add build-base git python3 font-noto --update-cache
|
run: apk add build-base git python3 font-noto --update-cache
|
||||||
- name: Dependencies (Python 3.11 - macOS, Windows)
|
- name: Dependencies (Python 3.10 - macOS, Windows)
|
||||||
if: contains(matrix.os, 'macos') || contains(matrix.os, 'windows')
|
if: contains(matrix.os, 'macos') || contains(matrix.os, 'windows')
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: "3.12"
|
python-version: '3.10'
|
||||||
- name: Dependencies (Node.js)
|
- name: Dependencies (Node.js - macOS, Windows)
|
||||||
if: "!contains(matrix.platform, 'linuxmusl')"
|
if: contains(matrix.os, 'macos') || contains(matrix.os, 'windows')
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.nodejs_version }}
|
node-version: ${{ matrix.nodejs_version }}
|
||||||
architecture: ${{ matrix.nodejs_arch }}
|
architecture: ${{ matrix.nodejs_arch }}
|
||||||
- uses: actions/checkout@v4
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Fix working directory ownership
|
||||||
|
if: matrix.container
|
||||||
|
run: chown root.root .
|
||||||
- name: Install
|
- name: Install
|
||||||
run: npm install --build-from-source
|
run: npm install --build-from-source --unsafe-perm
|
||||||
- name: Test
|
- name: Test
|
||||||
run: npm test
|
run: npm test
|
||||||
- name: Populate npm package
|
- name: Prebuild
|
||||||
if: matrix.package
|
if: matrix.prebuild && startsWith(github.ref, 'refs/tags/')
|
||||||
run: npm run package-from-local-build
|
env:
|
||||||
- uses: actions/upload-artifact@v4
|
prebuild_upload: ${{ secrets.GITHUB_TOKEN }}
|
||||||
if: matrix.package
|
run: npx prebuild --runtime napi --target 7
|
||||||
with:
|
|
||||||
name: ${{ matrix.platform }}
|
|
||||||
path: npm/${{ matrix.platform }}
|
|
||||||
retention-days: 1
|
|
||||||
if-no-files-found: error
|
|
||||||
build-linuxmusl-arm-64:
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
name: "build-linuxmusl-arm64 [Node.js ${{ matrix.nodejs_version_major }}] ${{ matrix.package && '[package]' }}"
|
|
||||||
runs-on: ubuntu-24.04-arm
|
|
||||||
container:
|
|
||||||
image: ${{ matrix.container }}
|
|
||||||
volumes:
|
|
||||||
- /:/host
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- container: node:18-alpine3.17
|
|
||||||
nodejs_version_major: 18
|
|
||||||
package: true
|
|
||||||
- container: node:20-alpine3.18
|
|
||||||
nodejs_version_major: 20
|
|
||||||
steps:
|
|
||||||
- name: Allow Linux musl containers on ARM64 runners # https://github.com/actions/runner/issues/801#issuecomment-2394425757
|
|
||||||
shell: sh
|
|
||||||
run: |
|
|
||||||
apk add nodejs
|
|
||||||
sed -i "s:ID=alpine:ID=NotpineForGHA:" /etc/os-release
|
|
||||||
cd /host/home/runner/runners/*/externals/
|
|
||||||
rm -rf node20/*
|
|
||||||
mkdir node20/bin
|
|
||||||
ln -s /usr/bin/node node20/bin/node
|
|
||||||
- name: Dependencies
|
|
||||||
run: apk add build-base git python3 font-noto --update-cache
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Install
|
|
||||||
run: npm install --build-from-source
|
|
||||||
- name: Test
|
|
||||||
run: npm test
|
|
||||||
- name: Populate npm package
|
|
||||||
if: matrix.package
|
|
||||||
run: npm run package-from-local-build
|
|
||||||
- uses: actions/upload-artifact@v4
|
|
||||||
if: matrix.package
|
|
||||||
with:
|
|
||||||
name: linuxmusl-arm64
|
|
||||||
path: npm/linuxmusl-arm64
|
|
||||||
retention-days: 1
|
|
||||||
if-no-files-found: error
|
|
||||||
build-qemu:
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
name: "build-${{ matrix.platform }} [Node.js ${{ matrix.nodejs_version_major }}] [package]"
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- platform: linux-arm
|
|
||||||
distro: bullseye
|
|
||||||
run_on_arch: armv6
|
|
||||||
nodejs_arch: armv6l
|
|
||||||
nodejs_hostname: unofficial-builds.nodejs.org
|
|
||||||
nodejs_version: "18.17.0"
|
|
||||||
nodejs_version_major: 18
|
|
||||||
- platform: linux-s390x
|
|
||||||
distro: bullseye
|
|
||||||
run_on_arch: s390x
|
|
||||||
nodejs_arch: s390x
|
|
||||||
nodejs_hostname: nodejs.org
|
|
||||||
nodejs_version: "18.17.0"
|
|
||||||
nodejs_version_major: 18
|
|
||||||
- platform: linux-ppc64
|
|
||||||
distro: bullseye
|
|
||||||
run_on_arch: ppc64le
|
|
||||||
nodejs_arch: ppc64le
|
|
||||||
nodejs_hostname: nodejs.org
|
|
||||||
nodejs_version: "18.17.0"
|
|
||||||
nodejs_version_major: 18
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: uraimo/run-on-arch-action@v3
|
|
||||||
with:
|
|
||||||
arch: ${{ matrix.run_on_arch }}
|
|
||||||
distro: ${{ matrix.distro }}
|
|
||||||
run: |
|
|
||||||
apt-get update
|
|
||||||
apt-get install -y curl g++ git libatomic1 make python3 xz-utils
|
|
||||||
mkdir /opt/nodejs
|
|
||||||
curl --silent https://${{ matrix.nodejs_hostname }}/download/release/v${{ matrix.nodejs_version}}/node-v${{ matrix.nodejs_version}}-linux-${{ matrix.nodejs_arch }}.tar.xz | tar xJC /opt/nodejs --strip-components=1
|
|
||||||
export PATH=$PATH:/opt/nodejs/bin
|
|
||||||
npm install --build-from-source
|
|
||||||
npx mocha --no-config --spec=test/unit/io.js --timeout=30000
|
|
||||||
npm run package-from-local-build
|
|
||||||
- uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: ${{ matrix.platform }}
|
|
||||||
path: npm/${{ matrix.platform }}
|
|
||||||
retention-days: 1
|
|
||||||
if-no-files-found: error
|
|
||||||
build-emscripten:
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
name: "build-wasm32 [package]"
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
container: "emscripten/emsdk:4.0.10"
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Dependencies
|
|
||||||
run: apt-get update && apt-get install -y pkg-config
|
|
||||||
- name: Dependencies (Node.js)
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: "20"
|
|
||||||
- name: Install
|
|
||||||
run: emmake npm install --build-from-source
|
|
||||||
- name: Verify emscripten versions match
|
|
||||||
run: |
|
|
||||||
EMSCRIPTEN_VERSION_LIBVIPS=$(node -p "require('@img/sharp-libvips-dev-wasm32/versions').emscripten")
|
|
||||||
EMSCRIPTEN_VERSION_SHARP=$(emcc -dumpversion)
|
|
||||||
echo "libvips built with emscripten $EMSCRIPTEN_VERSION_LIBVIPS"
|
|
||||||
echo "sharp built with emscripten $EMSCRIPTEN_VERSION_SHARP"
|
|
||||||
test "$EMSCRIPTEN_VERSION_LIBVIPS" = "$EMSCRIPTEN_VERSION_SHARP"
|
|
||||||
- name: Test
|
|
||||||
run: emmake npm test
|
|
||||||
- name: Populate npm package
|
|
||||||
run: emmake npm run package-from-local-build
|
|
||||||
- uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: wasm32
|
|
||||||
path: npm/wasm32
|
|
||||||
retention-days: 1
|
|
||||||
if-no-files-found: error
|
|
||||||
release:
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
needs:
|
|
||||||
- build-native
|
|
||||||
- build-linuxmusl-arm-64
|
|
||||||
- build-qemu
|
|
||||||
- build-emscripten
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
path: npm
|
|
||||||
- name: Create npm workspace tarball
|
|
||||||
run: tar -vcaf npm-workspace.tar.xz --directory npm --exclude=from-local-build.js .
|
|
||||||
- name: Parse semver for tag
|
|
||||||
if: startsWith(github.ref, 'refs/tags/v')
|
|
||||||
uses: madhead/semver-utils@v4
|
|
||||||
id: semver
|
|
||||||
with:
|
|
||||||
version: ${{ github.ref_name }}
|
|
||||||
- name: Create GitHub release for tag
|
|
||||||
if: startsWith(github.ref, 'refs/tags/v')
|
|
||||||
uses: ncipollo/release-action@v1
|
|
||||||
with:
|
|
||||||
artifacts: npm-workspace.tar.xz
|
|
||||||
artifactContentType: application/x-xz
|
|
||||||
prerelease: ${{ contains(github.ref, '-rc') }}
|
|
||||||
makeLatest: ${{ !contains(github.ref, '-rc') }}
|
|
||||||
bodyFile: "docs/src/content/docs/changelog/v${{ steps.semver.outputs.major }}.${{ steps.semver.outputs.minor }}.${{ steps.semver.outputs.patch }}.md"
|
|
||||||
|
194
.github/workflows/npm.yml
vendored
@ -1,194 +0,0 @@
|
|||||||
name: "CI: npm smoke test"
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- "v**"
|
|
||||||
|
|
||||||
permissions: {}
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
release-smoke-test:
|
|
||||||
name: "${{ github.ref_name }} ${{ matrix.name }}"
|
|
||||||
runs-on: ${{ matrix.runs-on }}
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- name: linux-x64-node-npm
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
runtime: node
|
|
||||||
package-manager: npm
|
|
||||||
- name: linux-x64-node-pnpm
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
runtime: node
|
|
||||||
package-manager: pnpm
|
|
||||||
- name: linux-x64-node-yarn
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
runtime: node
|
|
||||||
package-manager: yarn
|
|
||||||
- name: linux-x64-node-yarn-pnp
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
runtime: node
|
|
||||||
package-manager: yarn-pnp
|
|
||||||
- name: linux-x64-node-yarn-v1
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
runtime: node
|
|
||||||
package-manager: yarn-v1
|
|
||||||
- name: linux-x64-deno
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
runtime: deno
|
|
||||||
- name: linux-x64-bun
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
runtime: bun
|
|
||||||
|
|
||||||
- name: darwin-x64-node-npm
|
|
||||||
runs-on: macos-13
|
|
||||||
runtime: node
|
|
||||||
package-manager: npm
|
|
||||||
- name: darwin-x64-node-pnpm
|
|
||||||
runs-on: macos-13
|
|
||||||
runtime: node
|
|
||||||
package-manager: pnpm
|
|
||||||
- name: darwin-x64-node-yarn
|
|
||||||
runs-on: macos-13
|
|
||||||
runtime: node
|
|
||||||
package-manager: yarn
|
|
||||||
- name: darwin-x64-node-yarn-pnp
|
|
||||||
runs-on: macos-13
|
|
||||||
runtime: node
|
|
||||||
package-manager: yarn-pnp
|
|
||||||
- name: darwin-x64-node-yarn-v1
|
|
||||||
runs-on: macos-13
|
|
||||||
runtime: node
|
|
||||||
package-manager: yarn-v1
|
|
||||||
- name: darwin-x64-deno
|
|
||||||
runs-on: macos-13
|
|
||||||
runtime: deno
|
|
||||||
- name: darwin-x64-bun
|
|
||||||
runs-on: macos-13
|
|
||||||
runtime: bun
|
|
||||||
|
|
||||||
- name: win32-x64-node-npm
|
|
||||||
runs-on: windows-2022
|
|
||||||
runtime: node
|
|
||||||
package-manager: npm
|
|
||||||
- name: win32-x64-node-pnpm
|
|
||||||
runs-on: windows-2022
|
|
||||||
runtime: node
|
|
||||||
package-manager: pnpm
|
|
||||||
- name: win32-x64-node-yarn
|
|
||||||
runs-on: windows-2022
|
|
||||||
runtime: node
|
|
||||||
package-manager: yarn
|
|
||||||
- name: win32-x64-node-yarn-pnp
|
|
||||||
runs-on: windows-2022
|
|
||||||
runtime: node
|
|
||||||
package-manager: yarn-pnp
|
|
||||||
- name: win32-x64-node-yarn-v1
|
|
||||||
runs-on: windows-2022
|
|
||||||
runtime: node
|
|
||||||
package-manager: yarn-v1
|
|
||||||
- name: win32-x64-deno
|
|
||||||
runs-on: windows-2022
|
|
||||||
runtime: deno
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Install Node.js
|
|
||||||
if: ${{ matrix.runtime == 'node' }}
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 20
|
|
||||||
- name: Install pnpm
|
|
||||||
if: ${{ matrix.package-manager == 'pnpm' }}
|
|
||||||
uses: pnpm/action-setup@v4
|
|
||||||
with:
|
|
||||||
version: 8
|
|
||||||
- name: Install Deno
|
|
||||||
if: ${{ matrix.runtime == 'deno' }}
|
|
||||||
uses: denoland/setup-deno@v1
|
|
||||||
with:
|
|
||||||
deno-version: v1.x
|
|
||||||
- name: Install Bun
|
|
||||||
if: ${{ matrix.runtime == 'bun' }}
|
|
||||||
uses: oven-sh/setup-bun@v2
|
|
||||||
with:
|
|
||||||
bun-version: latest
|
|
||||||
|
|
||||||
- name: Version
|
|
||||||
id: version
|
|
||||||
uses: actions/github-script@v7
|
|
||||||
with:
|
|
||||||
script: |
|
|
||||||
core.setOutput('semver', context.ref.replace('refs/tags/v',''))
|
|
||||||
- name: Create package.json
|
|
||||||
uses: DamianReeves/write-file-action@v1.3
|
|
||||||
with:
|
|
||||||
path: package.json
|
|
||||||
contents: |
|
|
||||||
{
|
|
||||||
"dependencies": {
|
|
||||||
"sharp": "${{ steps.version.outputs.semver }}"
|
|
||||||
},
|
|
||||||
"type": "module"
|
|
||||||
}
|
|
||||||
- name: Create release.mjs
|
|
||||||
uses: DamianReeves/write-file-action@v1.3
|
|
||||||
with:
|
|
||||||
path: release.mjs
|
|
||||||
contents: |
|
|
||||||
import { deepStrictEqual } from 'node:assert';
|
|
||||||
import sharp from 'sharp';
|
|
||||||
deepStrictEqual(['.jpg', '.jpeg', '.jpe', '.jfif'], sharp.format.jpeg.input.fileSuffix);
|
|
||||||
|
|
||||||
- name: Run with Node.js + npm
|
|
||||||
if: ${{ matrix.package-manager == 'npm' }}
|
|
||||||
run: |
|
|
||||||
npm install --ignore-scripts
|
|
||||||
node release.mjs
|
|
||||||
|
|
||||||
- name: Run with Node.js + pnpm
|
|
||||||
if: ${{ matrix.package-manager == 'pnpm' }}
|
|
||||||
run: |
|
|
||||||
pnpm install --ignore-scripts
|
|
||||||
node release.mjs
|
|
||||||
|
|
||||||
- name: Run with Node.js + yarn
|
|
||||||
if: ${{ matrix.package-manager == 'yarn' }}
|
|
||||||
run: |
|
|
||||||
corepack enable
|
|
||||||
yarn set version stable
|
|
||||||
yarn config set enableImmutableInstalls false
|
|
||||||
yarn config set enableScripts false
|
|
||||||
yarn config set nodeLinker node-modules
|
|
||||||
yarn install
|
|
||||||
node release.mjs
|
|
||||||
|
|
||||||
- name: Run with Node.js + yarn pnp
|
|
||||||
if: ${{ matrix.package-manager == 'yarn-pnp' }}
|
|
||||||
run: |
|
|
||||||
corepack enable
|
|
||||||
yarn set version stable
|
|
||||||
yarn config set enableImmutableInstalls false
|
|
||||||
yarn config set enableScripts false
|
|
||||||
yarn config set nodeLinker pnp
|
|
||||||
yarn install
|
|
||||||
yarn node release.mjs
|
|
||||||
|
|
||||||
- name: Run with Node.js + yarn v1
|
|
||||||
if: ${{ matrix.package-manager == 'yarn-v1' }}
|
|
||||||
run: |
|
|
||||||
corepack enable
|
|
||||||
yarn set version classic
|
|
||||||
yarn install
|
|
||||||
node release.mjs
|
|
||||||
|
|
||||||
- name: Run with Deno
|
|
||||||
if: ${{ matrix.runtime == 'deno' }}
|
|
||||||
run: deno run --allow-read --allow-ffi release.mjs
|
|
||||||
|
|
||||||
- name: Run with Bun
|
|
||||||
if: ${{ matrix.runtime == 'bun' }}
|
|
||||||
run: |
|
|
||||||
bun install --ignore-scripts
|
|
||||||
bun release.mjs
|
|
13
.gitignore
vendored
@ -1,18 +1,19 @@
|
|||||||
src/build
|
build
|
||||||
src/node_modules
|
|
||||||
node_modules
|
node_modules
|
||||||
/coverage
|
/coverage
|
||||||
npm/*/*
|
|
||||||
!npm/*/package.json
|
|
||||||
test/bench/node_modules
|
test/bench/node_modules
|
||||||
test/fixtures/output*
|
test/fixtures/output*
|
||||||
test/fixtures/vips-properties.xml
|
test/fixtures/vips-properties.xml
|
||||||
test/leak/libvips.supp
|
test/leak/libvips.supp
|
||||||
|
test/saliency/report.json
|
||||||
|
test/saliency/Image*
|
||||||
|
test/saliency/[Uu]serData*
|
||||||
|
!test/saliency/userData.js
|
||||||
|
vendor
|
||||||
|
.gitattributes
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.nyc_output
|
.nyc_output
|
||||||
.vscode/
|
.vscode/
|
||||||
package-lock.json
|
package-lock.json
|
||||||
.idea
|
.idea
|
||||||
.firebase
|
.firebase
|
||||||
.astro
|
|
||||||
docs/dist
|
|
||||||
|
4
.prebuildrc
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"include-regex": "(sharp-.+\\.node|libvips-cpp\\.dll)",
|
||||||
|
"strip": true
|
||||||
|
}
|
10
README.md
@ -1,15 +1,11 @@
|
|||||||
# sharp
|
# sharp
|
||||||
|
|
||||||
<img src="https://sharp.pixelplumbing.com/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">
|
||||||
|
|
||||||
The typical use case for this high speed Node-API module
|
The typical use case for this high speed Node.js module
|
||||||
is to convert large images in common formats to
|
is to convert large images in common formats to
|
||||||
smaller, web-friendly JPEG, PNG, WebP, GIF and AVIF images of varying dimensions.
|
smaller, web-friendly JPEG, PNG, WebP, GIF and AVIF images of varying dimensions.
|
||||||
|
|
||||||
It can be used with all JavaScript runtimes
|
|
||||||
that provide support for Node-API v9, including
|
|
||||||
Node.js (^18.17.0 or >= 20.3.0), Deno and Bun.
|
|
||||||
|
|
||||||
Resizing an image is typically 4x-5x faster than using the
|
Resizing an image is typically 4x-5x faster than using the
|
||||||
quickest ImageMagick and GraphicsMagick settings
|
quickest ImageMagick and GraphicsMagick settings
|
||||||
due to its use of [libvips](https://github.com/libvips/libvips).
|
due to its use of [libvips](https://github.com/libvips/libvips).
|
||||||
@ -20,7 +16,7 @@ Lanczos resampling ensures quality is not sacrificed for speed.
|
|||||||
As well as image resizing, operations such as
|
As well as image resizing, operations such as
|
||||||
rotation, extraction, compositing and gamma correction are available.
|
rotation, extraction, compositing and gamma correction are available.
|
||||||
|
|
||||||
Most modern macOS, Windows and Linux systems
|
Most modern macOS, Windows and Linux systems running Node.js >= 14.15.0
|
||||||
do not require any additional install or runtime dependencies.
|
do not require any additional install or runtime dependencies.
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
236
binding.gyp
Normal file
@ -0,0 +1,236 @@
|
|||||||
|
{
|
||||||
|
'variables': {
|
||||||
|
'vips_version': '<!(node -p "require(\'./lib/libvips\').minimumLibvipsVersion")',
|
||||||
|
'platform_and_arch': '<!(node -p "require(\'./lib/platform\')()")',
|
||||||
|
'sharp_vendor_dir': './vendor/<(vips_version)/<(platform_and_arch)'
|
||||||
|
},
|
||||||
|
'targets': [{
|
||||||
|
'target_name': 'libvips-cpp',
|
||||||
|
'conditions': [
|
||||||
|
['OS == "win"', {
|
||||||
|
# Build libvips C++ binding for Windows due to MSVC std library ABI changes
|
||||||
|
'type': 'shared_library',
|
||||||
|
'defines': [
|
||||||
|
'VIPS_CPLUSPLUS_EXPORTS',
|
||||||
|
'_ALLOW_KEYWORD_MACROS'
|
||||||
|
],
|
||||||
|
'sources': [
|
||||||
|
'src/libvips/cplusplus/VConnection.cpp',
|
||||||
|
'src/libvips/cplusplus/VError.cpp',
|
||||||
|
'src/libvips/cplusplus/VImage.cpp',
|
||||||
|
'src/libvips/cplusplus/VInterpolate.cpp',
|
||||||
|
'src/libvips/cplusplus/VRegion.cpp'
|
||||||
|
],
|
||||||
|
'include_dirs': [
|
||||||
|
'<(sharp_vendor_dir)/include',
|
||||||
|
'<(sharp_vendor_dir)/include/glib-2.0',
|
||||||
|
'<(sharp_vendor_dir)/lib/glib-2.0/include'
|
||||||
|
],
|
||||||
|
'link_settings': {
|
||||||
|
'library_dirs': ['<(sharp_vendor_dir)/lib'],
|
||||||
|
'libraries': [
|
||||||
|
'libvips.lib',
|
||||||
|
'libglib-2.0.lib',
|
||||||
|
'libgobject-2.0.lib'
|
||||||
|
],
|
||||||
|
},
|
||||||
|
'configurations': {
|
||||||
|
'Release': {
|
||||||
|
'msvs_settings': {
|
||||||
|
'VCCLCompilerTool': {
|
||||||
|
'ExceptionHandling': 1,
|
||||||
|
'Optimization': 1,
|
||||||
|
'WholeProgramOptimization': 'true'
|
||||||
|
},
|
||||||
|
'VCLibrarianTool': {
|
||||||
|
'AdditionalOptions': [
|
||||||
|
'/LTCG:INCREMENTAL'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
'VCLinkerTool': {
|
||||||
|
'ImageHasSafeExceptionHandlers': 'false',
|
||||||
|
'OptimizeReferences': 2,
|
||||||
|
'EnableCOMDATFolding': 2,
|
||||||
|
'LinkIncremental': 1,
|
||||||
|
'AdditionalOptions': [
|
||||||
|
'/LTCG:INCREMENTAL'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
'msvs_disabled_warnings': [
|
||||||
|
4275
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
# Ignore this target for non-Windows
|
||||||
|
'type': 'none'
|
||||||
|
}]
|
||||||
|
]
|
||||||
|
}, {
|
||||||
|
'target_name': 'sharp-<(platform_and_arch)',
|
||||||
|
'defines': [
|
||||||
|
'NAPI_VERSION=7',
|
||||||
|
'NODE_ADDON_API_DISABLE_DEPRECATED',
|
||||||
|
'NODE_API_SWALLOW_UNTHROWABLE_EXCEPTIONS'
|
||||||
|
],
|
||||||
|
'dependencies': [
|
||||||
|
'<!(node -p "require(\'node-addon-api\').gyp")',
|
||||||
|
'libvips-cpp'
|
||||||
|
],
|
||||||
|
'variables': {
|
||||||
|
'runtime_link%': 'shared',
|
||||||
|
'conditions': [
|
||||||
|
['OS != "win"', {
|
||||||
|
'pkg_config_path': '<!(node -p "require(\'./lib/libvips\').pkgConfigPath()")',
|
||||||
|
'use_global_libvips': '<!(node -p "Boolean(require(\'./lib/libvips\').useGlobalLibvips()).toString()")'
|
||||||
|
}, {
|
||||||
|
'pkg_config_path': '',
|
||||||
|
'use_global_libvips': ''
|
||||||
|
}]
|
||||||
|
]
|
||||||
|
},
|
||||||
|
'sources': [
|
||||||
|
'src/common.cc',
|
||||||
|
'src/metadata.cc',
|
||||||
|
'src/stats.cc',
|
||||||
|
'src/operations.cc',
|
||||||
|
'src/pipeline.cc',
|
||||||
|
'src/utilities.cc',
|
||||||
|
'src/sharp.cc'
|
||||||
|
],
|
||||||
|
'include_dirs': [
|
||||||
|
'<!(node -p "require(\'node-addon-api\').include_dir")',
|
||||||
|
],
|
||||||
|
'conditions': [
|
||||||
|
['use_global_libvips == "true"', {
|
||||||
|
# Use pkg-config for include and lib
|
||||||
|
'include_dirs': ['<!@(PKG_CONFIG_PATH="<(pkg_config_path)" pkg-config --cflags-only-I vips-cpp vips glib-2.0 | sed s\/-I//g)'],
|
||||||
|
'conditions': [
|
||||||
|
['runtime_link == "static"', {
|
||||||
|
'libraries': ['<!@(PKG_CONFIG_PATH="<(pkg_config_path)" pkg-config --libs --static vips-cpp)']
|
||||||
|
}, {
|
||||||
|
'libraries': ['<!@(PKG_CONFIG_PATH="<(pkg_config_path)" pkg-config --libs vips-cpp)']
|
||||||
|
}],
|
||||||
|
['OS == "linux"', {
|
||||||
|
'defines': [
|
||||||
|
# Inspect libvips-cpp.so to determine which C++11 ABI version was used and set _GLIBCXX_USE_CXX11_ABI accordingly. This is quite horrible.
|
||||||
|
'_GLIBCXX_USE_CXX11_ABI=<!(if readelf -Ws "$(PKG_CONFIG_PATH="<(pkg_config_path)" pkg-config --variable libdir vips-cpp)/libvips-cpp.so" | c++filt | grep -qF __cxx11;then echo "1";else echo "0";fi)'
|
||||||
|
]
|
||||||
|
}]
|
||||||
|
]
|
||||||
|
}, {
|
||||||
|
# Use pre-built libvips stored locally within node_modules
|
||||||
|
'include_dirs': [
|
||||||
|
'<(sharp_vendor_dir)/include',
|
||||||
|
'<(sharp_vendor_dir)/include/glib-2.0',
|
||||||
|
'<(sharp_vendor_dir)/lib/glib-2.0/include'
|
||||||
|
],
|
||||||
|
'conditions': [
|
||||||
|
['OS == "win"', {
|
||||||
|
'defines': [
|
||||||
|
'_ALLOW_KEYWORD_MACROS',
|
||||||
|
'_FILE_OFFSET_BITS=64'
|
||||||
|
],
|
||||||
|
'link_settings': {
|
||||||
|
'library_dirs': ['<(sharp_vendor_dir)/lib'],
|
||||||
|
'libraries': [
|
||||||
|
'libvips.lib',
|
||||||
|
'libglib-2.0.lib',
|
||||||
|
'libgobject-2.0.lib'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
['OS == "mac"', {
|
||||||
|
'link_settings': {
|
||||||
|
'library_dirs': ['../<(sharp_vendor_dir)/lib'],
|
||||||
|
'libraries': [
|
||||||
|
'libvips-cpp.42.dylib'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
'xcode_settings': {
|
||||||
|
'OTHER_LDFLAGS': [
|
||||||
|
# Ensure runtime linking is relative to sharp.node
|
||||||
|
'-Wl,-rpath,\'@loader_path/../../<(sharp_vendor_dir)/lib\''
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
['OS == "linux"', {
|
||||||
|
'defines': [
|
||||||
|
'_GLIBCXX_USE_CXX11_ABI=1'
|
||||||
|
],
|
||||||
|
'link_settings': {
|
||||||
|
'library_dirs': ['../<(sharp_vendor_dir)/lib'],
|
||||||
|
'libraries': [
|
||||||
|
'-l:libvips-cpp.so.42'
|
||||||
|
],
|
||||||
|
'ldflags': [
|
||||||
|
# Ensure runtime linking is relative to sharp.node
|
||||||
|
'-Wl,-s -Wl,--disable-new-dtags -Wl,-rpath=\'$$ORIGIN/../../<(sharp_vendor_dir)/lib\''
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
]
|
||||||
|
}]
|
||||||
|
],
|
||||||
|
'cflags_cc': [
|
||||||
|
'-std=c++0x',
|
||||||
|
'-fexceptions',
|
||||||
|
'-Wall',
|
||||||
|
'-Os'
|
||||||
|
],
|
||||||
|
'xcode_settings': {
|
||||||
|
'CLANG_CXX_LANGUAGE_STANDARD': 'c++11',
|
||||||
|
'MACOSX_DEPLOYMENT_TARGET': '10.13',
|
||||||
|
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
|
||||||
|
'GCC_ENABLE_CPP_RTTI': 'YES',
|
||||||
|
'OTHER_CPLUSPLUSFLAGS': [
|
||||||
|
'-fexceptions',
|
||||||
|
'-Wall',
|
||||||
|
'-Oz'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
'configurations': {
|
||||||
|
'Release': {
|
||||||
|
'conditions': [
|
||||||
|
['OS == "linux"', {
|
||||||
|
'cflags_cc': [
|
||||||
|
'-Wno-cast-function-type'
|
||||||
|
]
|
||||||
|
}],
|
||||||
|
['target_arch == "arm"', {
|
||||||
|
'cflags_cc': [
|
||||||
|
'-Wno-psabi'
|
||||||
|
]
|
||||||
|
}],
|
||||||
|
['OS == "win"', {
|
||||||
|
'msvs_settings': {
|
||||||
|
'VCCLCompilerTool': {
|
||||||
|
'ExceptionHandling': 1,
|
||||||
|
'Optimization': 1,
|
||||||
|
'WholeProgramOptimization': 'true'
|
||||||
|
},
|
||||||
|
'VCLibrarianTool': {
|
||||||
|
'AdditionalOptions': [
|
||||||
|
'/LTCG:INCREMENTAL'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
'VCLinkerTool': {
|
||||||
|
'ImageHasSafeExceptionHandlers': 'false',
|
||||||
|
'OptimizeReferences': 2,
|
||||||
|
'EnableCOMDATFolding': 2,
|
||||||
|
'LinkIncremental': 1,
|
||||||
|
'AdditionalOptions': [
|
||||||
|
'/LTCG:INCREMENTAL'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
'msvs_disabled_warnings': [
|
||||||
|
4275
|
||||||
|
]
|
||||||
|
}]
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}]
|
||||||
|
}
|
@ -1,17 +1,11 @@
|
|||||||
---
|
# sharp
|
||||||
title: "High performance Node.js image processing"
|
|
||||||
---
|
|
||||||
|
|
||||||
<img src="/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">
|
||||||
|
|
||||||
The typical use case for this high speed Node-API module
|
The typical use case for this high speed Node.js module
|
||||||
is to convert large images in common formats to
|
is to convert large images in common formats to
|
||||||
smaller, web-friendly JPEG, PNG, WebP, GIF and AVIF images of varying dimensions.
|
smaller, web-friendly JPEG, PNG, WebP, GIF and AVIF images of varying dimensions.
|
||||||
|
|
||||||
It can be used with all JavaScript runtimes
|
|
||||||
that provide support for Node-API v9, including
|
|
||||||
Node.js >= 18.17.0, Deno and Bun.
|
|
||||||
|
|
||||||
Resizing an image is typically 4x-5x faster than using the
|
Resizing an image is typically 4x-5x faster than using the
|
||||||
quickest ImageMagick and GraphicsMagick settings
|
quickest ImageMagick and GraphicsMagick settings
|
||||||
due to its use of [libvips](https://github.com/libvips/libvips).
|
due to its use of [libvips](https://github.com/libvips/libvips).
|
||||||
@ -22,14 +16,10 @@ Lanczos resampling ensures quality is not sacrificed for speed.
|
|||||||
As well as image resizing, operations such as
|
As well as image resizing, operations such as
|
||||||
rotation, extraction, compositing and gamma correction are available.
|
rotation, extraction, compositing and gamma correction are available.
|
||||||
|
|
||||||
Most modern macOS, Windows and Linux systems
|
Most modern macOS, Windows and Linux systems running Node.js >= 14.15.0
|
||||||
do not require any additional install or runtime dependencies.
|
do not require any additional install or runtime dependencies.
|
||||||
|
|
||||||
```sh
|
### Formats
|
||||||
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.
|
||||||
|
|
||||||
@ -43,7 +33,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,
|
||||||
@ -58,7 +48,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,
|
||||||
@ -77,12 +67,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,12 +1,5 @@
|
|||||||
---
|
|
||||||
# This file was auto-generated from JSDoc in lib/channel.js
|
|
||||||
title: Channel manipulation
|
|
||||||
---
|
|
||||||
|
|
||||||
## removeAlpha
|
## removeAlpha
|
||||||
> 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).
|
||||||
|
|
||||||
@ -22,8 +15,6 @@ sharp('rgba.png')
|
|||||||
|
|
||||||
|
|
||||||
## ensureAlpha
|
## ensureAlpha
|
||||||
> ensureAlpha([alpha]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Ensure the output image has an alpha transparency channel.
|
Ensure the output image has an alpha transparency channel.
|
||||||
If missing, the added alpha channel will have the specified
|
If missing, the added alpha channel will have the specified
|
||||||
transparency level, defaulting to fully-opaque (1).
|
transparency level, defaulting to fully-opaque (1).
|
||||||
@ -57,8 +48,6 @@ const rgba = await sharp(rgb)
|
|||||||
|
|
||||||
|
|
||||||
## extractChannel
|
## extractChannel
|
||||||
> extractChannel(channel) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Extract a single channel from a multi-channel image.
|
Extract a single channel from a multi-channel image.
|
||||||
|
|
||||||
|
|
||||||
@ -89,8 +78,6 @@ const [red1, red2, ...] = await sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## joinChannel
|
## joinChannel
|
||||||
> joinChannel(images, options) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Join one or more channels to the image.
|
Join one or more channels to the image.
|
||||||
The meaning of the added channels depends on the output colourspace, set with `toColourspace()`.
|
The meaning of the added channels depends on the output colourspace, set with `toColourspace()`.
|
||||||
By default the output image will be web-friendly sRGB, with additional channels interpreted as alpha channels.
|
By default the output image will be web-friendly sRGB, with additional channels interpreted as alpha channels.
|
||||||
@ -115,8 +102,6 @@ For raw pixel input, the `options` object should contain a `raw` attribute, whic
|
|||||||
|
|
||||||
|
|
||||||
## bandbool
|
## bandbool
|
||||||
> bandbool(boolOp) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Perform a bitwise boolean operation on all input image channels (bands) to produce a single channel output image.
|
Perform a bitwise boolean operation on all input image channels (bands) to produce a single channel output image.
|
||||||
|
|
||||||
|
|
@ -1,12 +1,5 @@
|
|||||||
---
|
|
||||||
# This file was auto-generated from JSDoc in lib/colour.js
|
|
||||||
title: Colour manipulation
|
|
||||||
---
|
|
||||||
|
|
||||||
## tint
|
## tint
|
||||||
> tint(tint) ⇒ <code>Sharp</code>
|
Tint the image using the provided chroma while preserving the image luminance.
|
||||||
|
|
||||||
Tint the image using the provided colour.
|
|
||||||
An alpha channel may be present and will be unchanged by the operation.
|
An alpha channel may be present and will be unchanged by the operation.
|
||||||
|
|
||||||
|
|
||||||
@ -17,7 +10,7 @@ An alpha channel may be present and will be unchanged by the operation.
|
|||||||
|
|
||||||
| Param | Type | Description |
|
| Param | Type | Description |
|
||||||
| --- | --- | --- |
|
| --- | --- | --- |
|
||||||
| tint | <code>string</code> \| <code>Object</code> | Parsed by the [color](https://www.npmjs.org/package/color) module. |
|
| rgb | <code>string</code> \| <code>Object</code> | parsed by the [color](https://www.npmjs.org/package/color) module to extract chroma values. |
|
||||||
|
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
@ -28,13 +21,11 @@ const output = await sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## greyscale
|
## greyscale
|
||||||
> greyscale([greyscale]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Convert to 8-bit greyscale; 256 shades of grey.
|
Convert to 8-bit greyscale; 256 shades of grey.
|
||||||
This is a linear operation. If the input image is in a non-linear colour space such as sRGB, use `gamma()` with `greyscale()` for the best results.
|
This is a linear operation. If the input image is in a non-linear colour space such as sRGB, use `gamma()` with `greyscale()` for the best results.
|
||||||
By default the output image will be web-friendly sRGB and contain three (identical) colour channels.
|
By default the output image will be web-friendly sRGB and contain three (identical) color channels.
|
||||||
This may be overridden by other sharp operations such as `toColourspace('b-w')`,
|
This may be overridden by other sharp operations such as `toColourspace('b-w')`,
|
||||||
which will produce an output image containing one colour channel.
|
which will produce an output image containing one color channel.
|
||||||
An alpha channel may be present, and will be unchanged by the operation.
|
An alpha channel may be present, and will be unchanged by the operation.
|
||||||
|
|
||||||
|
|
||||||
@ -50,8 +41,6 @@ const output = await sharp(input).greyscale().toBuffer();
|
|||||||
|
|
||||||
|
|
||||||
## grayscale
|
## grayscale
|
||||||
> grayscale([grayscale]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Alternative spelling of `greyscale`.
|
Alternative spelling of `greyscale`.
|
||||||
|
|
||||||
|
|
||||||
@ -63,14 +52,14 @@ Alternative spelling of `greyscale`.
|
|||||||
|
|
||||||
|
|
||||||
## pipelineColourspace
|
## pipelineColourspace
|
||||||
> pipelineColourspace([colourspace]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Set the pipeline colourspace.
|
Set the pipeline colourspace.
|
||||||
|
|
||||||
The input image will be converted to the provided colourspace at the start of the pipeline.
|
The input image will be converted to the provided colourspace at the start of the pipeline.
|
||||||
All operations will use this colourspace before converting to the output colourspace,
|
All operations will use this colourspace before converting to the output colourspace,
|
||||||
as defined by [toColourspace](#tocolourspace).
|
as defined by [toColourspace](#tocolourspace).
|
||||||
|
|
||||||
|
This feature is experimental and has not yet been fully-tested with all operations.
|
||||||
|
|
||||||
|
|
||||||
**Throws**:
|
**Throws**:
|
||||||
|
|
||||||
@ -93,8 +82,6 @@ await sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## pipelineColorspace
|
## pipelineColorspace
|
||||||
> pipelineColorspace([colorspace]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Alternative spelling of `pipelineColourspace`.
|
Alternative spelling of `pipelineColourspace`.
|
||||||
|
|
||||||
|
|
||||||
@ -110,8 +97,6 @@ Alternative spelling of `pipelineColourspace`.
|
|||||||
|
|
||||||
|
|
||||||
## toColourspace
|
## toColourspace
|
||||||
> toColourspace([colourspace]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Set the output colourspace.
|
Set the output colourspace.
|
||||||
By default output image will be web-friendly sRGB, with additional channels interpreted as alpha channels.
|
By default output image will be web-friendly sRGB, with additional channels interpreted as alpha channels.
|
||||||
|
|
||||||
@ -135,8 +120,6 @@ await sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## toColorspace
|
## toColorspace
|
||||||
> toColorspace([colorspace]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Alternative spelling of `toColourspace`.
|
Alternative spelling of `toColourspace`.
|
||||||
|
|
||||||
|
|
@ -1,18 +1,11 @@
|
|||||||
---
|
|
||||||
# This file was auto-generated from JSDoc in lib/composite.js
|
|
||||||
title: Compositing images
|
|
||||||
---
|
|
||||||
|
|
||||||
## composite
|
## composite
|
||||||
> composite(images) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Composite image(s) over the processed (resized, extracted etc.) image.
|
Composite image(s) over the processed (resized, extracted etc.) image.
|
||||||
|
|
||||||
The images to composite must be the same size or smaller than the processed image.
|
The images to composite must be the same size or smaller than the processed image.
|
||||||
If both `top` and `left` options are provided, they take precedence over `gravity`.
|
If both `top` and `left` options are provided, they take precedence over `gravity`.
|
||||||
|
|
||||||
Other operations in the same processing pipeline (e.g. resize, rotate, flip,
|
Any resize, rotate or extract operations in the same processing pipeline
|
||||||
flop, extract) will always be applied to the input image before composition.
|
will always be applied to the input image before composition.
|
||||||
|
|
||||||
The `blend` option can be one of `clear`, `source`, `over`, `in`, `out`, `atop`,
|
The `blend` option can be one of `clear`, `source`, `over`, `in`, `out`, `atop`,
|
||||||
`dest`, `dest-over`, `dest-in`, `dest-out`, `dest-atop`,
|
`dest`, `dest-over`, `dest-in`, `dest-out`, `dest-atop`,
|
||||||
@ -51,7 +44,6 @@ 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,18 +1,9 @@
|
|||||||
---
|
|
||||||
# This file was auto-generated from JSDoc in lib/constructor.js
|
|
||||||
title: Constructor
|
|
||||||
---
|
|
||||||
|
|
||||||
## Sharp
|
## Sharp
|
||||||
> Sharp
|
|
||||||
|
|
||||||
|
|
||||||
**Emits**: <code>Sharp#event:info</code>, <code>Sharp#event:warning</code>
|
**Emits**: <code>Sharp#event:info</code>, <code>Sharp#event:warning</code>
|
||||||
<a name="new_Sharp_new"></a>
|
<a name="new_Sharp_new"></a>
|
||||||
|
|
||||||
### new
|
### new
|
||||||
> new Sharp([input], [options])
|
|
||||||
|
|
||||||
Constructor factory to create an instance of `sharp`, to which further methods are chained.
|
Constructor factory to create an instance of `sharp`, to which further methods are chained.
|
||||||
|
|
||||||
JPEG, PNG, WebP, GIF, AVIF or TIFF format image data can be streamed out from this object.
|
JPEG, PNG, WebP, GIF, AVIF or TIFF format image data can be streamed out from this object.
|
||||||
@ -22,10 +13,6 @@ Non-critical problems encountered during processing are emitted as `warning` eve
|
|||||||
|
|
||||||
Implements the [stream.Duplex](http://nodejs.org/api/stream.html#stream_class_stream_duplex) class.
|
Implements the [stream.Duplex](http://nodejs.org/api/stream.html#stream_class_stream_duplex) class.
|
||||||
|
|
||||||
When loading more than one page/frame of an animated image,
|
|
||||||
these are combined as a vertically-stacked "toilet roll" image
|
|
||||||
where the overall height is the `pageHeight` multiplied by the number of `pages`.
|
|
||||||
|
|
||||||
**Throws**:
|
**Throws**:
|
||||||
|
|
||||||
- <code>Error</code> Invalid parameters
|
- <code>Error</code> Invalid parameters
|
||||||
@ -33,34 +20,33 @@ 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> \| <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. |
|
| [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. |
|
||||||
| [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): 'none' (least), 'truncated', 'error' or 'warning' (most), 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. |
|
||||||
| [options.pages] | <code>number</code> | <code>1</code> | Number of pages to extract for multi-page input (GIF, WebP, TIFF), use -1 for all pages. |
|
| [options.pages] | <code>number</code> | <code>1</code> | Number of pages to extract for multi-page input (GIF, WebP, TIFF), use -1 for all pages. |
|
||||||
| [options.page] | <code>number</code> | <code>0</code> | Page number to start extracting from for multi-page input (GIF, WebP, TIFF), zero based. |
|
| [options.page] | <code>number</code> | <code>0</code> | Page number to start extracting from for multi-page input (GIF, WebP, TIFF), zero based. |
|
||||||
|
| [options.subifd] | <code>number</code> | <code>-1</code> | subIFD (Sub Image File Directory) to extract for OME-TIFF, defaults to main image. |
|
||||||
|
| [options.level] | <code>number</code> | <code>0</code> | level to extract from a multi-level input (OpenSlide), zero based. |
|
||||||
| [options.animated] | <code>boolean</code> | <code>false</code> | Set to `true` to read all frames/pages of an animated image (GIF, WebP, TIFF), equivalent of setting `pages` to `-1`. |
|
| [options.animated] | <code>boolean</code> | <code>false</code> | Set to `true` to read all frames/pages of an animated image (GIF, WebP, TIFF), equivalent of setting `pages` to `-1`. |
|
||||||
| [options.raw] | <code>Object</code> | | describes raw pixel input image data. See `raw()` for pixel ordering. |
|
| [options.raw] | <code>Object</code> | | describes raw pixel input image data. See `raw()` for pixel ordering. |
|
||||||
| [options.raw.width] | <code>number</code> | | integral number of pixels wide. |
|
| [options.raw.width] | <code>number</code> | | integral number of pixels wide. |
|
||||||
| [options.raw.height] | <code>number</code> | | integral number of pixels high. |
|
| [options.raw.height] | <code>number</code> | | integral number of pixels high. |
|
||||||
| [options.raw.channels] | <code>number</code> | | integral number of channels, between 1 and 4. |
|
| [options.raw.channels] | <code>number</code> | | integral number of channels, between 1 and 4. |
|
||||||
| [options.raw.premultiplied] | <code>boolean</code> | | specifies that the raw input has already been premultiplied, set to `true` to avoid sharp premultiplying the image. (optional, default `false`) |
|
| [options.raw.premultiplied] | <code>boolean</code> | | specifies that the raw input has already been premultiplied, set to `true` to avoid sharp premultiplying the image. (optional, default `false`) |
|
||||||
| [options.raw.pageHeight] | <code>number</code> | | The pixel height of each page/frame for animated images, must be an integral factor of `raw.height`. |
|
|
||||||
| [options.create] | <code>Object</code> | | describes a new image to be created. |
|
| [options.create] | <code>Object</code> | | describes a new image to be created. |
|
||||||
| [options.create.width] | <code>number</code> | | integral number of pixels wide. |
|
| [options.create.width] | <code>number</code> | | integral number of pixels wide. |
|
||||||
| [options.create.height] | <code>number</code> | | integral number of pixels high. |
|
| [options.create.height] | <code>number</code> | | integral number of pixels high. |
|
||||||
| [options.create.channels] | <code>number</code> | | integral number of channels, either 3 (RGB) or 4 (RGBA). |
|
| [options.create.channels] | <code>number</code> | | integral number of channels, either 3 (RGB) or 4 (RGBA). |
|
||||||
| [options.create.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.create.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.create.pageHeight] | <code>number</code> | | The pixel height of each page/frame for animated images, must be an integral factor of `create.height`. |
|
|
||||||
| [options.create.noise] | <code>Object</code> | | describes a noise to be created. |
|
| [options.create.noise] | <code>Object</code> | | describes a noise to be created. |
|
||||||
| [options.create.noise.type] | <code>string</code> | | type of generated noise, currently only `gaussian` is supported. |
|
| [options.create.noise.type] | <code>string</code> | | type of generated noise, currently only `gaussian` is supported. |
|
||||||
| [options.create.noise.mean] | <code>number</code> | <code>128</code> | Mean value of pixels in the generated noise. |
|
| [options.create.noise.mean] | <code>number</code> | | mean of pixels in generated noise. |
|
||||||
| [options.create.noise.sigma] | <code>number</code> | <code>30</code> | Standard deviation of pixel values in the generated noise. |
|
| [options.create.noise.sigma] | <code>number</code> | | standard deviation of pixels in generated noise. |
|
||||||
| [options.text] | <code>Object</code> | | describes a new text image to be created. |
|
| [options.text] | <code>Object</code> | | describes a new text image to be created. |
|
||||||
| [options.text.text] | <code>string</code> | | text to render as a UTF-8 string. It can contain Pango markup, for example `<i>Le</i>Monde`. |
|
| [options.text.text] | <code>string</code> | | text to render as a UTF-8 string. It can contain Pango markup, for example `<i>Le</i>Monde`. |
|
||||||
| [options.text.font] | <code>string</code> | | font name to render with. |
|
| [options.text.font] | <code>string</code> | | font name to render with. |
|
||||||
@ -72,25 +58,7 @@ where the overall height is the `pageHeight` multiplied by the number of `pages`
|
|||||||
| [options.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. |
|
| [options.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. |
|
||||||
| [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', 'charWord' (prefer char, fallback to word) 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'`). |
|
|
||||||
| [options.tiff] | <code>Object</code> | | Describes TIFF specific options. |
|
|
||||||
| [options.tiff.subifd] | <code>number</code> | <code>-1</code> | Sub Image File Directory to extract for OME-TIFF, defaults to main image. |
|
|
||||||
| [options.svg] | <code>Object</code> | | Describes SVG specific options. |
|
|
||||||
| [options.svg.stylesheet] | <code>string</code> | | Custom CSS for SVG input, applied with a User Origin during the CSS cascade. |
|
|
||||||
| [options.svg.highBitdepth] | <code>boolean</code> | <code>false</code> | Set to `true` to render SVG input at 32-bits per channel (128-bit) instead of 8-bits per channel (32-bit) RGBA. |
|
|
||||||
| [options.pdf] | <code>Object</code> | | Describes PDF specific options. Requires the use of a globally-installed libvips compiled with support for PDFium, Poppler, ImageMagick or GraphicsMagick. |
|
|
||||||
| [options.pdf.background] | <code>string</code> \| <code>Object</code> | | Background colour to use when PDF is partially transparent. Parsed by the [color](https://www.npmjs.org/package/color) module to extract values for red, green, blue and alpha. |
|
|
||||||
| [options.openSlide] | <code>Object</code> | | Describes OpenSlide specific options. Requires the use of a globally-installed libvips compiled with support for OpenSlide. |
|
|
||||||
| [options.openSlide.level] | <code>number</code> | <code>0</code> | Level to extract from a multi-level input, zero based. |
|
|
||||||
| [options.jp2] | <code>Object</code> | | Describes JPEG 2000 specific options. Requires the use of a globally-installed libvips compiled with support for OpenJPEG. |
|
|
||||||
| [options.jp2.oneshot] | <code>boolean</code> | <code>false</code> | Set to `true` to decode tiled JPEG 2000 images in a single operation, improving compatibility. |
|
|
||||||
|
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
@ -103,16 +71,14 @@ sharp('input.jpg')
|
|||||||
```
|
```
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
// Read image data from remote URL,
|
// Read image data from readableStream,
|
||||||
// resize to 300 pixels wide,
|
// resize to 300 pixels wide,
|
||||||
// emit an 'info' event with calculated dimensions
|
// emit an 'info' event with calculated dimensions
|
||||||
// and finally write image data to writableStream
|
// and finally write image data to writableStream
|
||||||
const { body } = fetch('https://...');
|
var transformer = sharp()
|
||||||
const readableStream = Readable.fromWeb(body);
|
|
||||||
const transformer = sharp()
|
|
||||||
.resize(300)
|
.resize(300)
|
||||||
.on('info', ({ height }) => {
|
.on('info', function(info) {
|
||||||
console.log(`Image height is ${height}`);
|
console.log('Image height is ' + info.height);
|
||||||
});
|
});
|
||||||
readableStream.pipe(transformer).pipe(writableStream);
|
readableStream.pipe(transformer).pipe(writableStream);
|
||||||
```
|
```
|
||||||
@ -190,27 +156,9 @@ 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
|
||||||
> clone() ⇒ [<code>Sharp</code>](#Sharp)
|
|
||||||
|
|
||||||
Take a "snapshot" of the Sharp instance, returning a new instance.
|
Take a "snapshot" of the Sharp instance, returning a new instance.
|
||||||
Cloned instances inherit the input of their parent instance.
|
Cloned instances inherit the input of their parent instance.
|
||||||
This allows multiple output Streams and therefore multiple processing pipelines to share a single input Stream.
|
This allows multiple output Streams and therefore multiple processing pipelines to share a single input Stream.
|
@ -1,11 +1,4 @@
|
|||||||
---
|
|
||||||
# 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>
|
|
||||||
|
|
||||||
Fast access to (uncached) image metadata without decoding any compressed pixel data.
|
Fast access to (uncached) image metadata without decoding any compressed pixel data.
|
||||||
|
|
||||||
This is read from the header of the input image.
|
This is read from the header of the input image.
|
||||||
@ -27,16 +20,15 @@ A `Promise` is returned when `callback` is not provided.
|
|||||||
- `density`: Number of pixels per inch (DPI), if present
|
- `density`: Number of pixels per inch (DPI), if present
|
||||||
- `chromaSubsampling`: String containing JPEG chroma subsampling, `4:2:0` or `4:4:4` for RGB, `4:2:0:4` or `4:4:4:4` for CMYK
|
- `chromaSubsampling`: String containing JPEG chroma subsampling, `4:2:0` or `4:4:4` for RGB, `4:2:0:4` or `4:4:4:4` for CMYK
|
||||||
- `isProgressive`: Boolean indicating whether the image is interlaced using a progressive scan
|
- `isProgressive`: Boolean indicating whether the image is interlaced using a progressive scan
|
||||||
- `isPalette`: Boolean indicating whether the image is palette-based (GIF, PNG).
|
|
||||||
- `bitsPerSample`: Number of bits per sample for each channel (GIF, PNG, HEIF).
|
|
||||||
- `pages`: Number of pages/frames contained within the image, with support for TIFF, HEIF, PDF, animated GIF and animated WebP
|
- `pages`: Number of pages/frames contained within the image, with support for TIFF, HEIF, PDF, animated GIF and animated WebP
|
||||||
- `pageHeight`: Number of pixels high each page in a multi-page image will be.
|
- `pageHeight`: Number of pixels high each page in a multi-page image will be.
|
||||||
|
- `paletteBitDepth`: Bit depth of palette-based image (GIF, PNG).
|
||||||
- `loop`: Number of times to loop an animated image, zero refers to a continuous loop.
|
- `loop`: Number of times to loop an animated image, zero refers to a continuous loop.
|
||||||
- `delay`: Delay in ms between each page in an animated image, provided as an array of integers.
|
- `delay`: Delay in ms between each page in an animated image, provided as an array of integers.
|
||||||
- `pagePrimary`: Number of the primary page in a HEIF image
|
- `pagePrimary`: Number of the primary page in a HEIF image
|
||||||
- `levels`: Details of each level in a multi-level image provided as an array of objects, requires libvips compiled with support for OpenSlide
|
- `levels`: Details of each level in a multi-level image provided as an array of objects, requires libvips compiled with support for OpenSlide
|
||||||
- `subifds`: Number of Sub Image File Directories in an OME-TIFF image
|
- `subifds`: Number of Sub Image File Directories in an OME-TIFF image
|
||||||
- `background`: Default background colour, if present, for PNG (bKGD) and GIF images
|
- `background`: Default background colour, if present, for PNG (bKGD) and GIF images, either an RGB Object or a single greyscale value
|
||||||
- `compression`: The encoder used to compress an HEIF file, `av1` (AVIF) or `hevc` (HEIC)
|
- `compression`: The encoder used to compress an HEIF file, `av1` (AVIF) or `hevc` (HEIC)
|
||||||
- `resolutionUnit`: The unit of resolution (density), either `inch` or `cm`, if present
|
- `resolutionUnit`: The unit of resolution (density), either `inch` or `cm`, if present
|
||||||
- `hasProfile`: Boolean indicating the presence of an embedded ICC profile
|
- `hasProfile`: Boolean indicating the presence of an embedded ICC profile
|
||||||
@ -46,10 +38,8 @@ A `Promise` is returned when `callback` is not provided.
|
|||||||
- `icc`: Buffer containing raw [ICC](https://www.npmjs.com/package/icc) profile data, if present
|
- `icc`: Buffer containing raw [ICC](https://www.npmjs.com/package/icc) profile data, if present
|
||||||
- `iptc`: Buffer containing raw IPTC data, if present
|
- `iptc`: Buffer containing raw IPTC data, if present
|
||||||
- `xmp`: Buffer containing raw XMP data, if present
|
- `xmp`: Buffer containing raw XMP data, if present
|
||||||
- `xmpAsString`: String containing XMP data, if valid UTF-8.
|
|
||||||
- `tifftagPhotoshop`: Buffer containing raw TIFFTAG_PHOTOSHOP data, if present
|
- `tifftagPhotoshop`: Buffer containing raw TIFFTAG_PHOTOSHOP data, if present
|
||||||
- `formatMagick`: String containing format for images loaded via *magick
|
- `formatMagick`: String containing format for images loaded via *magick
|
||||||
- `comments`: Array of keyword/text pairs representing PNG text blocks, if present.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -78,15 +68,19 @@ image
|
|||||||
```
|
```
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
// Get dimensions taking EXIF Orientation into account.
|
// Based on EXIF rotation metadata, get the right-side-up width and height:
|
||||||
const { autoOrient } = await sharp(input).metadata();
|
|
||||||
const { width, height } = autoOrient;
|
const size = getNormalSize(await sharp(input).metadata());
|
||||||
|
|
||||||
|
function getNormalSize({ width, height, orientation }) {
|
||||||
|
return (orientation || 0) >= 5
|
||||||
|
? { width: height, height: width }
|
||||||
|
: { width, height };
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## stats
|
## stats
|
||||||
> stats([callback]) ⇒ <code>Promise.<Object></code>
|
|
||||||
|
|
||||||
Access to pixel-derived image statistics for every channel in the image.
|
Access to pixel-derived image statistics for every channel in the image.
|
||||||
A `Promise` is returned when `callback` is not provided.
|
A `Promise` is returned when `callback` is not provided.
|
||||||
|
|
@ -1,26 +1,20 @@
|
|||||||
---
|
|
||||||
# This file was auto-generated from JSDoc in lib/operation.js
|
|
||||||
title: Image operations
|
|
||||||
---
|
|
||||||
|
|
||||||
## rotate
|
## rotate
|
||||||
> rotate([angle], [options]) ⇒ <code>Sharp</code>
|
Rotate the output image by either an explicit angle
|
||||||
|
or auto-orient based on the EXIF `Orientation` tag.
|
||||||
|
|
||||||
Rotate the output image.
|
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.
|
||||||
|
|
||||||
For backwards compatibility, if no angle is provided, `.autoOrient()` will be called.
|
If no angle is provided, it is determined from the EXIF data.
|
||||||
|
Mirroring is supported and may infer the use of a flip operation.
|
||||||
|
|
||||||
Only one rotation can occur per pipeline (aside from an initial call without
|
The use of `rotate` implies the removal of the EXIF `Orientation` tag, if any.
|
||||||
arguments to orient via EXIF data). Previous calls to `rotate` in the same
|
|
||||||
pipeline will be ignored.
|
|
||||||
|
|
||||||
Multi-page images can only be rotated by 180 degrees.
|
Only one rotation can occur per pipeline.
|
||||||
|
Previous calls to `rotate` in the same pipeline will be ignored.
|
||||||
|
|
||||||
Method order is important when rotating, resizing and/or extracting regions,
|
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)`.
|
for example `.rotate(x).extract(y)` will produce a different result to `.extract(y).rotate(x)`.
|
||||||
@ -37,6 +31,18 @@ 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)
|
||||||
@ -50,40 +56,12 @@ 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>
|
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
|
The use of `flip` implies the removal of the EXIF `Orientation` tag, if any.
|
||||||
|
|
||||||
This operation does not work correctly with multi-page images.
|
This operation does not work correctly with multi-page images.
|
||||||
|
|
||||||
|
|
||||||
@ -99,11 +77,11 @@ const output = await sharp(input).flip().toBuffer();
|
|||||||
|
|
||||||
|
|
||||||
## flop
|
## flop
|
||||||
> flop([flop]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Mirror the image horizontally (left-right) about the y-axis.
|
Mirror the image horizontally (left-right) about the y-axis.
|
||||||
This always occurs before rotation, if any.
|
This always occurs before rotation, if any.
|
||||||
|
|
||||||
|
The use of `flop` implies the removal of the EXIF `Orientation` tag, if any.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
| Param | Type | Default |
|
| Param | Type | Default |
|
||||||
@ -117,12 +95,10 @@ const output = await sharp(input).flop().toBuffer();
|
|||||||
|
|
||||||
|
|
||||||
## affine
|
## affine
|
||||||
> affine(matrix, [options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Perform an affine transform on an image. This operation will always occur after resizing, extraction and rotation, if any.
|
Perform an affine transform on an image. This operation will always occur after resizing, extraction and rotation, if any.
|
||||||
|
|
||||||
You must provide an array of length 4 or a 2x2 affine transformation matrix.
|
You must provide an array of length 4 or a 2x2 affine transformation matrix.
|
||||||
By default, new pixels are filled with a black background. You can provide a background colour with the `background` option.
|
By default, new pixels are filled with a black background. You can provide a background color with the `background` option.
|
||||||
A particular interpolator may also be specified. Set the `interpolator` option to an attribute of the `sharp.interpolators` Object e.g. `sharp.interpolators.nohalo`.
|
A particular interpolator may also be specified. Set the `interpolator` option to an attribute of the `sharp.interpolators` Object e.g. `sharp.interpolators.nohalo`.
|
||||||
|
|
||||||
In the case of a 2x2 matrix, the transform is:
|
In the case of a 2x2 matrix, the transform is:
|
||||||
@ -170,8 +146,6 @@ inputStream
|
|||||||
|
|
||||||
|
|
||||||
## sharpen
|
## sharpen
|
||||||
> sharpen([options], [flat], [jagged]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Sharpen the image.
|
Sharpen the image.
|
||||||
|
|
||||||
When used without parameters, performs a fast, mild sharpen of the output image.
|
When used without parameters, performs a fast, mild sharpen of the output image.
|
||||||
@ -223,8 +197,6 @@ const data = await sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## median
|
## median
|
||||||
> median([size]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Apply median filter.
|
Apply median filter.
|
||||||
When used without parameters the default window is 3x3.
|
When used without parameters the default window is 3x3.
|
||||||
|
|
||||||
@ -249,8 +221,6 @@ const output = await sharp(input).median(5).toBuffer();
|
|||||||
|
|
||||||
|
|
||||||
## blur
|
## blur
|
||||||
> blur([options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Blur the image.
|
Blur the image.
|
||||||
|
|
||||||
When used without parameters, performs a fast 3x3 box blur (equivalent to a box linear filter).
|
When used without parameters, performs a fast 3x3 box blur (equivalent to a box linear filter).
|
||||||
@ -263,12 +233,9 @@ When a `sigma` is provided, performs a slower, more accurate Gaussian blur.
|
|||||||
- <code>Error</code> Invalid parameters
|
- <code>Error</code> Invalid parameters
|
||||||
|
|
||||||
|
|
||||||
| Param | Type | Default | Description |
|
| Param | Type | Description |
|
||||||
| --- | --- | --- | --- |
|
| --- | --- | --- |
|
||||||
| [options] | <code>Object</code> \| <code>number</code> \| <code>Boolean</code> | | |
|
| [sigma] | <code>number</code> | a value between 0.3 and 1000 representing the sigma of the Gaussian mask, where `sigma = 1 + radius / 2`. |
|
||||||
| [options.sigma] | <code>number</code> | | a value between 0.3 and 1000 representing the sigma of the Gaussian mask, where `sigma = 1 + radius / 2`. |
|
|
||||||
| [options.precision] | <code>string</code> | <code>"'integer'"</code> | How accurate the operation should be, one of: integer, float, approximate. |
|
|
||||||
| [options.minAmplitude] | <code>number</code> | <code>0.2</code> | A value between 0.001 and 1. A smaller value will generate a larger, more accurate mask. |
|
|
||||||
|
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
@ -284,55 +251,7 @@ const gaussianBlurred = await sharp(input)
|
|||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## dilate
|
|
||||||
> dilate([width]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Expand foreground objects using the dilate morphological operator.
|
|
||||||
|
|
||||||
|
|
||||||
**Throws**:
|
|
||||||
|
|
||||||
- <code>Error</code> Invalid parameters
|
|
||||||
|
|
||||||
|
|
||||||
| Param | Type | Default | Description |
|
|
||||||
| --- | --- | --- | --- |
|
|
||||||
| [width] | <code>Number</code> | <code>1</code> | dilation width in pixels. |
|
|
||||||
|
|
||||||
**Example**
|
|
||||||
```js
|
|
||||||
const output = await sharp(input)
|
|
||||||
.dilate()
|
|
||||||
.toBuffer();
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
## erode
|
|
||||||
> erode([width]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Shrink foreground objects using the erode morphological operator.
|
|
||||||
|
|
||||||
|
|
||||||
**Throws**:
|
|
||||||
|
|
||||||
- <code>Error</code> Invalid parameters
|
|
||||||
|
|
||||||
|
|
||||||
| Param | Type | Default | Description |
|
|
||||||
| --- | --- | --- | --- |
|
|
||||||
| [width] | <code>Number</code> | <code>1</code> | erosion width in pixels. |
|
|
||||||
|
|
||||||
**Example**
|
|
||||||
```js
|
|
||||||
const output = await sharp(input)
|
|
||||||
.erode()
|
|
||||||
.toBuffer();
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
## flatten
|
## flatten
|
||||||
> flatten([options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Merge alpha transparency channel, if any, with a background, then remove the alpha channel.
|
Merge alpha transparency channel, if any, with a background, then remove the alpha channel.
|
||||||
|
|
||||||
See also [removeAlpha](/api-channel#removealpha).
|
See also [removeAlpha](/api-channel#removealpha).
|
||||||
@ -353,8 +272,6 @@ await sharp(rgbaInput)
|
|||||||
|
|
||||||
|
|
||||||
## unflatten
|
## unflatten
|
||||||
> unflatten()
|
|
||||||
|
|
||||||
Ensure the image has an alpha channel
|
Ensure the image has an alpha channel
|
||||||
with all white pixel values made fully transparent.
|
with all white pixel values made fully transparent.
|
||||||
|
|
||||||
@ -380,8 +297,6 @@ await sharp(rgbInput)
|
|||||||
|
|
||||||
|
|
||||||
## gamma
|
## gamma
|
||||||
> gamma([gamma], [gammaOut]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Apply a gamma correction by reducing the encoding (darken) pre-resize at a factor of `1/gamma`
|
Apply a gamma correction by reducing the encoding (darken) pre-resize at a factor of `1/gamma`
|
||||||
then increasing the encoding (brighten) post-resize at a factor of `gamma`.
|
then increasing the encoding (brighten) post-resize at a factor of `gamma`.
|
||||||
This can improve the perceived brightness of a resized image in non-linear colour spaces.
|
This can improve the perceived brightness of a resized image in non-linear colour spaces.
|
||||||
@ -404,8 +319,6 @@ Supply a second argument to use a different output gamma value, otherwise the fi
|
|||||||
|
|
||||||
|
|
||||||
## negate
|
## negate
|
||||||
> negate([options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Produce the "negative" of the image.
|
Produce the "negative" of the image.
|
||||||
|
|
||||||
|
|
||||||
@ -430,8 +343,6 @@ const output = await sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## normalise
|
## normalise
|
||||||
> normalise([options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Enhance output image contrast by stretching its luminance to cover a full dynamic range.
|
Enhance output image contrast by stretching its luminance to cover a full dynamic range.
|
||||||
|
|
||||||
Uses a histogram-based approach, taking a default range of 1% to 99% to reduce sensitivity to noise at the extremes.
|
Uses a histogram-based approach, taking a default range of 1% to 99% to reduce sensitivity to noise at the extremes.
|
||||||
@ -462,8 +373,6 @@ const output = await sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## normalize
|
## normalize
|
||||||
> normalize([options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Alternative spelling of normalise.
|
Alternative spelling of normalise.
|
||||||
|
|
||||||
|
|
||||||
@ -483,8 +392,6 @@ const output = await sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## clahe
|
## clahe
|
||||||
> clahe(options) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Perform contrast limiting adaptive histogram equalization
|
Perform contrast limiting adaptive histogram equalization
|
||||||
[CLAHE](https://en.wikipedia.org/wiki/Adaptive_histogram_equalization#Contrast_Limited_AHE).
|
[CLAHE](https://en.wikipedia.org/wiki/Adaptive_histogram_equalization#Contrast_Limited_AHE).
|
||||||
|
|
||||||
@ -516,8 +423,6 @@ const output = await sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## convolve
|
## convolve
|
||||||
> convolve(kernel) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Convolve the image with the specified kernel.
|
Convolve the image with the specified kernel.
|
||||||
|
|
||||||
|
|
||||||
@ -552,8 +457,6 @@ sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## threshold
|
## threshold
|
||||||
> threshold([threshold], [options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Any pixel value greater than or equal to the threshold value will be set to 255, otherwise it will be set to 0.
|
Any pixel value greater than or equal to the threshold value will be set to 255, otherwise it will be set to 0.
|
||||||
|
|
||||||
|
|
||||||
@ -572,8 +475,6 @@ Any pixel value greater than or equal to the threshold value will be set to 255,
|
|||||||
|
|
||||||
|
|
||||||
## boolean
|
## boolean
|
||||||
> boolean(operand, operator, [options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Perform a bitwise boolean operation with operand image.
|
Perform a bitwise boolean operation with operand image.
|
||||||
|
|
||||||
This operation creates an output image where each pixel is the result of
|
This operation creates an output image where each pixel is the result of
|
||||||
@ -598,8 +499,6 @@ the selected bitwise boolean `operation` between the corresponding pixels of the
|
|||||||
|
|
||||||
|
|
||||||
## linear
|
## linear
|
||||||
> linear([a], [b]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Apply the linear formula `a` * input + `b` to the image to adjust image levels.
|
Apply the linear formula `a` * input + `b` to the image to adjust image levels.
|
||||||
|
|
||||||
When a single number is provided, it will be used for all image channels.
|
When a single number is provided, it will be used for all image channels.
|
||||||
@ -634,8 +533,6 @@ await sharp(rgbInput)
|
|||||||
|
|
||||||
|
|
||||||
## recomb
|
## recomb
|
||||||
> recomb(inputMatrix) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Recombine the image with the specified matrix.
|
Recombine the image with the specified matrix.
|
||||||
|
|
||||||
|
|
||||||
@ -647,7 +544,7 @@ Recombine the image with the specified matrix.
|
|||||||
|
|
||||||
| Param | Type | Description |
|
| Param | Type | Description |
|
||||||
| --- | --- | --- |
|
| --- | --- | --- |
|
||||||
| inputMatrix | <code>Array.<Array.<number>></code> | 3x3 or 4x4 Recombination matrix |
|
| inputMatrix | <code>Array.<Array.<number>></code> | 3x3 Recombination matrix |
|
||||||
|
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
@ -666,8 +563,6 @@ sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## modulate
|
## modulate
|
||||||
> modulate([options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Transforms the image using brightness, saturation, hue rotation, and lightness.
|
Transforms the image using brightness, saturation, hue rotation, and lightness.
|
||||||
Brightness and lightness both operate on luminance, with the difference being that
|
Brightness and lightness both operate on luminance, with the difference being that
|
||||||
brightness is multiplicative whereas lightness is additive.
|
brightness is multiplicative whereas lightness is additive.
|
@ -1,11 +1,4 @@
|
|||||||
---
|
|
||||||
# This file was auto-generated from JSDoc in lib/output.js
|
|
||||||
title: Output options
|
|
||||||
---
|
|
||||||
|
|
||||||
## toFile
|
## toFile
|
||||||
> toFile(fileOut, [callback]) ⇒ <code>Promise.<Object></code>
|
|
||||||
|
|
||||||
Write output image data to a file.
|
Write output image data to a file.
|
||||||
|
|
||||||
If an explicit output format is not selected, it will be inferred from the extension,
|
If an explicit output format is not selected, it will be inferred from the extension,
|
||||||
@ -29,7 +22,7 @@ A `Promise` is returned when `callback` is not provided.
|
|||||||
| Param | Type | Description |
|
| Param | Type | Description |
|
||||||
| --- | --- | --- |
|
| --- | --- | --- |
|
||||||
| fileOut | <code>string</code> | the path to write the image data to. |
|
| fileOut | <code>string</code> | the path to write the image data to. |
|
||||||
| [callback] | <code>function</code> | called on completion with two arguments `(err, info)`. `info` contains the output image `format`, `size` (bytes), `width`, `height`, `channels` and `premultiplied` (indicating if premultiplication was used). When using a crop strategy also contains `cropOffsetLeft` and `cropOffsetTop`. When using the attention crop strategy also contains `attentionX` and `attentionY`, the focal point of the cropped region. Animated output will also contain `pageHeight` and `pages`. May also contain `textAutofitDpi` (dpi the font was rendered at) if image was created from text. |
|
| [callback] | <code>function</code> | called on completion with two arguments `(err, info)`. `info` contains the output image `format`, `size` (bytes), `width`, `height`, `channels` and `premultiplied` (indicating if premultiplication was used). When using a crop strategy also contains `cropOffsetLeft` and `cropOffsetTop`. When using the attention crop strategy also contains `attentionX` and `attentionY`, the focal point of the cropped region. May also contain `textAutofitDpi` (dpi the font was rendered at) if image was created from text. |
|
||||||
|
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
@ -46,8 +39,6 @@ sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## toBuffer
|
## toBuffer
|
||||||
> toBuffer([options], [callback]) ⇒ <code>Promise.<Buffer></code>
|
|
||||||
|
|
||||||
Write output to a Buffer.
|
Write output to a Buffer.
|
||||||
JPEG, PNG, WebP, AVIF, TIFF, GIF and raw pixel data output are supported.
|
JPEG, PNG, WebP, AVIF, TIFF, GIF and raw pixel data output are supported.
|
||||||
|
|
||||||
@ -64,7 +55,6 @@ See [withMetadata](#withmetadata) for control over this.
|
|||||||
- `info` contains the output image `format`, `size` (bytes), `width`, `height`,
|
- `info` contains the output image `format`, `size` (bytes), `width`, `height`,
|
||||||
`channels` and `premultiplied` (indicating if premultiplication was used).
|
`channels` and `premultiplied` (indicating if premultiplication was used).
|
||||||
When using a crop strategy also contains `cropOffsetLeft` and `cropOffsetTop`.
|
When using a crop strategy also contains `cropOffsetLeft` and `cropOffsetTop`.
|
||||||
Animated output will also contain `pageHeight` and `pages`.
|
|
||||||
May also contain `textAutofitDpi` (dpi the font was rendered at) if image was created from text.
|
May also contain `textAutofitDpi` (dpi the font was rendered at) if image was created from text.
|
||||||
|
|
||||||
A `Promise` is returned when `callback` is not provided.
|
A `Promise` is returned when `callback` is not provided.
|
||||||
@ -117,43 +107,43 @@ await sharp(pixelArray, { raw: { width, height, channels } })
|
|||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## keepExif
|
## withMetadata
|
||||||
> keepExif() ⇒ <code>Sharp</code>
|
Include all metadata (EXIF, XMP, IPTC) from the input image in the output image.
|
||||||
|
This will also convert to and add a web-friendly sRGB ICC profile unless a custom
|
||||||
|
output profile is provided.
|
||||||
|
|
||||||
Keep all EXIF metadata from the input image in the output image.
|
The default behaviour, when `withMetadata` is not used, is to convert to the device-independent
|
||||||
|
sRGB colour space and strip all metadata, including the removal of any ICC profile.
|
||||||
|
|
||||||
EXIF metadata is unsupported for TIFF output.
|
EXIF metadata is unsupported for TIFF output.
|
||||||
|
|
||||||
|
|
||||||
**Since**: 0.33.0
|
|
||||||
**Example**
|
|
||||||
```js
|
|
||||||
const outputWithExif = await sharp(inputWithExif)
|
|
||||||
.keepExif()
|
|
||||||
.toBuffer();
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
## withExif
|
|
||||||
> withExif(exif) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Set EXIF metadata in the output image, ignoring any EXIF in the input image.
|
|
||||||
|
|
||||||
|
|
||||||
**Throws**:
|
**Throws**:
|
||||||
|
|
||||||
- <code>Error</code> Invalid parameters
|
- <code>Error</code> Invalid parameters
|
||||||
|
|
||||||
**Since**: 0.33.0
|
|
||||||
|
|
||||||
| Param | Type | Description |
|
| Param | Type | Default | Description |
|
||||||
| --- | --- | --- |
|
| --- | --- | --- | --- |
|
||||||
| exif | <code>Object.<string, Object.<string, string>></code> | Object keyed by IFD0, IFD1 etc. of key/value string pairs to write as EXIF data. |
|
| [options] | <code>Object</code> | | |
|
||||||
|
| [options.orientation] | <code>number</code> | | value between 1 and 8, used to update the EXIF `Orientation` tag. |
|
||||||
|
| [options.icc] | <code>string</code> | <code>"'srgb'"</code> | Filesystem path to output ICC profile, relative to `process.cwd()`, defaults to built-in sRGB. |
|
||||||
|
| [options.exif] | <code>Object.<Object></code> | <code>{}</code> | Object keyed by IFD0, IFD1 etc. of key/value string pairs to write as EXIF data. |
|
||||||
|
| [options.density] | <code>number</code> | | Number of pixels per inch (DPI). |
|
||||||
|
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
const dataWithExif = await sharp(input)
|
sharp('input.jpg')
|
||||||
.withExif({
|
.withMetadata()
|
||||||
|
.toFile('output-with-metadata.jpg')
|
||||||
|
.then(info => { ... });
|
||||||
|
```
|
||||||
|
**Example**
|
||||||
|
```js
|
||||||
|
// Set output EXIF metadata
|
||||||
|
const data = await sharp(input)
|
||||||
|
.withMetadata({
|
||||||
|
exif: {
|
||||||
IFD0: {
|
IFD0: {
|
||||||
Copyright: 'The National Gallery'
|
Copyright: 'The National Gallery'
|
||||||
},
|
},
|
||||||
@ -163,181 +153,10 @@ const dataWithExif = await sharp(input)
|
|||||||
GPSLongitudeRef: 'W',
|
GPSLongitudeRef: 'W',
|
||||||
GPSLongitude: '0/1 7/1 4366/100'
|
GPSLongitude: '0/1 7/1 4366/100'
|
||||||
}
|
}
|
||||||
})
|
|
||||||
.toBuffer();
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
## withExifMerge
|
|
||||||
> withExifMerge(exif) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Update EXIF metadata from the input image in the output image.
|
|
||||||
|
|
||||||
|
|
||||||
**Throws**:
|
|
||||||
|
|
||||||
- <code>Error</code> Invalid parameters
|
|
||||||
|
|
||||||
**Since**: 0.33.0
|
|
||||||
|
|
||||||
| Param | Type | Description |
|
|
||||||
| --- | --- | --- |
|
|
||||||
| exif | <code>Object.<string, Object.<string, string>></code> | Object keyed by IFD0, IFD1 etc. of key/value string pairs to write as EXIF data. |
|
|
||||||
|
|
||||||
**Example**
|
|
||||||
```js
|
|
||||||
const dataWithMergedExif = await sharp(inputWithExif)
|
|
||||||
.withExifMerge({
|
|
||||||
IFD0: {
|
|
||||||
Copyright: 'The National Gallery'
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.toBuffer();
|
.toBuffer();
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## keepIccProfile
|
|
||||||
> keepIccProfile() ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Keep ICC profile from the input image in the output image.
|
|
||||||
|
|
||||||
Where necessary, will attempt to convert the output colour space to match the profile.
|
|
||||||
|
|
||||||
|
|
||||||
**Since**: 0.33.0
|
|
||||||
**Example**
|
|
||||||
```js
|
|
||||||
const outputWithIccProfile = await sharp(inputWithIccProfile)
|
|
||||||
.keepIccProfile()
|
|
||||||
.toBuffer();
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
## withIccProfile
|
|
||||||
> withIccProfile(icc, [options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Transform using an ICC profile and attach to the output image.
|
|
||||||
|
|
||||||
This can either be an absolute filesystem path or
|
|
||||||
built-in profile name (`srgb`, `p3`, `cmyk`).
|
|
||||||
|
|
||||||
|
|
||||||
**Throws**:
|
|
||||||
|
|
||||||
- <code>Error</code> Invalid parameters
|
|
||||||
|
|
||||||
**Since**: 0.33.0
|
|
||||||
|
|
||||||
| Param | Type | Default | Description |
|
|
||||||
| --- | --- | --- | --- |
|
|
||||||
| icc | <code>string</code> | | Absolute filesystem path to output ICC profile or built-in profile name (srgb, p3, cmyk). |
|
|
||||||
| [options] | <code>Object</code> | | |
|
|
||||||
| [options.attach] | <code>number</code> | <code>true</code> | Should the ICC profile be included in the output image metadata? |
|
|
||||||
|
|
||||||
**Example**
|
|
||||||
```js
|
|
||||||
const outputWithP3 = await sharp(input)
|
|
||||||
.withIccProfile('p3')
|
|
||||||
.toBuffer();
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
## keepXmp
|
|
||||||
> keepXmp() ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Keep XMP metadata from the input image in the output image.
|
|
||||||
|
|
||||||
|
|
||||||
**Since**: 0.34.3
|
|
||||||
**Example**
|
|
||||||
```js
|
|
||||||
const outputWithXmp = await sharp(inputWithXmp)
|
|
||||||
.keepXmp()
|
|
||||||
.toBuffer();
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
## withXmp
|
|
||||||
> withXmp(xmp) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Set XMP metadata in the output image.
|
|
||||||
|
|
||||||
Supported by PNG, JPEG, WebP, and TIFF output.
|
|
||||||
|
|
||||||
|
|
||||||
**Throws**:
|
|
||||||
|
|
||||||
- <code>Error</code> Invalid parameters
|
|
||||||
|
|
||||||
**Since**: 0.34.3
|
|
||||||
|
|
||||||
| Param | Type | Description |
|
|
||||||
| --- | --- | --- |
|
|
||||||
| xmp | <code>string</code> | String containing XMP metadata to be embedded in the output image. |
|
|
||||||
|
|
||||||
**Example**
|
|
||||||
```js
|
|
||||||
const xmpString = `
|
|
||||||
<?xml version="1.0"?>
|
|
||||||
<x:xmpmeta xmlns:x="adobe:ns:meta/">
|
|
||||||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
|
||||||
<rdf:Description rdf:about="" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
||||||
<dc:creator><rdf:Seq><rdf:li>John Doe</rdf:li></rdf:Seq></dc:creator>
|
|
||||||
</rdf:Description>
|
|
||||||
</rdf:RDF>
|
|
||||||
</x:xmpmeta>`;
|
|
||||||
|
|
||||||
const data = await sharp(input)
|
|
||||||
.withXmp(xmpString)
|
|
||||||
.toBuffer();
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
## keepMetadata
|
|
||||||
> keepMetadata() ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Keep all metadata (EXIF, ICC, XMP, IPTC) from the input image in the output image.
|
|
||||||
|
|
||||||
The default behaviour, when `keepMetadata` is not used, is to convert to the device-independent
|
|
||||||
sRGB colour space and strip all metadata, including the removal of any ICC profile.
|
|
||||||
|
|
||||||
|
|
||||||
**Since**: 0.33.0
|
|
||||||
**Example**
|
|
||||||
```js
|
|
||||||
const outputWithMetadata = await sharp(inputWithMetadata)
|
|
||||||
.keepMetadata()
|
|
||||||
.toBuffer();
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
## withMetadata
|
|
||||||
> withMetadata([options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Keep most metadata (EXIF, XMP, IPTC) from the input image in the output image.
|
|
||||||
|
|
||||||
This will also convert to and add a web-friendly sRGB ICC profile if appropriate.
|
|
||||||
|
|
||||||
Allows orientation and density to be set or updated.
|
|
||||||
|
|
||||||
|
|
||||||
**Throws**:
|
|
||||||
|
|
||||||
- <code>Error</code> Invalid parameters
|
|
||||||
|
|
||||||
|
|
||||||
| Param | Type | Description |
|
|
||||||
| --- | --- | --- |
|
|
||||||
| [options] | <code>Object</code> | |
|
|
||||||
| [options.orientation] | <code>number</code> | Used to update the EXIF `Orientation` tag, integer between 1 and 8. |
|
|
||||||
| [options.density] | <code>number</code> | Number of pixels per inch (DPI). |
|
|
||||||
|
|
||||||
**Example**
|
|
||||||
```js
|
|
||||||
const outputSrgbWithMetadata = await sharp(inputRgbWithMetadata)
|
|
||||||
.withMetadata()
|
|
||||||
.toBuffer();
|
|
||||||
```
|
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
// Set output metadata to 96 DPI
|
// Set output metadata to 96 DPI
|
||||||
@ -348,8 +167,6 @@ const data = await sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## toFormat
|
## toFormat
|
||||||
> toFormat(format, options) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Force output to a given format.
|
Force output to a given format.
|
||||||
|
|
||||||
|
|
||||||
@ -373,8 +190,6 @@ const data = await sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## jpeg
|
## jpeg
|
||||||
> jpeg([options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Use these JPEG options for output image.
|
Use these JPEG options for output image.
|
||||||
|
|
||||||
|
|
||||||
@ -420,18 +235,12 @@ const data = await sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## png
|
## png
|
||||||
> png([options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Use these PNG options for output image.
|
Use these PNG options for output image.
|
||||||
|
|
||||||
By default, PNG output is full colour at 8 bits per pixel.
|
By default, PNG output is full colour at 8 or 16 bits per pixel.
|
||||||
|
|
||||||
Indexed PNG input at 1, 2 or 4 bits per pixel is converted to 8 bits per pixel.
|
Indexed PNG input at 1, 2 or 4 bits per pixel is converted to 8 bits per pixel.
|
||||||
Set `palette` to `true` for slower, indexed PNG output.
|
Set `palette` to `true` for slower, indexed PNG output.
|
||||||
|
|
||||||
For 16 bits per pixel output, convert to `rgb16` via
|
|
||||||
[toColourspace](/api-colour#tocolourspace).
|
|
||||||
|
|
||||||
|
|
||||||
**Throws**:
|
**Throws**:
|
||||||
|
|
||||||
@ -466,19 +275,9 @@ const data = await sharp(input)
|
|||||||
.png({ palette: true })
|
.png({ palette: true })
|
||||||
.toBuffer();
|
.toBuffer();
|
||||||
```
|
```
|
||||||
**Example**
|
|
||||||
```js
|
|
||||||
// Output 16 bits per pixel RGB(A)
|
|
||||||
const data = await sharp(input)
|
|
||||||
.toColourspace('rgb16')
|
|
||||||
.png()
|
|
||||||
.toBuffer();
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
## webp
|
## webp
|
||||||
> webp([options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Use these WebP options for output image.
|
Use these WebP options for output image.
|
||||||
|
|
||||||
|
|
||||||
@ -495,7 +294,6 @@ Use these WebP options for output image.
|
|||||||
| [options.lossless] | <code>boolean</code> | <code>false</code> | use lossless compression mode |
|
| [options.lossless] | <code>boolean</code> | <code>false</code> | use lossless compression mode |
|
||||||
| [options.nearLossless] | <code>boolean</code> | <code>false</code> | use near_lossless compression mode |
|
| [options.nearLossless] | <code>boolean</code> | <code>false</code> | use near_lossless compression mode |
|
||||||
| [options.smartSubsample] | <code>boolean</code> | <code>false</code> | use high quality chroma subsampling |
|
| [options.smartSubsample] | <code>boolean</code> | <code>false</code> | use high quality chroma subsampling |
|
||||||
| [options.smartDeblock] | <code>boolean</code> | <code>false</code> | auto-adjust the deblocking filter, can improve low contrast edges (slow) |
|
|
||||||
| [options.preset] | <code>string</code> | <code>"'default'"</code> | named preset for preprocessing/filtering, one of: default, photo, picture, drawing, icon, text |
|
| [options.preset] | <code>string</code> | <code>"'default'"</code> | named preset for preprocessing/filtering, one of: default, photo, picture, drawing, icon, text |
|
||||||
| [options.effort] | <code>number</code> | <code>4</code> | CPU effort, between 0 (fastest) and 6 (slowest) |
|
| [options.effort] | <code>number</code> | <code>4</code> | CPU effort, between 0 (fastest) and 6 (slowest) |
|
||||||
| [options.loop] | <code>number</code> | <code>0</code> | number of animation iterations, use 0 for infinite animation |
|
| [options.loop] | <code>number</code> | <code>0</code> | number of animation iterations, use 0 for infinite animation |
|
||||||
@ -521,8 +319,6 @@ const outputWebp = await sharp(inputWebp, { animated: true })
|
|||||||
|
|
||||||
|
|
||||||
## gif
|
## gif
|
||||||
> gif([options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Use these GIF options for the output image.
|
Use these GIF options for the output image.
|
||||||
|
|
||||||
The first entry in the palette is reserved for transparency.
|
The first entry in the palette is reserved for transparency.
|
||||||
@ -547,7 +343,6 @@ The palette of the input image will be re-used if possible.
|
|||||||
| [options.dither] | <code>number</code> | <code>1.0</code> | level of Floyd-Steinberg error diffusion, between 0 (least) and 1 (most) |
|
| [options.dither] | <code>number</code> | <code>1.0</code> | level of Floyd-Steinberg error diffusion, between 0 (least) and 1 (most) |
|
||||||
| [options.interFrameMaxError] | <code>number</code> | <code>0</code> | maximum inter-frame error for transparency, between 0 (lossless) and 32 |
|
| [options.interFrameMaxError] | <code>number</code> | <code>0</code> | maximum inter-frame error for transparency, between 0 (lossless) and 32 |
|
||||||
| [options.interPaletteMaxError] | <code>number</code> | <code>3</code> | maximum inter-palette error for palette reuse, between 0 and 256 |
|
| [options.interPaletteMaxError] | <code>number</code> | <code>3</code> | maximum inter-palette error for palette reuse, between 0 and 256 |
|
||||||
| [options.keepDuplicateFrames] | <code>boolean</code> | <code>false</code> | keep duplicate frames in the output instead of combining them |
|
|
||||||
| [options.loop] | <code>number</code> | <code>0</code> | number of animation iterations, use 0 for infinite animation |
|
| [options.loop] | <code>number</code> | <code>0</code> | number of animation iterations, use 0 for infinite animation |
|
||||||
| [options.delay] | <code>number</code> \| <code>Array.<number></code> | | delay(s) between animation frames (in milliseconds) |
|
| [options.delay] | <code>number</code> \| <code>Array.<number></code> | | delay(s) between animation frames (in milliseconds) |
|
||||||
| [options.force] | <code>boolean</code> | <code>true</code> | force GIF output, otherwise attempt to use input format |
|
| [options.force] | <code>boolean</code> | <code>true</code> | force GIF output, otherwise attempt to use input format |
|
||||||
@ -583,8 +378,6 @@ await sharp('in.gif', { animated: true })
|
|||||||
|
|
||||||
|
|
||||||
## jp2
|
## jp2
|
||||||
> jp2([options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Use these JP2 options for output image.
|
Use these JP2 options for output image.
|
||||||
|
|
||||||
Requires libvips compiled with support for OpenJPEG.
|
Requires libvips compiled with support for OpenJPEG.
|
||||||
@ -627,8 +420,6 @@ const data = await sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## tiff
|
## tiff
|
||||||
> tiff([options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Use these TIFF options for output image.
|
Use these TIFF options for output image.
|
||||||
|
|
||||||
The `density` can be set in pixels/inch via [withMetadata](#withmetadata)
|
The `density` can be set in pixels/inch via [withMetadata](#withmetadata)
|
||||||
@ -655,7 +446,6 @@ instead of providing `xres` and `yres` in pixels/mm.
|
|||||||
| [options.yres] | <code>number</code> | <code>1.0</code> | vertical resolution in pixels/mm |
|
| [options.yres] | <code>number</code> | <code>1.0</code> | vertical resolution in pixels/mm |
|
||||||
| [options.resolutionUnit] | <code>string</code> | <code>"'inch'"</code> | resolution unit options: inch, cm |
|
| [options.resolutionUnit] | <code>string</code> | <code>"'inch'"</code> | resolution unit options: inch, cm |
|
||||||
| [options.bitdepth] | <code>number</code> | <code>8</code> | reduce bitdepth to 1, 2 or 4 bit |
|
| [options.bitdepth] | <code>number</code> | <code>8</code> | reduce bitdepth to 1, 2 or 4 bit |
|
||||||
| [options.miniswhite] | <code>boolean</code> | <code>false</code> | write 1-bit images as miniswhite |
|
|
||||||
|
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
@ -671,15 +461,12 @@ sharp('input.svg')
|
|||||||
|
|
||||||
|
|
||||||
## avif
|
## avif
|
||||||
> avif([options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Use these AVIF options for output image.
|
Use these AVIF options for output image.
|
||||||
|
|
||||||
AVIF image sequences are not supported.
|
Whilst it is possible to create AVIF images smaller than 16x16 pixels,
|
||||||
Prebuilt binaries support a bitdepth of 8 only.
|
most web browsers do not display these properly.
|
||||||
|
|
||||||
This feature is experimental on the Windows ARM64 platform
|
AVIF image sequences are not supported.
|
||||||
and requires a CPU with ARM64v8.4 or later.
|
|
||||||
|
|
||||||
|
|
||||||
**Throws**:
|
**Throws**:
|
||||||
@ -695,7 +482,6 @@ and requires a CPU with ARM64v8.4 or later.
|
|||||||
| [options.lossless] | <code>boolean</code> | <code>false</code> | use lossless compression |
|
| [options.lossless] | <code>boolean</code> | <code>false</code> | use lossless compression |
|
||||||
| [options.effort] | <code>number</code> | <code>4</code> | CPU effort, between 0 (fastest) and 9 (slowest) |
|
| [options.effort] | <code>number</code> | <code>4</code> | CPU effort, between 0 (fastest) and 9 (slowest) |
|
||||||
| [options.chromaSubsampling] | <code>string</code> | <code>"'4:4:4'"</code> | set to '4:2:0' to use chroma subsampling |
|
| [options.chromaSubsampling] | <code>string</code> | <code>"'4:4:4'"</code> | set to '4:2:0' to use chroma subsampling |
|
||||||
| [options.bitdepth] | <code>number</code> | <code>8</code> | set bitdepth to 8, 10 or 12 bit |
|
|
||||||
|
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
@ -712,8 +498,6 @@ const data = await sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## heif
|
## heif
|
||||||
> heif(options) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Use these HEIF options for output image.
|
Use these HEIF options for output image.
|
||||||
|
|
||||||
Support for patent-encumbered HEIC images using `hevc` compression requires the use of a
|
Support for patent-encumbered HEIC images using `hevc` compression requires the use of a
|
||||||
@ -728,13 +512,12 @@ globally-installed libvips compiled with support for libheif, libde265 and x265.
|
|||||||
|
|
||||||
| Param | Type | Default | Description |
|
| Param | Type | Default | Description |
|
||||||
| --- | --- | --- | --- |
|
| --- | --- | --- | --- |
|
||||||
| options | <code>Object</code> | | output options |
|
| [options] | <code>Object</code> | | output options |
|
||||||
| options.compression | <code>string</code> | | compression format: av1, hevc |
|
|
||||||
| [options.quality] | <code>number</code> | <code>50</code> | quality, integer 1-100 |
|
| [options.quality] | <code>number</code> | <code>50</code> | quality, integer 1-100 |
|
||||||
|
| [options.compression] | <code>string</code> | <code>"'av1'"</code> | compression format: av1, hevc |
|
||||||
| [options.lossless] | <code>boolean</code> | <code>false</code> | use lossless compression |
|
| [options.lossless] | <code>boolean</code> | <code>false</code> | use lossless compression |
|
||||||
| [options.effort] | <code>number</code> | <code>4</code> | CPU effort, between 0 (fastest) and 9 (slowest) |
|
| [options.effort] | <code>number</code> | <code>4</code> | CPU effort, between 0 (fastest) and 9 (slowest) |
|
||||||
| [options.chromaSubsampling] | <code>string</code> | <code>"'4:4:4'"</code> | set to '4:2:0' to use chroma subsampling |
|
| [options.chromaSubsampling] | <code>string</code> | <code>"'4:4:4'"</code> | set to '4:2:0' to use chroma subsampling |
|
||||||
| [options.bitdepth] | <code>number</code> | <code>8</code> | set bitdepth to 8, 10 or 12 bit |
|
|
||||||
|
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
@ -745,8 +528,6 @@ const data = await sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## jxl
|
## jxl
|
||||||
> jxl([options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Use these JPEG-XL (JXL) options for output image.
|
Use these JPEG-XL (JXL) options for output image.
|
||||||
|
|
||||||
This feature is experimental, please do not use in production systems.
|
This feature is experimental, please do not use in production systems.
|
||||||
@ -755,6 +536,8 @@ Requires libvips compiled with support for libjxl.
|
|||||||
The prebuilt binaries do not include this - see
|
The prebuilt binaries do not include this - see
|
||||||
[installing a custom libvips](https://sharp.pixelplumbing.com/install#custom-libvips).
|
[installing a custom libvips](https://sharp.pixelplumbing.com/install#custom-libvips).
|
||||||
|
|
||||||
|
Image metadata (EXIF, XMP) is unsupported.
|
||||||
|
|
||||||
|
|
||||||
**Throws**:
|
**Throws**:
|
||||||
|
|
||||||
@ -769,15 +552,11 @@ The prebuilt binaries do not include this - see
|
|||||||
| [options.quality] | <code>number</code> | | calculate `distance` based on JPEG-like quality, between 1 and 100, overrides distance if specified |
|
| [options.quality] | <code>number</code> | | calculate `distance` based on JPEG-like quality, between 1 and 100, overrides distance if specified |
|
||||||
| [options.decodingTier] | <code>number</code> | <code>0</code> | target decode speed tier, between 0 (highest quality) and 4 (lowest quality) |
|
| [options.decodingTier] | <code>number</code> | <code>0</code> | target decode speed tier, between 0 (highest quality) and 4 (lowest quality) |
|
||||||
| [options.lossless] | <code>boolean</code> | <code>false</code> | use lossless compression |
|
| [options.lossless] | <code>boolean</code> | <code>false</code> | use lossless compression |
|
||||||
| [options.effort] | <code>number</code> | <code>7</code> | CPU effort, between 1 (fastest) and 9 (slowest) |
|
| [options.effort] | <code>number</code> | <code>7</code> | CPU effort, between 3 (fastest) and 9 (slowest) |
|
||||||
| [options.loop] | <code>number</code> | <code>0</code> | number of animation iterations, use 0 for infinite animation |
|
|
||||||
| [options.delay] | <code>number</code> \| <code>Array.<number></code> | | delay(s) between animation frames (in milliseconds) |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## raw
|
## raw
|
||||||
> raw([options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Force output to be raw, uncompressed pixel data.
|
Force output to be raw, uncompressed pixel data.
|
||||||
Pixel ordering is left-to-right, top-to-bottom, without padding.
|
Pixel ordering is left-to-right, top-to-bottom, without padding.
|
||||||
Channel ordering will be RGB or RGBA for non-greyscale colourspaces.
|
Channel ordering will be RGB or RGBA for non-greyscale colourspaces.
|
||||||
@ -813,8 +592,6 @@ const data = await sharp('input.png')
|
|||||||
|
|
||||||
|
|
||||||
## tile
|
## tile
|
||||||
> tile([options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Use tile-based deep zoom (image pyramid) output.
|
Use tile-based deep zoom (image pyramid) output.
|
||||||
|
|
||||||
Set the format and options for tile images via the `toFormat`, `jpeg`, `png` or `webp` functions.
|
Set the format and options for tile images via the `toFormat`, `jpeg`, `png` or `webp` functions.
|
||||||
@ -822,6 +599,10 @@ Use a `.zip` or `.szi` file extension with `toFile` to write to a compressed arc
|
|||||||
|
|
||||||
The container will be set to `zip` when the output is a Buffer or Stream, otherwise it will default to `fs`.
|
The container will be set to `zip` when the output is a Buffer or Stream, otherwise it will default to `fs`.
|
||||||
|
|
||||||
|
Requires libvips compiled with support for libgsf.
|
||||||
|
The prebuilt binaries do not include this - see
|
||||||
|
[installing a custom libvips](https://sharp.pixelplumbing.com/install#custom-libvips).
|
||||||
|
|
||||||
|
|
||||||
**Throws**:
|
**Throws**:
|
||||||
|
|
||||||
@ -836,7 +617,7 @@ The container will be set to `zip` when the output is a Buffer or Stream, otherw
|
|||||||
| [options.angle] | <code>number</code> | <code>0</code> | tile angle of rotation, must be a multiple of 90. |
|
| [options.angle] | <code>number</code> | <code>0</code> | tile angle of rotation, must be a multiple of 90. |
|
||||||
| [options.background] | <code>string</code> \| <code>Object</code> | <code>"{r: 255, g: 255, b: 255, alpha: 1}"</code> | background colour, parsed by the [color](https://www.npmjs.org/package/color) module, defaults to white without transparency. |
|
| [options.background] | <code>string</code> \| <code>Object</code> | <code>"{r: 255, g: 255, b: 255, alpha: 1}"</code> | background colour, parsed by the [color](https://www.npmjs.org/package/color) module, defaults to white without transparency. |
|
||||||
| [options.depth] | <code>string</code> | | how deep to make the pyramid, possible values are `onepixel`, `onetile` or `one`, default based on layout. |
|
| [options.depth] | <code>string</code> | | how deep to make the pyramid, possible values are `onepixel`, `onetile` or `one`, default based on layout. |
|
||||||
| [options.skipBlanks] | <code>number</code> | <code>-1</code> | Threshold to skip tile generation. Range is 0-255 for 8-bit images, 0-65535 for 16-bit images. Default is 5 for `google` layout, -1 (no skip) otherwise. |
|
| [options.skipBlanks] | <code>number</code> | <code>-1</code> | threshold to skip tile generation, a value 0 - 255 for 8-bit images or 0 - 65535 for 16-bit images |
|
||||||
| [options.container] | <code>string</code> | <code>"'fs'"</code> | tile container, with value `fs` (filesystem) or `zip` (compressed file). |
|
| [options.container] | <code>string</code> | <code>"'fs'"</code> | tile container, with value `fs` (filesystem) or `zip` (compressed file). |
|
||||||
| [options.layout] | <code>string</code> | <code>"'dz'"</code> | filesystem layout, possible values are `dz`, `iiif`, `iiif3`, `zoomify` or `google`. |
|
| [options.layout] | <code>string</code> | <code>"'dz'"</code> | filesystem layout, possible values are `dz`, `iiif`, `iiif3`, `zoomify` or `google`. |
|
||||||
| [options.centre] | <code>boolean</code> | <code>false</code> | centre image in tile. |
|
| [options.centre] | <code>boolean</code> | <code>false</code> | centre image in tile. |
|
||||||
@ -872,8 +653,6 @@ readableStream
|
|||||||
|
|
||||||
|
|
||||||
## timeout
|
## timeout
|
||||||
> timeout(options) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Set a timeout for processing, in seconds.
|
Set a timeout for processing, in seconds.
|
||||||
Use a value of zero to continue processing indefinitely, the default behaviour.
|
Use a value of zero to continue processing indefinitely, the default behaviour.
|
||||||
|
|
@ -1,11 +1,4 @@
|
|||||||
---
|
|
||||||
# This file was auto-generated from JSDoc in lib/resize.js
|
|
||||||
title: Resizing images
|
|
||||||
---
|
|
||||||
|
|
||||||
## resize
|
## resize
|
||||||
> resize([width], [height], [options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Resize image to `width`, `height` or `width x height`.
|
Resize image to `width`, `height` or `width x height`.
|
||||||
|
|
||||||
When both a `width` and `height` are provided, the possible methods by which the image should **fit** these are:
|
When both a `width` and `height` are provided, the possible methods by which the image should **fit** these are:
|
||||||
@ -17,7 +10,7 @@ When both a `width` and `height` are provided, the possible methods by which the
|
|||||||
|
|
||||||
Some of these values are based on the [object-fit](https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit) CSS property.
|
Some of these values are based on the [object-fit](https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit) CSS property.
|
||||||
|
|
||||||
<img alt="Examples of various values for the fit property when resizing" width="100%" style="aspect-ratio: 998/243" src="/api-resize-fit.svg">
|
<img alt="Examples of various values for the fit property when resizing" width="100%" style="aspect-ratio: 998/243" src="https://cdn.jsdelivr.net/gh/lovell/sharp@main/docs/image/api-resize-fit.svg">
|
||||||
|
|
||||||
When using a **fit** of `cover` or `contain`, the default **position** is `centre`. Other options are:
|
When using a **fit** of `cover` or `contain`, the default **position** is `centre`. Other options are:
|
||||||
- `sharp.position`: `top`, `right top`, `right`, `right bottom`, `bottom`, `left bottom`, `left`, `left top`.
|
- `sharp.position`: `top`, `right top`, `right`, `right bottom`, `bottom`, `left bottom`, `left`, `left top`.
|
||||||
@ -26,23 +19,17 @@ When using a **fit** of `cover` or `contain`, the default **position** is `centr
|
|||||||
|
|
||||||
Some of these values are based on the [object-position](https://developer.mozilla.org/en-US/docs/Web/CSS/object-position) CSS property.
|
Some of these values are based on the [object-position](https://developer.mozilla.org/en-US/docs/Web/CSS/object-position) CSS property.
|
||||||
|
|
||||||
The strategy-based approach initially resizes so one dimension is at its target length
|
The experimental strategy-based approach resizes so one dimension is at its target length
|
||||||
then repeatedly ranks edge regions, discarding the edge with the lowest score based on the selected strategy.
|
then repeatedly ranks edge regions, discarding the edge with the lowest score based on the selected strategy.
|
||||||
- `entropy`: focus on the region with the highest [Shannon entropy](https://en.wikipedia.org/wiki/Entropy_%28information_theory%29).
|
- `entropy`: focus on the region with the highest [Shannon entropy](https://en.wikipedia.org/wiki/Entropy_%28information_theory%29).
|
||||||
- `attention`: focus on the region with the highest luminance frequency, colour saturation and presence of skin tones.
|
- `attention`: focus on the region with the highest luminance frequency, colour saturation and presence of skin tones.
|
||||||
|
|
||||||
Possible downsizing kernels are:
|
Possible interpolation kernels are:
|
||||||
- `nearest`: Use [nearest neighbour interpolation](http://en.wikipedia.org/wiki/Nearest-neighbor_interpolation).
|
- `nearest`: Use [nearest neighbour interpolation](http://en.wikipedia.org/wiki/Nearest-neighbor_interpolation).
|
||||||
- `linear`: Use a [triangle filter](https://en.wikipedia.org/wiki/Triangular_function).
|
|
||||||
- `cubic`: Use a [Catmull-Rom spline](https://en.wikipedia.org/wiki/Centripetal_Catmull%E2%80%93Rom_spline).
|
- `cubic`: Use a [Catmull-Rom spline](https://en.wikipedia.org/wiki/Centripetal_Catmull%E2%80%93Rom_spline).
|
||||||
- `mitchell`: Use a [Mitchell-Netravali spline](https://www.cs.utexas.edu/~fussell/courses/cs384g-fall2013/lectures/mitchell/Mitchell.pdf).
|
- `mitchell`: Use a [Mitchell-Netravali spline](https://www.cs.utexas.edu/~fussell/courses/cs384g-fall2013/lectures/mitchell/Mitchell.pdf).
|
||||||
- `lanczos2`: Use a [Lanczos kernel](https://en.wikipedia.org/wiki/Lanczos_resampling#Lanczos_kernel) with `a=2`.
|
- `lanczos2`: Use a [Lanczos kernel](https://en.wikipedia.org/wiki/Lanczos_resampling#Lanczos_kernel) with `a=2`.
|
||||||
- `lanczos3`: Use a Lanczos kernel with `a=3` (the default).
|
- `lanczos3`: Use a Lanczos kernel with `a=3` (the default).
|
||||||
- `mks2013`: Use a [Magic Kernel Sharp](https://johncostella.com/magic/mks.pdf) 2013 kernel, as adopted by Facebook.
|
|
||||||
- `mks2021`: Use a Magic Kernel Sharp 2021 kernel, with more accurate (reduced) sharpening than the 2013 version.
|
|
||||||
|
|
||||||
When upsampling, these kernels map to `nearest`, `linear` and `cubic` interpolators.
|
|
||||||
Downsampling kernels without a matching upsampling interpolator map to `cubic`.
|
|
||||||
|
|
||||||
Only one resize can occur per pipeline.
|
Only one resize can occur per pipeline.
|
||||||
Previous calls to `resize` in the same pipeline will be ignored.
|
Previous calls to `resize` in the same pipeline will be ignored.
|
||||||
@ -63,7 +50,7 @@ Previous calls to `resize` in the same pipeline will be ignored.
|
|||||||
| [options.fit] | <code>String</code> | <code>'cover'</code> | How the image should be resized/cropped to fit the target dimension(s), one of `cover`, `contain`, `fill`, `inside` or `outside`. |
|
| [options.fit] | <code>String</code> | <code>'cover'</code> | How the image should be resized/cropped to fit the target dimension(s), one of `cover`, `contain`, `fill`, `inside` or `outside`. |
|
||||||
| [options.position] | <code>String</code> | <code>'centre'</code> | A position, gravity or strategy to use when `fit` is `cover` or `contain`. |
|
| [options.position] | <code>String</code> | <code>'centre'</code> | A position, gravity or strategy to use when `fit` is `cover` or `contain`. |
|
||||||
| [options.background] | <code>String</code> \| <code>Object</code> | <code>{r: 0, g: 0, b: 0, alpha: 1}</code> | background colour when `fit` is `contain`, parsed by the [color](https://www.npmjs.org/package/color) module, defaults to black without transparency. |
|
| [options.background] | <code>String</code> \| <code>Object</code> | <code>{r: 0, g: 0, b: 0, alpha: 1}</code> | background colour when `fit` is `contain`, parsed by the [color](https://www.npmjs.org/package/color) module, defaults to black without transparency. |
|
||||||
| [options.kernel] | <code>String</code> | <code>'lanczos3'</code> | The kernel to use for image reduction and the inferred interpolator to use for upsampling. Use the `fastShrinkOnLoad` option to control kernel vs shrink-on-load. |
|
| [options.kernel] | <code>String</code> | <code>'lanczos3'</code> | The kernel to use for image reduction. Use the `fastShrinkOnLoad` option to control kernel vs shrink-on-load. |
|
||||||
| [options.withoutEnlargement] | <code>Boolean</code> | <code>false</code> | Do not scale up if the width *or* height are already less than the target dimensions, equivalent to GraphicsMagick's `>` geometry option. This may result in output dimensions smaller than the target dimensions. |
|
| [options.withoutEnlargement] | <code>Boolean</code> | <code>false</code> | Do not scale up if the width *or* height are already less than the target dimensions, equivalent to GraphicsMagick's `>` geometry option. This may result in output dimensions smaller than the target dimensions. |
|
||||||
| [options.withoutReduction] | <code>Boolean</code> | <code>false</code> | Do not scale down if the width *or* height are already greater than the target dimensions, equivalent to GraphicsMagick's `<` geometry option. This may still result in a crop to reach the target dimensions. |
|
| [options.withoutReduction] | <code>Boolean</code> | <code>false</code> | Do not scale down if the width *or* height are already greater than the target dimensions, equivalent to GraphicsMagick's `<` geometry option. This may still result in a crop to reach the target dimensions. |
|
||||||
| [options.fastShrinkOnLoad] | <code>Boolean</code> | <code>true</code> | Take greater advantage of the JPEG and WebP shrink-on-load feature, which can lead to a slight moiré pattern or round-down of an auto-scaled dimension. |
|
| [options.fastShrinkOnLoad] | <code>Boolean</code> | <code>true</code> | Take greater advantage of the JPEG and WebP shrink-on-load feature, which can lead to a slight moiré pattern or round-down of an auto-scaled dimension. |
|
||||||
@ -159,8 +146,6 @@ const scaleByHalf = await sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## extend
|
## extend
|
||||||
> extend(extend) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Extend / pad / extrude one or more edges of the image with either
|
Extend / pad / extrude one or more edges of the image with either
|
||||||
the provided background colour or pixels derived from the image.
|
the provided background colour or pixels derived from the image.
|
||||||
This operation will always occur after resizing and extraction, if any.
|
This operation will always occur after resizing and extraction, if any.
|
||||||
@ -219,13 +204,11 @@ sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## extract
|
## extract
|
||||||
> extract(options) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Extract/crop a region of the image.
|
Extract/crop a region of the image.
|
||||||
|
|
||||||
- Use `extract` before `resize` for pre-resize extraction.
|
- Use `extract` before `resize` for pre-resize extraction.
|
||||||
- Use `extract` after `resize` for post-resize extraction.
|
- Use `extract` after `resize` for post-resize extraction.
|
||||||
- Use `extract` twice and `resize` once for extract-then-resize-then-extract in a fixed operation order.
|
- Use `extract` before and after for both.
|
||||||
|
|
||||||
|
|
||||||
**Throws**:
|
**Throws**:
|
||||||
@ -262,15 +245,14 @@ sharp(input)
|
|||||||
|
|
||||||
|
|
||||||
## trim
|
## trim
|
||||||
> trim([options]) ⇒ <code>Sharp</code>
|
|
||||||
|
|
||||||
Trim pixels from all edges that contain values similar to the given background colour, which defaults to that of the top-left pixel.
|
Trim pixels from all edges that contain values similar to the given background colour, which defaults to that of the top-left pixel.
|
||||||
|
|
||||||
Images with an alpha channel will use the combined bounding box of alpha and non-alpha channels.
|
Images with an alpha channel will use the combined bounding box of alpha and non-alpha channels.
|
||||||
|
|
||||||
If the result of this operation would trim an image to nothing then no change is made.
|
If the result of this operation would trim an image to nothing then no change is made.
|
||||||
|
|
||||||
The `info` response Object will contain `trimOffsetLeft` and `trimOffsetTop` properties.
|
The `info` response Object, obtained from callback of `.toFile()` or `.toBuffer()`,
|
||||||
|
will contain `trimOffsetLeft` and `trimOffsetTop` properties.
|
||||||
|
|
||||||
|
|
||||||
**Throws**:
|
**Throws**:
|
||||||
@ -280,44 +262,46 @@ The `info` response Object will contain `trimOffsetLeft` and `trimOffsetTop` pro
|
|||||||
|
|
||||||
| Param | Type | Default | Description |
|
| Param | Type | Default | Description |
|
||||||
| --- | --- | --- | --- |
|
| --- | --- | --- | --- |
|
||||||
| [options] | <code>Object</code> | | |
|
| trim | <code>string</code> \| <code>number</code> \| <code>Object</code> | | the specific background colour to trim, the threshold for doing so or an Object with both. |
|
||||||
| [options.background] | <code>string</code> \| <code>Object</code> | <code>"'top-left pixel'"</code> | Background colour, parsed by the [color](https://www.npmjs.org/package/color) module, defaults to that of the top-left pixel. |
|
| [trim.background] | <code>string</code> \| <code>Object</code> | <code>"'top-left pixel'"</code> | background colour, parsed by the [color](https://www.npmjs.org/package/color) module, defaults to that of the top-left pixel. |
|
||||||
| [options.threshold] | <code>number</code> | <code>10</code> | Allowed difference from the above colour, a positive number. |
|
| [trim.threshold] | <code>number</code> | <code>10</code> | the allowed difference from the above colour, a positive number. |
|
||||||
| [options.lineArt] | <code>boolean</code> | <code>false</code> | Does the input more closely resemble line art (e.g. vector) rather than being photographic? |
|
|
||||||
|
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
// Trim pixels with a colour similar to that of the top-left pixel.
|
// Trim pixels with a colour similar to that of the top-left pixel.
|
||||||
await sharp(input)
|
sharp(input)
|
||||||
.trim()
|
.trim()
|
||||||
.toFile(output);
|
.toFile(output, function(err, info) {
|
||||||
|
...
|
||||||
|
});
|
||||||
```
|
```
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
// Trim pixels with the exact same colour as that of the top-left pixel.
|
// Trim pixels with the exact same colour as that of the top-left pixel.
|
||||||
await sharp(input)
|
sharp(input)
|
||||||
.trim({
|
.trim(0)
|
||||||
threshold: 0
|
.toFile(output, function(err, info) {
|
||||||
})
|
...
|
||||||
.toFile(output);
|
});
|
||||||
```
|
```
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
// Assume input is line art and trim only pixels with a similar colour to red.
|
// Trim only pixels with a similar colour to red.
|
||||||
const output = await sharp(input)
|
sharp(input)
|
||||||
.trim({
|
.trim("#FF0000")
|
||||||
background: "#FF0000",
|
.toFile(output, function(err, info) {
|
||||||
lineArt: true
|
...
|
||||||
})
|
});
|
||||||
.toBuffer();
|
|
||||||
```
|
```
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
// Trim all "yellow-ish" pixels, being more lenient with the higher threshold.
|
// Trim all "yellow-ish" pixels, being more lenient with the higher threshold.
|
||||||
const output = await sharp(input)
|
sharp(input)
|
||||||
.trim({
|
.trim({
|
||||||
background: "yellow",
|
background: "yellow",
|
||||||
threshold: 42,
|
threshold: 42,
|
||||||
})
|
})
|
||||||
.toBuffer();
|
.toFile(output, function(err, info) {
|
||||||
|
...
|
||||||
|
});
|
||||||
```
|
```
|
@ -1,13 +1,5 @@
|
|||||||
---
|
|
||||||
# This file was auto-generated from JSDoc in lib/utility.js
|
|
||||||
title: Global properties
|
|
||||||
---
|
|
||||||
|
|
||||||
## versions
|
## versions
|
||||||
> versions
|
An Object containing the version numbers of sharp, libvips and its dependencies.
|
||||||
|
|
||||||
An Object containing the version numbers of sharp, libvips
|
|
||||||
and (when using prebuilt binaries) its dependencies.
|
|
||||||
|
|
||||||
|
|
||||||
**Example**
|
**Example**
|
||||||
@ -17,8 +9,6 @@ console.log(sharp.versions);
|
|||||||
|
|
||||||
|
|
||||||
## interpolators
|
## interpolators
|
||||||
> interpolators : <code>enum</code>
|
|
||||||
|
|
||||||
An Object containing the available interpolators and their proper values
|
An Object containing the available interpolators and their proper values
|
||||||
|
|
||||||
|
|
||||||
@ -37,8 +27,6 @@ An Object containing the available interpolators and their proper values
|
|||||||
|
|
||||||
|
|
||||||
## format
|
## format
|
||||||
> format ⇒ <code>Object</code>
|
|
||||||
|
|
||||||
An Object containing nested boolean values representing the available input and output formats/methods.
|
An Object containing nested boolean values representing the available input and output formats/methods.
|
||||||
|
|
||||||
|
|
||||||
@ -48,9 +36,18 @@ console.log(sharp.format);
|
|||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## queue
|
## vendor
|
||||||
> queue
|
An Object containing the platform and architecture
|
||||||
|
of the current and installed vendored binaries.
|
||||||
|
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
```js
|
||||||
|
console.log(sharp.vendor);
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## queue
|
||||||
An EventEmitter that emits a `change` event when a task is either:
|
An EventEmitter that emits a `change` event when a task is either:
|
||||||
- queued, waiting for _libuv_ to provide a worker thread
|
- queued, waiting for _libuv_ to provide a worker thread
|
||||||
- complete
|
- complete
|
||||||
@ -65,8 +62,6 @@ sharp.queue.on('change', function(queueLength) {
|
|||||||
|
|
||||||
|
|
||||||
## cache
|
## cache
|
||||||
> cache([options]) ⇒ <code>Object</code>
|
|
||||||
|
|
||||||
Gets or, when options are provided, sets the limits of _libvips'_ operation cache.
|
Gets or, when options are provided, sets the limits of _libvips'_ operation cache.
|
||||||
Existing entries in the cache will be trimmed after any change in limits.
|
Existing entries in the cache will be trimmed after any change in limits.
|
||||||
This method always returns cache statistics,
|
This method always returns cache statistics,
|
||||||
@ -94,8 +89,6 @@ sharp.cache(false);
|
|||||||
|
|
||||||
|
|
||||||
## concurrency
|
## concurrency
|
||||||
> concurrency([concurrency]) ⇒ <code>number</code>
|
|
||||||
|
|
||||||
Gets or, when a concurrency is provided, sets
|
Gets or, when a concurrency is provided, sets
|
||||||
the maximum number of threads _libvips_ should use to process _each image_.
|
the maximum number of threads _libvips_ should use to process _each image_.
|
||||||
These are from a thread pool managed by glib,
|
These are from a thread pool managed by glib,
|
||||||
@ -113,9 +106,15 @@ Some image format libraries spawn additional threads,
|
|||||||
e.g. libaom manages its own 4 threads when encoding AVIF images,
|
e.g. libaom manages its own 4 threads when encoding AVIF images,
|
||||||
and these are independent of the value set here.
|
and these are independent of the value set here.
|
||||||
|
|
||||||
:::note
|
The maximum number of images that sharp can process in parallel
|
||||||
Further [control over performance](/performance) is available.
|
is controlled by libuv's `UV_THREADPOOL_SIZE` environment variable,
|
||||||
:::
|
which defaults to 4.
|
||||||
|
|
||||||
|
https://nodejs.org/api/cli.html#uv_threadpool_sizesize
|
||||||
|
|
||||||
|
For example, by default, a machine with 8 CPU cores will process
|
||||||
|
4 images in parallel and use up to 8 threads per image,
|
||||||
|
so there will be up to 32 concurrent threads.
|
||||||
|
|
||||||
|
|
||||||
**Returns**: <code>number</code> - concurrency
|
**Returns**: <code>number</code> - concurrency
|
||||||
@ -133,8 +132,6 @@ sharp.concurrency(0); // 4
|
|||||||
|
|
||||||
|
|
||||||
## counters
|
## counters
|
||||||
> counters() ⇒ <code>Object</code>
|
|
||||||
|
|
||||||
Provides access to internal task counters.
|
Provides access to internal task counters.
|
||||||
- queue is the number of tasks this module has queued waiting for _libuv_ to provide a worker thread from its pool.
|
- queue is the number of tasks this module has queued waiting for _libuv_ to provide a worker thread from its pool.
|
||||||
- process is the number of resize tasks currently being processed.
|
- process is the number of resize tasks currently being processed.
|
||||||
@ -147,10 +144,8 @@ const counters = sharp.counters(); // { queue: 2, process: 4 }
|
|||||||
|
|
||||||
|
|
||||||
## simd
|
## simd
|
||||||
> simd([simd]) ⇒ <code>boolean</code>
|
|
||||||
|
|
||||||
Get and set use of SIMD vector unit instructions.
|
Get and set use of SIMD vector unit instructions.
|
||||||
Requires libvips to have been compiled with highway support.
|
Requires libvips to have been compiled with liborc support.
|
||||||
|
|
||||||
Improves the performance of `resize`, `blur` and `sharpen` operations
|
Improves the performance of `resize`, `blur` and `sharpen` operations
|
||||||
by taking advantage of the SIMD vector unit of the CPU, e.g. Intel SSE and ARM NEON.
|
by taking advantage of the SIMD vector unit of the CPU, e.g. Intel SSE and ARM NEON.
|
||||||
@ -164,18 +159,16 @@ by taking advantage of the SIMD vector unit of the CPU, e.g. Intel SSE and ARM N
|
|||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
const simd = sharp.simd();
|
const simd = sharp.simd();
|
||||||
// simd is `true` if the runtime use of highway is currently enabled
|
// simd is `true` if the runtime use of liborc is currently enabled
|
||||||
```
|
```
|
||||||
**Example**
|
**Example**
|
||||||
```js
|
```js
|
||||||
const simd = sharp.simd(false);
|
const simd = sharp.simd(false);
|
||||||
// prevent libvips from using highway at runtime
|
// prevent libvips from using liborc at runtime
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## block
|
## block
|
||||||
> block(options)
|
|
||||||
|
|
||||||
Block libvips operations at runtime.
|
Block libvips operations at runtime.
|
||||||
|
|
||||||
This is in addition to the `VIPS_BLOCK_UNTRUSTED` environment variable,
|
This is in addition to the `VIPS_BLOCK_UNTRUSTED` environment variable,
|
||||||
@ -198,8 +191,6 @@ sharp.block({
|
|||||||
|
|
||||||
|
|
||||||
## unblock
|
## unblock
|
||||||
> unblock(options)
|
|
||||||
|
|
||||||
Unblock libvips operations at runtime.
|
Unblock libvips operations at runtime.
|
||||||
|
|
||||||
This is useful for defining a list of allowed operations.
|
This is useful for defining a list of allowed operations.
|
@ -1,90 +0,0 @@
|
|||||||
// @ts-check
|
|
||||||
import { defineConfig } from 'astro/config';
|
|
||||||
import starlight from '@astrojs/starlight';
|
|
||||||
import starlightAutoSidebar from 'starlight-auto-sidebar';
|
|
||||||
|
|
||||||
import { version } from '../package.json';
|
|
||||||
|
|
||||||
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:; 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',
|
|
||||||
collapsed: true,
|
|
||||||
autogenerate: { directory: 'changelog' }
|
|
||||||
}
|
|
||||||
],
|
|
||||||
social: [
|
|
||||||
{ icon: 'openCollective', label: 'Open Collective', href: 'https://opencollective.com/libvips' },
|
|
||||||
{ icon: 'github', label: 'GitHub', href: 'https://github.com/lovell/sharp' }
|
|
||||||
],
|
|
||||||
plugins: [starlightAutoSidebar()]
|
|
||||||
})
|
|
||||||
],
|
|
||||||
redirects: {
|
|
||||||
'/changelog': `/changelog/v${version}`
|
|
||||||
}
|
|
||||||
});
|
|
38
docs/build.js
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
// 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') // 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);
|
||||||
|
});
|
@ -1,42 +0,0 @@
|
|||||||
// 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);
|
|
||||||
});
|
|
1881
docs/changelog.md
Normal file
1
docs/docute.min.js
vendored
Normal file
@ -1,7 +1,14 @@
|
|||||||
{
|
{
|
||||||
"hosting": {
|
"hosting": {
|
||||||
"site": "pixelplumbing-sharp",
|
"site": "pixelplumbing-sharp",
|
||||||
"public": "dist",
|
"public": ".",
|
||||||
|
"ignore": [
|
||||||
|
".*",
|
||||||
|
"build.js",
|
||||||
|
"firebase.json",
|
||||||
|
"image/**",
|
||||||
|
"search-index/**"
|
||||||
|
],
|
||||||
"headers": [
|
"headers": [
|
||||||
{
|
{
|
||||||
"source": "**",
|
"source": "**",
|
||||||
@ -11,6 +18,99 @@
|
|||||||
{ "key": "X-Frame-Options", "value": "SAMEORIGIN" }
|
{ "key": "X-Frame-Options", "value": "SAMEORIGIN" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
"redirects": [
|
||||||
|
{
|
||||||
|
"source": "**/install/**",
|
||||||
|
"destination": "/install",
|
||||||
|
"type": 301
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "/page/install",
|
||||||
|
"destination": "/install",
|
||||||
|
"type": 301
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "**/api-constructor/**",
|
||||||
|
"destination": "/api-constructor",
|
||||||
|
"type": 301
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "**/api-input/**",
|
||||||
|
"destination": "/api-input",
|
||||||
|
"type": 301
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "**/api-output/**",
|
||||||
|
"destination": "/api-output",
|
||||||
|
"type": 301
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "**/api-resize/**",
|
||||||
|
"destination": "/api-resize",
|
||||||
|
"type": 301
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "**/api-compsite/**",
|
||||||
|
"destination": "/api-compsite",
|
||||||
|
"type": 301
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "**/api-operation/**",
|
||||||
|
"destination": "/api-operation",
|
||||||
|
"type": 301
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "**/api-colour/**",
|
||||||
|
"destination": "/api-colour",
|
||||||
|
"type": 301
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "**/api-channel/**",
|
||||||
|
"destination": "/api-channel",
|
||||||
|
"type": 301
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "**/api-utility/**",
|
||||||
|
"destination": "/api-utility",
|
||||||
|
"type": 301
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "/page/api",
|
||||||
|
"destination": "/api-constructor",
|
||||||
|
"type": 301
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "**/performance/**",
|
||||||
|
"destination": "/performance",
|
||||||
|
"type": 301
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "/page/performance",
|
||||||
|
"destination": "/performance",
|
||||||
|
"type": 301
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "**/changelog/**",
|
||||||
|
"destination": "/changelog",
|
||||||
|
"type": 301
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "/page/changelog",
|
||||||
|
"destination": "/changelog",
|
||||||
|
"type": 301
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "/en/**",
|
||||||
|
"destination": "/",
|
||||||
|
"type": 301
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"rewrites": [
|
||||||
|
{
|
||||||
|
"source": "**",
|
||||||
|
"destination": "/index.html"
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,7 @@ Name: Brandon Aaron
|
|||||||
GitHub: https://github.com/brandonaaron
|
GitHub: https://github.com/brandonaaron
|
||||||
|
|
||||||
Name: Andreas Lind
|
Name: Andreas Lind
|
||||||
GitHub: https://github.com/papandreou
|
GitHub: https://github.com/papandreouGitHub:
|
||||||
|
|
||||||
Name: Maurus Cuelenaere
|
Name: Maurus Cuelenaere
|
||||||
GitHub: https://github.com/mcuelenaere
|
GitHub: https://github.com/mcuelenaere
|
||||||
@ -275,51 +275,3 @@ GitHub: https://github.com/LachlanNewman
|
|||||||
|
|
||||||
Name: BJJ
|
Name: BJJ
|
||||||
GitHub: https://github.com/bianjunjie1981
|
GitHub: https://github.com/bianjunjie1981
|
||||||
|
|
||||||
Name: Dennis Beatty
|
|
||||||
GitHub: https://github.com/dnsbty
|
|
||||||
|
|
||||||
Name: Ingvar Stepanyan
|
|
||||||
GitHub: https://github.com/RReverser
|
|
||||||
|
|
||||||
Name: Tamás András Horváth
|
|
||||||
GitHub: https://github.com/icetee
|
|
||||||
|
|
||||||
Name: Aaron Che
|
|
||||||
GitHub: https://github.com/yolopunk
|
|
||||||
|
|
||||||
Name: Mert Alev
|
|
||||||
GitHub: https://github.com/mertalev
|
|
||||||
|
|
||||||
Name: Adriaan Meuris
|
|
||||||
GitHub: https://github.com/adriaanmeuris
|
|
||||||
|
|
||||||
Name: Richard Hillmann
|
|
||||||
GitHub: https://github.com/project0
|
|
||||||
|
|
||||||
Name: Pongsatorn Manusopit
|
|
||||||
GitHub: https://github.com/ton11797
|
|
||||||
|
|
||||||
Name: Nathan Keynes
|
|
||||||
GitHub: https://github.com/nkeynes
|
|
||||||
|
|
||||||
Name: Sumit D
|
|
||||||
GitHub: https://github.com/sumitd2
|
|
||||||
|
|
||||||
Name: Caleb Meredith
|
|
||||||
GitHub: https://github.com/calebmer
|
|
||||||
|
|
||||||
Name: Don Denton
|
|
||||||
GitHub: https://github.com/happycollision
|
|
||||||
|
|
||||||
Name: Florent Zabera
|
|
||||||
GitHub: https://github.com/florentzabera
|
|
||||||
|
|
||||||
Name: Quentin Pinçon
|
|
||||||
GitHub: https://github.com/qpincon
|
|
||||||
|
|
||||||
Name: Hans Chen
|
|
||||||
GitHub: https://github.com/hans00
|
|
||||||
|
|
||||||
Name: Thibaut Patel
|
|
||||||
GitHub: https://github.com/tpatel
|
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
BIN
docs/image/sharp-logo-32.png
Normal file
After Width: | Height: | Size: 652 B |
BIN
docs/image/sharp-logo-600.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 929 B After Width: | Height: | Size: 929 B |
Before Width: | Height: | Size: 508 B After Width: | Height: | Size: 508 B |
206
docs/index.html
Normal file
371
docs/install.md
Normal file
@ -0,0 +1,371 @@
|
|||||||
|
# Installation
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm install sharp
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh
|
||||||
|
yarn add sharp
|
||||||
|
```
|
||||||
|
|
||||||
|
## Prerequisites
|
||||||
|
|
||||||
|
* Node.js >= 14.15.0
|
||||||
|
|
||||||
|
## Prebuilt binaries
|
||||||
|
|
||||||
|
Ready-compiled sharp and libvips binaries are provided for use on the most common platforms:
|
||||||
|
|
||||||
|
* macOS x64 (>= 10.13)
|
||||||
|
* macOS ARM64
|
||||||
|
* Linux x64 (glibc >= 2.17, musl >= 1.1.24, CPU with SSE4.2)
|
||||||
|
* Linux ARM64 (glibc >= 2.17, musl >= 1.1.24)
|
||||||
|
* Windows x64
|
||||||
|
* Windows x86
|
||||||
|
|
||||||
|
A ~7MB tarball containing libvips and its most commonly used dependencies
|
||||||
|
is downloaded via HTTPS, verified via Subresource Integrity
|
||||||
|
and decompressed into `node_modules/sharp/vendor` during `npm install`.
|
||||||
|
|
||||||
|
This provides support for the
|
||||||
|
JPEG, PNG, WebP, AVIF (limited to 8-bit depth), TIFF, GIF and SVG (input) image formats.
|
||||||
|
|
||||||
|
The following platforms have prebuilt libvips but not sharp:
|
||||||
|
|
||||||
|
* Linux ARMv7 (glibc >= 2.28)
|
||||||
|
* Linux ARMv6 (glibc >= 2.28)
|
||||||
|
* Windows ARM64
|
||||||
|
|
||||||
|
The following platforms require compilation of both libvips and sharp from source:
|
||||||
|
|
||||||
|
* Linux x86
|
||||||
|
* Linux ARMv7 (glibc <= 2.27, musl)
|
||||||
|
* Linux ARMv6 (glibc <= 2.27, musl)
|
||||||
|
* Linux PowerPC
|
||||||
|
* FreeBSD
|
||||||
|
* OpenBSD
|
||||||
|
|
||||||
|
## Common problems
|
||||||
|
|
||||||
|
The architecture and platform of Node.js used for `npm install`
|
||||||
|
must be the same as the architecture and platform of Node.js used at runtime.
|
||||||
|
See the [cross-platform](#cross-platform) section if this is not the case.
|
||||||
|
|
||||||
|
When using npm v6 or earlier, the `npm install --unsafe-perm` flag must be used when installing as `root` or a `sudo` user.
|
||||||
|
|
||||||
|
When using npm v7 or later, the user running `npm install` must own the directory it is run in.
|
||||||
|
|
||||||
|
The `npm install --ignore-scripts=false` flag must be used when `npm` has been configured to ignore installation scripts.
|
||||||
|
|
||||||
|
Check the output of running `npm install --verbose --foreground-scripts sharp` for useful error messages.
|
||||||
|
|
||||||
|
## Apple M1
|
||||||
|
|
||||||
|
Prebuilt sharp and libvips binaries have been provided for macOS on ARM64 since sharp v0.29.0.
|
||||||
|
|
||||||
|
## Cross-platform
|
||||||
|
|
||||||
|
At `npm install` time, prebuilt binaries are automatically selected for the
|
||||||
|
current OS platform and CPU architecture, where available.
|
||||||
|
|
||||||
|
The target platform and/or architecture can be manually selected using the following flags.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm install --platform=... --arch=... --arm-version=... sharp
|
||||||
|
```
|
||||||
|
|
||||||
|
* `--platform`: one of `linux`, `darwin` or `win32`.
|
||||||
|
* `--arch`: one of `x64`, `ia32`, `arm` or `arm64`.
|
||||||
|
* `--arm-version`: one of `6`, `7` or `8` (`arm` defaults to `6`, `arm64` defaults to `8`).
|
||||||
|
* `--libc`: one of `glibc` or `musl`. This option only works with platform `linux`, defaults to `glibc`
|
||||||
|
* `--sharp-install-force`: skip version compatibility and Subresource Integrity checks.
|
||||||
|
|
||||||
|
These values can also be set via environment variables,
|
||||||
|
`npm_config_platform`, `npm_config_arch`, `npm_config_arm_version`, `npm_config_libc`
|
||||||
|
and `SHARP_INSTALL_FORCE` respectively.
|
||||||
|
|
||||||
|
For example, if the target machine has a 64-bit ARM CPU and is running Alpine Linux,
|
||||||
|
use the following flags:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm install --arch=arm64 --platform=linux --libc=musl sharp
|
||||||
|
```
|
||||||
|
|
||||||
|
If the current machine is Alpine Linux and the target machine is Debian Linux on x64 cpu,
|
||||||
|
use the following flags:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm install --arch=x64 --platform=linux --libc=glibc sharp
|
||||||
|
```
|
||||||
|
|
||||||
|
Multiple platforms and architectures can be supported within the same installation tree.
|
||||||
|
The following example for macOS installs x64 binaries then adds (via a rebuild) arm64 binaries:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm install --platform=darwin --arch=x64 sharp
|
||||||
|
npm rebuild --platform=darwin --arch=arm64 sharp
|
||||||
|
```
|
||||||
|
|
||||||
|
## Custom libvips
|
||||||
|
|
||||||
|
To use a custom, globally-installed version of libvips instead of the provided binaries,
|
||||||
|
make sure it is at least the version listed under `config.libvips` in the `package.json` file
|
||||||
|
and that it can be located using `pkg-config --modversion vips-cpp`.
|
||||||
|
|
||||||
|
For help compiling libvips and its dependencies, please see
|
||||||
|
[building libvips from source](https://www.libvips.org/install.html#building-libvips-from-source).
|
||||||
|
|
||||||
|
The use of a globally-installed libvips is unsupported on Windows
|
||||||
|
and on macOS when running Node.js under Rosetta.
|
||||||
|
|
||||||
|
## Building from source
|
||||||
|
|
||||||
|
This module will be compiled from source at `npm install` time when:
|
||||||
|
|
||||||
|
* a globally-installed libvips is detected (set the `SHARP_IGNORE_GLOBAL_LIBVIPS` environment variable to skip this),
|
||||||
|
* prebuilt sharp binaries do not exist for the current platform, or
|
||||||
|
* when the `npm install --build-from-source` flag is used.
|
||||||
|
|
||||||
|
Building from source requires:
|
||||||
|
|
||||||
|
* C++11 compiler
|
||||||
|
* [node-gyp](https://github.com/nodejs/node-gyp#installation) and its dependencies
|
||||||
|
|
||||||
|
## Custom prebuilt binaries
|
||||||
|
|
||||||
|
This is an advanced approach that most people will not require.
|
||||||
|
|
||||||
|
### Prebuilt sharp binaries
|
||||||
|
|
||||||
|
To install the prebuilt sharp binaries from a custom URL,
|
||||||
|
set the `sharp_binary_host` npm config option
|
||||||
|
or the `npm_config_sharp_binary_host` environment variable.
|
||||||
|
|
||||||
|
To install the prebuilt sharp binaries from a directory on the local filesystem,
|
||||||
|
set the `sharp_local_prebuilds` npm config option
|
||||||
|
or the `npm_config_sharp_local_prebuilds` environment variable.
|
||||||
|
|
||||||
|
URL example:
|
||||||
|
if `sharp_binary_host` is set to `https://hostname/path`
|
||||||
|
and the sharp version is `1.2.3` then the resultant URL will be
|
||||||
|
`https://hostname/path/v1.2.3/sharp-v1.2.3-napi-v5-platform-arch.tar.gz`.
|
||||||
|
|
||||||
|
Filename example:
|
||||||
|
if `sharp_local_prebuilds` is set to `/path`
|
||||||
|
and the sharp version is `1.2.3` then the resultant filename will be
|
||||||
|
`/path/sharp-v1.2.3-napi-v5-platform-arch.tar.gz`.
|
||||||
|
|
||||||
|
### Prebuilt libvips binaries
|
||||||
|
|
||||||
|
To install the prebuilt libvips binaries from a custom URL,
|
||||||
|
set the `sharp_libvips_binary_host` npm config option
|
||||||
|
or the `npm_config_sharp_libvips_binary_host` environment variable.
|
||||||
|
|
||||||
|
To install the prebuilt libvips binaries from a directory on the local filesystem,
|
||||||
|
set the `sharp_libvips_local_prebuilds` npm config option
|
||||||
|
or the `npm_config_sharp_libvips_local_prebuilds` environment variable.
|
||||||
|
|
||||||
|
The version subpath and filename are appended to these.
|
||||||
|
|
||||||
|
URL example:
|
||||||
|
if `sharp_libvips_binary_host` is set to `https://hostname/path`
|
||||||
|
and the libvips version is `4.5.6` then the resultant URL will be
|
||||||
|
`https://hostname/path/v4.5.6/libvips-4.5.6-platform-arch.tar.br`.
|
||||||
|
|
||||||
|
Filename example:
|
||||||
|
if `sharp_libvips_local_prebuilds` is set to `/path`
|
||||||
|
and the libvips version is `4.5.6` then the resultant filename will be
|
||||||
|
`/path/v4.5.6/libvips-4.5.6-platform-arch.tar.br`.
|
||||||
|
|
||||||
|
See the Chinese mirror below for a further example.
|
||||||
|
|
||||||
|
If these binaries are modified, new integrity hashes can be provided
|
||||||
|
at install time via `npm_package_config_integrity_platform_arch`
|
||||||
|
environment variables, for example set
|
||||||
|
`npm_package_config_integrity_linux_x64` to `sha512-abc...`.
|
||||||
|
|
||||||
|
The integrity hash of a file can be generated via:
|
||||||
|
```sh
|
||||||
|
sha512sum libvips-x.y.z-platform-arch.tar.br | cut -f1 -d' ' | xxd -r -p | base64 -w 0
|
||||||
|
```
|
||||||
|
|
||||||
|
## Chinese mirror
|
||||||
|
|
||||||
|
A mirror site based in China, provided by Alibaba, contains binaries for both sharp and libvips.
|
||||||
|
|
||||||
|
To use this either set the following configuration:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm config set sharp_binary_host "https://npmmirror.com/mirrors/sharp"
|
||||||
|
npm config set sharp_libvips_binary_host "https://npmmirror.com/mirrors/sharp-libvips"
|
||||||
|
npm install sharp
|
||||||
|
```
|
||||||
|
|
||||||
|
or set the following environment variables:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm_config_sharp_binary_host="https://npmmirror.com/mirrors/sharp" \
|
||||||
|
npm_config_sharp_libvips_binary_host="https://npmmirror.com/mirrors/sharp-libvips" \
|
||||||
|
npm install sharp
|
||||||
|
```
|
||||||
|
|
||||||
|
## FreeBSD
|
||||||
|
|
||||||
|
The `vips` package must be installed before `npm install` is run.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
pkg install -y pkgconf vips
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh
|
||||||
|
cd /usr/ports/graphics/vips/ && make install clean
|
||||||
|
```
|
||||||
|
|
||||||
|
## Linux memory allocator
|
||||||
|
|
||||||
|
The default memory allocator on most glibc-based Linux systems
|
||||||
|
(e.g. Debian, Red Hat) is unsuitable for long-running, multi-threaded
|
||||||
|
processes that involve lots of small memory allocations.
|
||||||
|
|
||||||
|
For this reason, by default, sharp will limit the use of thread-based
|
||||||
|
[concurrency](api-utility#concurrency) when the glibc allocator is
|
||||||
|
detected at runtime.
|
||||||
|
|
||||||
|
To help avoid fragmentation and improve performance on these systems,
|
||||||
|
the use of an alternative memory allocator such as
|
||||||
|
[jemalloc](https://github.com/jemalloc/jemalloc) is recommended.
|
||||||
|
|
||||||
|
Those using musl-based Linux (e.g. Alpine) and non-Linux systems are
|
||||||
|
unaffected.
|
||||||
|
|
||||||
|
## AWS Lambda
|
||||||
|
|
||||||
|
The `node_modules` directory of the
|
||||||
|
[deployment package](https://docs.aws.amazon.com/lambda/latest/dg/nodejs-package.html)
|
||||||
|
must include binaries for the Linux x64 platform.
|
||||||
|
|
||||||
|
When building your deployment package on machines other than Linux x64 (glibc),
|
||||||
|
run the following additional command after `npm install`:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm install
|
||||||
|
rm -rf node_modules/sharp
|
||||||
|
SHARP_IGNORE_GLOBAL_LIBVIPS=1 npm install --arch=x64 --platform=linux --libc=glibc sharp
|
||||||
|
```
|
||||||
|
|
||||||
|
To get the best performance select the largest memory available.
|
||||||
|
A 1536 MB function provides ~12x more CPU time than a 128 MB function.
|
||||||
|
|
||||||
|
When integrating with AWS API Gateway, ensure it is configured with the relevant
|
||||||
|
[binary media types](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-payload-encodings.html).
|
||||||
|
|
||||||
|
## Bundlers
|
||||||
|
|
||||||
|
### webpack
|
||||||
|
|
||||||
|
Ensure sharp is excluded from bundling via the
|
||||||
|
[externals](https://webpack.js.org/configuration/externals/)
|
||||||
|
configuration.
|
||||||
|
|
||||||
|
```js
|
||||||
|
externals: {
|
||||||
|
'sharp': 'commonjs sharp'
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### esbuild
|
||||||
|
|
||||||
|
Ensure sharp is excluded from bundling via the
|
||||||
|
[external](https://esbuild.github.io/api/#external)
|
||||||
|
configuration.
|
||||||
|
|
||||||
|
```js
|
||||||
|
buildSync({
|
||||||
|
entryPoints: ['app.js'],
|
||||||
|
bundle: true,
|
||||||
|
platform: 'node',
|
||||||
|
external: ['sharp'],
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
|
```sh
|
||||||
|
esbuild app.js --bundle --platform=node --external:sharp
|
||||||
|
```
|
||||||
|
|
||||||
|
For `serverless-esbuild`, ensure platform-specific binaries are installed
|
||||||
|
via the `serverless.yml` configuration.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
custom:
|
||||||
|
esbuild:
|
||||||
|
external:
|
||||||
|
- sharp
|
||||||
|
packagerOptions:
|
||||||
|
scripts:
|
||||||
|
- npm install --arch=x64 --platform=linux sharp
|
||||||
|
```
|
||||||
|
|
||||||
|
## TypeScript
|
||||||
|
|
||||||
|
TypeScript definitions are published as part of
|
||||||
|
the `sharp` package from v0.32.0.
|
||||||
|
|
||||||
|
Previously these were available via the `@types/sharp` package,
|
||||||
|
which is now deprecated.
|
||||||
|
|
||||||
|
When using Typescript, please ensure `devDependencies` includes
|
||||||
|
the `@types/node` package.
|
||||||
|
|
||||||
|
## Fonts
|
||||||
|
|
||||||
|
When creating text images or rendering SVG images that contain text elements,
|
||||||
|
`fontconfig` is used to find the relevant fonts.
|
||||||
|
|
||||||
|
On Windows and macOS systems, all system fonts are available for use.
|
||||||
|
|
||||||
|
On macOS systems using Homebrew, you may need to set the
|
||||||
|
`PANGOCAIRO_BACKEND` environment variable to a value of `fontconfig`
|
||||||
|
to ensure it is used for font discovery instead of Core Text.
|
||||||
|
|
||||||
|
On Linux systems, fonts that include the relevant
|
||||||
|
[`fontconfig` configuration](https://www.freedesktop.org/software/fontconfig/fontconfig-user.html)
|
||||||
|
when installed via package manager are available for use.
|
||||||
|
|
||||||
|
If `fontconfig` configuration is not found, the following error will occur:
|
||||||
|
```
|
||||||
|
Fontconfig error: Cannot load default config file
|
||||||
|
```
|
||||||
|
|
||||||
|
In serverless environments where there is no control over font packages,
|
||||||
|
use the `FONTCONFIG_PATH` environment variable to point to a custom location.
|
||||||
|
|
||||||
|
Embedded SVG fonts are unsupported.
|
||||||
|
|
||||||
|
## Worker threads
|
||||||
|
|
||||||
|
On some platforms, including glibc-based Linux,
|
||||||
|
the main thread must call `require('sharp')`
|
||||||
|
_before_ worker threads are created.
|
||||||
|
This is to ensure shared libraries remain loaded in memory
|
||||||
|
until after all threads are complete.
|
||||||
|
|
||||||
|
Without this, the following error may occur:
|
||||||
|
```
|
||||||
|
Module did not self-register
|
||||||
|
```
|
||||||
|
|
||||||
|
## Known conflicts
|
||||||
|
|
||||||
|
### Canvas and Windows
|
||||||
|
|
||||||
|
The prebuilt binaries provided by `canvas` for Windows
|
||||||
|
from v2.7.0 onwards depend on the Visual C++ Runtime (MSVCRT).
|
||||||
|
These conflict with the binaries provided by sharp,
|
||||||
|
which depend on the more modern Universal C Runtime (UCRT).
|
||||||
|
|
||||||
|
See [Automattic/node-canvas#2155](https://github.com/Automattic/node-canvas/issues/2155).
|
||||||
|
|
||||||
|
If both modules are used in the same Windows process, the following error will occur:
|
||||||
|
```
|
||||||
|
The specified procedure could not be found.
|
||||||
|
```
|
@ -1,18 +0,0 @@
|
|||||||
{
|
|
||||||
"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.34.6",
|
|
||||||
"astro": "^5.11.1",
|
|
||||||
"starlight-auto-sidebar": "^0.1.2"
|
|
||||||
}
|
|
||||||
}
|
|
111
docs/performance.md
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
# 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.7 - 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.4.0 - 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.32.0 / libvips v8.14.2 - Caching within libvips disabled to ensure a fair comparison.
|
||||||
|
|
||||||
|
## Environment
|
||||||
|
|
||||||
|
### AMD64
|
||||||
|
|
||||||
|
* AWS EC2 us-east-2 [c6a.xlarge](https://aws.amazon.com/ec2/instance-types/c6a/) (4x AMD EPYC 7R13)
|
||||||
|
* Ubuntu 22.04 20230303 (ami-0122295b0eb922138)
|
||||||
|
* Node.js 16.19.1
|
||||||
|
|
||||||
|
### ARM64
|
||||||
|
|
||||||
|
* AWS EC2 us-east-2 [c7g.xlarge](https://aws.amazon.com/ec2/instance-types/c7g/) (4x ARM Graviton3)
|
||||||
|
* Ubuntu 22.04 20230303 (ami-0af198159897e7a29)
|
||||||
|
* Node.js 16.19.1
|
||||||
|
|
||||||
|
## 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.07 | 1.3 |
|
||||||
|
| squoosh-lib | buffer | buffer | 1.82 | 2.2 |
|
||||||
|
| gm | buffer | buffer | 8.41 | 10.0 |
|
||||||
|
| gm | file | file | 8.45 | 10.0 |
|
||||||
|
| imagemagick | file | file | 8.77 | 10.4 |
|
||||||
|
| sharp | stream | stream | 36.36 | 43.3 |
|
||||||
|
| sharp | file | file | 38.67 | 46.0 |
|
||||||
|
| sharp | buffer | buffer | 39.44 | 47.0 |
|
||||||
|
|
||||||
|
#### Results: JPEG (ARM64)
|
||||||
|
|
||||||
|
| Module | Input | Output | Ops/sec | Speed-up |
|
||||||
|
| :----------------- | :----- | :----- | ------: | -------: |
|
||||||
|
| jimp | buffer | buffer | 1.02 | 1.0 |
|
||||||
|
| squoosh-cli | file | file | 1.11 | 1.1 |
|
||||||
|
| squoosh-lib | buffer | buffer | 2.08 | 2.0 |
|
||||||
|
| gm | buffer | buffer | 8.80 | 8.6 |
|
||||||
|
| gm | file | file | 10.05 | 9.9 |
|
||||||
|
| imagemagick | file | file | 10.28 | 10.1 |
|
||||||
|
| sharp | stream | stream | 26.87 | 26.3 |
|
||||||
|
| sharp | file | file | 27.88 | 27.3 |
|
||||||
|
| sharp | buffer | buffer | 28.40 | 27.8 |
|
||||||
|
|
||||||
|
## 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.40 | 1.0 |
|
||||||
|
| squoosh-lib | buffer | buffer | 0.47 | 1.2 |
|
||||||
|
| gm | file | file | 6.47 | 16.2 |
|
||||||
|
| jimp | buffer | buffer | 6.60 | 16.5 |
|
||||||
|
| imagemagick | file | file | 7.08 | 17.7 |
|
||||||
|
| sharp | file | file | 17.80 | 44.5 |
|
||||||
|
| sharp | buffer | buffer | 18.02 | 45.0 |
|
||||||
|
|
||||||
|
### Results: PNG (ARM64)
|
||||||
|
|
||||||
|
| Module | Input | Output | Ops/sec | Speed-up |
|
||||||
|
| :----------------- | :----- | :----- | ------: | -------: |
|
||||||
|
| squoosh-cli | file | file | 0.40 | 1.0 |
|
||||||
|
| squoosh-lib | buffer | buffer | 0.48 | 1.2 |
|
||||||
|
| gm | file | file | 7.20 | 18.0 |
|
||||||
|
| jimp | buffer | buffer | 7.62 | 19.1 |
|
||||||
|
| imagemagick | file | file | 7.96 | 19.9 |
|
||||||
|
| sharp | file | file | 12.97 | 32.4 |
|
||||||
|
| sharp | buffer | buffer | 13.12 | 32.8 |
|
||||||
|
|
||||||
|
## Running the benchmark test
|
||||||
|
|
||||||
|
Requires Docker.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
git clone https://github.com/lovell/sharp.git
|
||||||
|
cd sharp/test/bench
|
||||||
|
./run-with-docker.sh
|
||||||
|
```
|
@ -1,5 +0,0 @@
|
|||||||
<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>
|
|
Before Width: | Height: | Size: 508 B |
@ -1,4 +0,0 @@
|
|||||||
User-agent: *
|
|
||||||
Disallow:
|
|
||||||
|
|
||||||
Sitemap: https://sharp.pixelplumbing.com/sitemap-index.xml
|
|
2
docs/robots.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
User-agent: *
|
||||||
|
Disallow:
|
1
docs/search-index.json
Normal file
64
docs/search-index/build.js
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
// 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(?<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)
|
||||||
|
);
|
34
docs/search-index/extract.js
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
// 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 };
|
135
docs/search-index/stop-words.js
Normal file
@ -0,0 +1,135 @@
|
|||||||
|
// 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',
|
||||||
|
'does',
|
||||||
|
'each',
|
||||||
|
'either',
|
||||||
|
'ensure',
|
||||||
|
'entirely',
|
||||||
|
'etc',
|
||||||
|
'every',
|
||||||
|
'except',
|
||||||
|
'following',
|
||||||
|
'for',
|
||||||
|
'from',
|
||||||
|
'get',
|
||||||
|
'gets',
|
||||||
|
'given',
|
||||||
|
'has',
|
||||||
|
'have',
|
||||||
|
'how',
|
||||||
|
'image',
|
||||||
|
'implies',
|
||||||
|
'include',
|
||||||
|
'including',
|
||||||
|
'involve',
|
||||||
|
'its',
|
||||||
|
'last',
|
||||||
|
'least',
|
||||||
|
'lots',
|
||||||
|
'make',
|
||||||
|
'may',
|
||||||
|
'more',
|
||||||
|
'most',
|
||||||
|
'much',
|
||||||
|
'must',
|
||||||
|
'non',
|
||||||
|
'not',
|
||||||
|
'now',
|
||||||
|
'occur',
|
||||||
|
'occurs',
|
||||||
|
'one',
|
||||||
|
'options',
|
||||||
|
'other',
|
||||||
|
'out',
|
||||||
|
'over',
|
||||||
|
'part',
|
||||||
|
'perform',
|
||||||
|
'performs',
|
||||||
|
'please',
|
||||||
|
'pre',
|
||||||
|
'previously',
|
||||||
|
'produce',
|
||||||
|
'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',
|
||||||
|
'until',
|
||||||
|
'use',
|
||||||
|
'used',
|
||||||
|
'using',
|
||||||
|
'value',
|
||||||
|
'values',
|
||||||
|
'via',
|
||||||
|
'were',
|
||||||
|
'when',
|
||||||
|
'which',
|
||||||
|
'while',
|
||||||
|
'will',
|
||||||
|
'with',
|
||||||
|
'without',
|
||||||
|
'you',
|
||||||
|
'your'
|
||||||
|
];
|
@ -1,5 +0,0 @@
|
|||||||
<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>
|
|
Before Width: | Height: | Size: 508 B |
@ -1,10 +0,0 @@
|
|||||||
import { defineCollection } from 'astro:content';
|
|
||||||
import { docsLoader } from '@astrojs/starlight/loaders';
|
|
||||||
import { docsSchema } from '@astrojs/starlight/schema';
|
|
||||||
import { autoSidebarLoader } from 'starlight-auto-sidebar/loader'
|
|
||||||
import { autoSidebarSchema } from 'starlight-auto-sidebar/schema'
|
|
||||||
|
|
||||||
export const collections = {
|
|
||||||
docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }),
|
|
||||||
autoSidebar: defineCollection({ loader: autoSidebarLoader(), schema: autoSidebarSchema() })
|
|
||||||
};
|
|
@ -1 +0,0 @@
|
|||||||
sort: reverse-slug
|
|
@ -1,22 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.10.0 - 23rd April 2015
|
|
||||||
slug: changelog/v0.10.0
|
|
||||||
---
|
|
||||||
|
|
||||||
* Add support for Windows (x86).
|
|
||||||
[#19](https://github.com/lovell/sharp/issues/19)
|
|
||||||
[@DullReferenceException](https://github.com/DullReferenceException)
|
|
||||||
[@itsananderson](https://github.com/itsananderson)
|
|
||||||
|
|
||||||
* Add support for Openslide input and DeepZoom output.
|
|
||||||
[#146](https://github.com/lovell/sharp/issues/146)
|
|
||||||
[@mvictoras](https://github.com/mvictoras)
|
|
||||||
|
|
||||||
* Allow arbitrary aspect ratios when resizing images via new `ignoreAspectRatio` method.
|
|
||||||
[#192](https://github.com/lovell/sharp/issues/192)
|
|
||||||
[@skedastik](https://github.com/skedastik)
|
|
||||||
|
|
||||||
* Enhance output image contrast by stretching its luminance to cover the full dynamic range via new `normalize` method.
|
|
||||||
[#194](https://github.com/lovell/sharp/issues/194)
|
|
||||||
[@bkw](https://github.com/bkw)
|
|
||||||
[@codingforce](https://github.com/codingforce)
|
|
@ -1,12 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.10.1 - 1st June 2015
|
|
||||||
slug: changelog/v0.10.1
|
|
||||||
---
|
|
||||||
|
|
||||||
* Allow embed of image with alpha transparency onto non-transparent background.
|
|
||||||
[#204](https://github.com/lovell/sharp/issues/204)
|
|
||||||
[@mikemliu](https://github.com/mikemliu)
|
|
||||||
|
|
||||||
* Include C standard library for `atoi` as Xcode 6.3 appears to no longer do this.
|
|
||||||
[#228](https://github.com/lovell/sharp/issues/228)
|
|
||||||
[@doggan](https://github.com/doggan)
|
|
@ -1,30 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.11.0 - 15th July 2015
|
|
||||||
slug: changelog/v0.11.0
|
|
||||||
---
|
|
||||||
|
|
||||||
* Allow alpha transparency compositing via new `overlayWith` method.
|
|
||||||
[#97](https://github.com/lovell/sharp/issues/97)
|
|
||||||
[@gasi](https://github.com/gasi)
|
|
||||||
|
|
||||||
* Expose raw ICC profile data as a Buffer when using `metadata`.
|
|
||||||
[#129](https://github.com/lovell/sharp/issues/129)
|
|
||||||
[@homerjam](https://github.com/homerjam)
|
|
||||||
|
|
||||||
* Allow image header updates via a parameter passed to existing `withMetadata` method.
|
|
||||||
Provide initial support for EXIF `Orientation` tag,
|
|
||||||
which if present is now removed when using `rotate`, `flip` or `flop`.
|
|
||||||
[#189](https://github.com/lovell/sharp/issues/189)
|
|
||||||
[@h2non](https://github.com/h2non)
|
|
||||||
|
|
||||||
* Tighten constructor parameter checks.
|
|
||||||
[#221](https://github.com/lovell/sharp/issues/221)
|
|
||||||
[@mikemorris](https://github.com/mikemorris)
|
|
||||||
|
|
||||||
* Allow one input Stream to be shared with two or more output Streams via new `clone` method.
|
|
||||||
[#235](https://github.com/lovell/sharp/issues/235)
|
|
||||||
[@jaubourg](https://github.com/jaubourg)
|
|
||||||
|
|
||||||
* Use `round` instead of `floor` when auto-scaling dimensions to avoid floating-point rounding errors.
|
|
||||||
[#238](https://github.com/lovell/sharp/issues/238)
|
|
||||||
[@richardadjogah](https://github.com/richardadjogah)
|
|
@ -1,12 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.11.1 - 12th August 2015
|
|
||||||
slug: changelog/v0.11.1
|
|
||||||
---
|
|
||||||
|
|
||||||
* Silence MSVC warning: "C4530: C++ exception handler used, but unwind semantics are not enabled".
|
|
||||||
[#244](https://github.com/lovell/sharp/pull/244)
|
|
||||||
[@TheThing](https://github.com/TheThing)
|
|
||||||
|
|
||||||
* Suppress gamma correction for input image with alpha transparency.
|
|
||||||
[#249](https://github.com/lovell/sharp/issues/249)
|
|
||||||
[@compeak](https://github.com/compeak)
|
|
@ -1,10 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.11.2 - 28th August 2015
|
|
||||||
slug: changelog/v0.11.2
|
|
||||||
---
|
|
||||||
|
|
||||||
* Allow crop gravity to be provided as a String.
|
|
||||||
[#255](https://github.com/lovell/sharp/pull/255)
|
|
||||||
[@papandreou](https://github.com/papandreou)
|
|
||||||
* Add support for io.js v3 and Node v4.
|
|
||||||
[#246](https://github.com/lovell/sharp/issues/246)
|
|
@ -1,8 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.11.3 - 8th September 2015
|
|
||||||
slug: changelog/v0.11.3
|
|
||||||
---
|
|
||||||
|
|
||||||
* Intrepret blurSigma, sharpenFlat, and sharpenJagged as double precision.
|
|
||||||
[#263](https://github.com/lovell/sharp/pull/263)
|
|
||||||
[@chrisriley](https://github.com/chrisriley)
|
|
@ -1,16 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.11.4 - 5th November 2015
|
|
||||||
slug: changelog/v0.11.4
|
|
||||||
---
|
|
||||||
|
|
||||||
* Add corners, e.g. `northeast`, to existing `gravity` option.
|
|
||||||
[#291](https://github.com/lovell/sharp/pull/291)
|
|
||||||
[@brandonaaron](https://github.com/brandonaaron)
|
|
||||||
|
|
||||||
* Ensure correct auto-rotation for EXIF Orientation values 2 and 4.
|
|
||||||
[#288](https://github.com/lovell/sharp/pull/288)
|
|
||||||
[@brandonaaron](https://github.com/brandonaaron)
|
|
||||||
|
|
||||||
* Make static linking possible via `--runtime_link` install option.
|
|
||||||
[#287](https://github.com/lovell/sharp/pull/287)
|
|
||||||
[@vlapo](https://github.com/vlapo)
|
|
@ -1,38 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.12.0 - 23rd November 2015
|
|
||||||
slug: changelog/v0.12.0
|
|
||||||
---
|
|
||||||
|
|
||||||
* Bundle pre-compiled libvips and its dependencies for 64-bit Linux and Windows.
|
|
||||||
[#42](https://github.com/lovell/sharp/issues/42)
|
|
||||||
|
|
||||||
* Take advantage of libvips v8.1.0+ features.
|
|
||||||
[#152](https://github.com/lovell/sharp/issues/152)
|
|
||||||
|
|
||||||
* Add support for 64-bit Windows. Drop support for 32-bit Windows.
|
|
||||||
[#224](https://github.com/lovell/sharp/issues/224)
|
|
||||||
[@sabrehagen](https://github.com/sabrehagen)
|
|
||||||
|
|
||||||
* Switch default interpolator to bicubic.
|
|
||||||
[#289](https://github.com/lovell/sharp/issues/289)
|
|
||||||
[@mahnunchik](https://github.com/mahnunchik)
|
|
||||||
|
|
||||||
* Pre-extract rotatation should not swap width/height.
|
|
||||||
[#296](https://github.com/lovell/sharp/issues/296)
|
|
||||||
[@asilvas](https://github.com/asilvas)
|
|
||||||
|
|
||||||
* Ensure 16-bit+alpha input images are (un)premultiplied correctly.
|
|
||||||
[#301](https://github.com/lovell/sharp/issues/301)
|
|
||||||
[@izaakschroeder](https://github.com/izaakschroeder)
|
|
||||||
|
|
||||||
* Add `threshold` operation.
|
|
||||||
[#303](https://github.com/lovell/sharp/pull/303)
|
|
||||||
[@dacarley](https://github.com/dacarley)
|
|
||||||
|
|
||||||
* Add `negate` operation.
|
|
||||||
[#306](https://github.com/lovell/sharp/pull/306)
|
|
||||||
[@dacarley](https://github.com/dacarley)
|
|
||||||
|
|
||||||
* Support `options` Object with existing `extract` operation.
|
|
||||||
[#309](https://github.com/lovell/sharp/pull/309)
|
|
||||||
[@papandreou](https://github.com/papandreou)
|
|
@ -1,15 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.12.1 - 12th December 2015
|
|
||||||
slug: changelog/v0.12.1
|
|
||||||
---
|
|
||||||
|
|
||||||
* Allow use of SIMD vector instructions (via liborc) to be toggled on/off.
|
|
||||||
[#172](https://github.com/lovell/sharp/issues/172)
|
|
||||||
[@bkw](https://github.com/bkw)
|
|
||||||
[@puzrin](https://github.com/puzrin)
|
|
||||||
|
|
||||||
* Ensure embedded ICC profiles output with perceptual intent.
|
|
||||||
[#321](https://github.com/lovell/sharp/issues/321)
|
|
||||||
[@vlapo](https://github.com/vlapo)
|
|
||||||
|
|
||||||
* Use the NPM-configured HTTPS proxy, if any, for binary downloads.
|
|
@ -1,20 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.12.2 - 16th January 2016
|
|
||||||
slug: changelog/v0.12.2
|
|
||||||
---
|
|
||||||
|
|
||||||
* Upgrade libvips to v8.2.0 for improved vips_shrink.
|
|
||||||
|
|
||||||
* Add pre-compiled libvips for ARMv6+ CPUs.
|
|
||||||
|
|
||||||
* Ensure 16-bit input images work with embed option.
|
|
||||||
[#325](https://github.com/lovell/sharp/issues/325)
|
|
||||||
[@janaz](https://github.com/janaz)
|
|
||||||
|
|
||||||
* Allow compilation with gmake to provide FreeBSD support.
|
|
||||||
[#326](https://github.com/lovell/sharp/issues/326)
|
|
||||||
[@c0decafe](https://github.com/c0decafe)
|
|
||||||
|
|
||||||
* Attempt to remove temporary file after installation.
|
|
||||||
[#331](https://github.com/lovell/sharp/issues/331)
|
|
||||||
[@dtoubelis](https://github.com/dtoubelis)
|
|
@ -1,47 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.13.0 - 15th February 2016
|
|
||||||
slug: changelog/v0.13.0
|
|
||||||
---
|
|
||||||
|
|
||||||
* Improve vector image support by allowing control of density/DPI.
|
|
||||||
Switch pre-built libs from Imagemagick to Graphicsmagick.
|
|
||||||
[#110](https://github.com/lovell/sharp/issues/110)
|
|
||||||
[@bradisbell](https://github.com/bradisbell)
|
|
||||||
|
|
||||||
* Add support for raw, uncompressed pixel Buffer/Stream input.
|
|
||||||
[#220](https://github.com/lovell/sharp/issues/220)
|
|
||||||
[@mikemorris](https://github.com/mikemorris)
|
|
||||||
|
|
||||||
* Switch from libvips' C to C++ bindings, requires upgrade to v8.2.2.
|
|
||||||
[#299](https://github.com/lovell/sharp/issues/299)
|
|
||||||
|
|
||||||
* Control number of open files in libvips' cache; breaks existing `cache` behaviour.
|
|
||||||
[#315](https://github.com/lovell/sharp/issues/315)
|
|
||||||
[@impomezia](https://github.com/impomezia)
|
|
||||||
|
|
||||||
* Ensure 16-bit input images can be normalised and embedded onto transparent backgrounds.
|
|
||||||
[#339](https://github.com/lovell/sharp/issues/339)
|
|
||||||
[#340](https://github.com/lovell/sharp/issues/340)
|
|
||||||
[@janaz](https://github.com/janaz)
|
|
||||||
|
|
||||||
* Ensure selected format takes precedence over any unknown output filename extension.
|
|
||||||
[#344](https://github.com/lovell/sharp/issues/344)
|
|
||||||
[@ubaltaci](https://github.com/ubaltaci)
|
|
||||||
|
|
||||||
* Add support for libvips' PBM, PGM, PPM and FITS image format loaders.
|
|
||||||
[#347](https://github.com/lovell/sharp/issues/347)
|
|
||||||
[@oaleynik](https://github.com/oaleynik)
|
|
||||||
|
|
||||||
* Ensure default crop gravity is center/centre.
|
|
||||||
[#351](https://github.com/lovell/sharp/pull/351)
|
|
||||||
[@joelmukuthu](https://github.com/joelmukuthu)
|
|
||||||
|
|
||||||
* Improve support for musl libc systems e.g. Alpine Linux.
|
|
||||||
[#354](https://github.com/lovell/sharp/issues/354)
|
|
||||||
[#359](https://github.com/lovell/sharp/pull/359)
|
|
||||||
[@download13](https://github.com/download13)
|
|
||||||
[@wjordan](https://github.com/wjordan)
|
|
||||||
|
|
||||||
* Small optimisation when reducing by an integral factor to favour shrink over affine.
|
|
||||||
|
|
||||||
* Add support for gamma correction of images with an alpha channel.
|
|
@ -1,8 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.13.1 - 27th February 2016
|
|
||||||
slug: changelog/v0.13.1
|
|
||||||
---
|
|
||||||
|
|
||||||
* Fix embedding onto transparent backgrounds; regression introduced in v0.13.0.
|
|
||||||
[#366](https://github.com/lovell/sharp/issues/366)
|
|
||||||
[@diegocsandrim](https://github.com/diegocsandrim)
|
|
@ -1,39 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.14.0 - 2nd April 2016
|
|
||||||
slug: changelog/v0.14.0
|
|
||||||
---
|
|
||||||
|
|
||||||
* Add ability to extend (pad) the edges of an image.
|
|
||||||
[#128](https://github.com/lovell/sharp/issues/128)
|
|
||||||
[@blowsie](https://github.com/blowsie)
|
|
||||||
|
|
||||||
* Add support for Zoomify and Google tile layouts. Breaks existing tile API.
|
|
||||||
[#223](https://github.com/lovell/sharp/issues/223)
|
|
||||||
[@bdunnette](https://github.com/bdunnette)
|
|
||||||
|
|
||||||
* Improvements to overlayWith: differing sizes/formats, gravity, buffer input.
|
|
||||||
[#239](https://github.com/lovell/sharp/issues/239)
|
|
||||||
[@chrisriley](https://github.com/chrisriley)
|
|
||||||
|
|
||||||
* Add entropy-based crop strategy to remove least interesting edges.
|
|
||||||
[#295](https://github.com/lovell/sharp/issues/295)
|
|
||||||
[@rightaway](https://github.com/rightaway)
|
|
||||||
|
|
||||||
* Expose density metadata; set density of images from vector input.
|
|
||||||
[#338](https://github.com/lovell/sharp/issues/338)
|
|
||||||
[@lookfirst](https://github.com/lookfirst)
|
|
||||||
|
|
||||||
* Emit post-processing 'info' event for Stream output.
|
|
||||||
[#367](https://github.com/lovell/sharp/issues/367)
|
|
||||||
[@salzhrani](https://github.com/salzhrani)
|
|
||||||
|
|
||||||
* Ensure output image EXIF Orientation values are within 1-8 range.
|
|
||||||
[#385](https://github.com/lovell/sharp/pull/385)
|
|
||||||
[@jtobinisaniceguy](https://github.com/jtobinisaniceguy)
|
|
||||||
|
|
||||||
* Ensure ratios are not swapped when rotating 90/270 and ignoring aspect.
|
|
||||||
[#387](https://github.com/lovell/sharp/issues/387)
|
|
||||||
[@kleisauke](https://github.com/kleisauke)
|
|
||||||
|
|
||||||
* Remove deprecated style of calling extract API. Breaks calls using positional arguments.
|
|
||||||
[#276](https://github.com/lovell/sharp/issues/276)
|
|
@ -1,26 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.14.1 - 16th April 2016
|
|
||||||
slug: changelog/v0.14.1
|
|
||||||
---
|
|
||||||
|
|
||||||
* Allow removal of limitation on input pixel count via limitInputPixels. Use with care.
|
|
||||||
[#250](https://github.com/lovell/sharp/issues/250)
|
|
||||||
[#316](https://github.com/lovell/sharp/pull/316)
|
|
||||||
[@anandthakker](https://github.com/anandthakker)
|
|
||||||
[@kentongray](https://github.com/kentongray)
|
|
||||||
|
|
||||||
* Use final output image for metadata passed to callback.
|
|
||||||
[#399](https://github.com/lovell/sharp/pull/399)
|
|
||||||
[@salzhrani](https://github.com/salzhrani)
|
|
||||||
|
|
||||||
* Add support for writing tiled images to a zip container.
|
|
||||||
[#402](https://github.com/lovell/sharp/pull/402)
|
|
||||||
[@felixbuenemann](https://github.com/felixbuenemann)
|
|
||||||
|
|
||||||
* Allow use of embed with 1 and 2 channel images.
|
|
||||||
[#411](https://github.com/lovell/sharp/issues/411)
|
|
||||||
[@janaz](https://github.com/janaz)
|
|
||||||
|
|
||||||
* Improve Electron compatibility by allowing node-gyp rebuilds without npm.
|
|
||||||
[#412](https://github.com/lovell/sharp/issues/412)
|
|
||||||
[@nouh](https://github.com/nouh)
|
|
@ -1,20 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.15.0 - 21st May 2016
|
|
||||||
slug: changelog/v0.15.0
|
|
||||||
---
|
|
||||||
|
|
||||||
* Use libvips' new Lanczos 3 kernel as default for image reduction.
|
|
||||||
Deprecate interpolateWith method, now provided as a resize option.
|
|
||||||
[#310](https://github.com/lovell/sharp/issues/310)
|
|
||||||
[@jcupitt](https://github.com/jcupitt)
|
|
||||||
|
|
||||||
* Take advantage of libvips v8.3 features.
|
|
||||||
Add support for libvips' new GIF and SVG loaders.
|
|
||||||
Pre-built binaries now include giflib and librsvg, exclude *magick.
|
|
||||||
Use shrink-on-load for WebP input.
|
|
||||||
Break existing sharpen API to accept sigma and improve precision.
|
|
||||||
[#369](https://github.com/lovell/sharp/issues/369)
|
|
||||||
|
|
||||||
* Remove unnecessary (un)premultiply operations when not resizing/compositing.
|
|
||||||
[#413](https://github.com/lovell/sharp/issues/413)
|
|
||||||
[@jardakotesovec](https://github.com/jardakotesovec)
|
|
@ -1,68 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.15.1 - 12th July 2016
|
|
||||||
slug: changelog/v0.15.1
|
|
||||||
---
|
|
||||||
|
|
||||||
* Concat Stream-based input in single operation for ~+3% perf and less GC.
|
|
||||||
[#429](https://github.com/lovell/sharp/issues/429)
|
|
||||||
[@papandreou](https://github.com/papandreou)
|
|
||||||
|
|
||||||
* Add alpha channel, if required, before extend operation.
|
|
||||||
[#439](https://github.com/lovell/sharp/pull/439)
|
|
||||||
[@frulo](https://github.com/frulo)
|
|
||||||
|
|
||||||
* Allow overlay image to be repeated across entire image via tile option.
|
|
||||||
[#443](https://github.com/lovell/sharp/pull/443)
|
|
||||||
[@lemnisk8](https://github.com/lemnisk8)
|
|
||||||
|
|
||||||
* Add cutout option to overlayWith feature, applies only the alpha channel of the overlay image.
|
|
||||||
[#448](https://github.com/lovell/sharp/pull/448)
|
|
||||||
[@kleisauke](https://github.com/kleisauke)
|
|
||||||
|
|
||||||
* Ensure scaling factors are calculated independently to prevent rounding errors.
|
|
||||||
[#452](https://github.com/lovell/sharp/issues/452)
|
|
||||||
[@puzrin](https://github.com/puzrin)
|
|
||||||
|
|
||||||
* Add --sharp-cxx11 flag to compile with gcc's new C++11 ABI.
|
|
||||||
[#456](https://github.com/lovell/sharp/pull/456)
|
|
||||||
[@kapouer](https://github.com/kapouer)
|
|
||||||
|
|
||||||
* Add top/left offset support to overlayWith operation.
|
|
||||||
[#473](https://github.com/lovell/sharp/pull/473)
|
|
||||||
[@rnanwani](https://github.com/rnanwani)
|
|
||||||
|
|
||||||
* Add convolve operation for kernel-based convolution.
|
|
||||||
[#479](https://github.com/lovell/sharp/pull/479)
|
|
||||||
[@mhirsch](https://github.com/mhirsch)
|
|
||||||
|
|
||||||
* Add greyscale option to threshold operation for colourspace conversion control.
|
|
||||||
[#480](https://github.com/lovell/sharp/pull/480)
|
|
||||||
[@mhirsch](https://github.com/mhirsch)
|
|
||||||
|
|
||||||
* Ensure ICC profiles are licenced for distribution.
|
|
||||||
[#486](https://github.com/lovell/sharp/issues/486)
|
|
||||||
[@kapouer](https://github.com/kapouer)
|
|
||||||
|
|
||||||
* Allow images with an alpha channel to work with LAB-colourspace based sharpen.
|
|
||||||
[#490](https://github.com/lovell/sharp/issues/490)
|
|
||||||
[@jwagner](https://github.com/jwagner)
|
|
||||||
|
|
||||||
* Add trim operation to remove "boring" edges.
|
|
||||||
[#492](https://github.com/lovell/sharp/pull/492)
|
|
||||||
[@kleisauke](https://github.com/kleisauke)
|
|
||||||
|
|
||||||
* Add bandbool feature for channel-wise boolean operations.
|
|
||||||
[#496](https://github.com/lovell/sharp/pull/496)
|
|
||||||
[@mhirsch](https://github.com/mhirsch)
|
|
||||||
|
|
||||||
* Add extractChannel operation to extract a channel from an image.
|
|
||||||
[#497](https://github.com/lovell/sharp/pull/497)
|
|
||||||
[@mhirsch](https://github.com/mhirsch)
|
|
||||||
|
|
||||||
* Add ability to read and write native libvips .v files.
|
|
||||||
[#500](https://github.com/lovell/sharp/pull/500)
|
|
||||||
[@mhirsch](https://github.com/mhirsch)
|
|
||||||
|
|
||||||
* Add boolean feature for bitwise image operations.
|
|
||||||
[#501](https://github.com/lovell/sharp/pull/501)
|
|
||||||
[@mhirsch](https://github.com/mhirsch)
|
|
@ -1,42 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.16.0 - 18th August 2016
|
|
||||||
slug: changelog/v0.16.0
|
|
||||||
---
|
|
||||||
|
|
||||||
* Add pre-compiled libvips for OS X, ARMv7 and ARMv8.
|
|
||||||
[#312](https://github.com/lovell/sharp/issues/312)
|
|
||||||
|
|
||||||
* Ensure boolean, bandbool, extractChannel ops occur before sRGB conversion.
|
|
||||||
[#504](https://github.com/lovell/sharp/pull/504)
|
|
||||||
[@mhirsch](https://github.com/mhirsch)
|
|
||||||
|
|
||||||
* Recalculate factors after WebP shrink-on-load to avoid round-to-zero errors.
|
|
||||||
[#508](https://github.com/lovell/sharp/issues/508)
|
|
||||||
[@asilvas](https://github.com/asilvas)
|
|
||||||
|
|
||||||
* Prevent boolean errors during extract operation.
|
|
||||||
[#511](https://github.com/lovell/sharp/pull/511)
|
|
||||||
[@mhirsch](https://github.com/mhirsch)
|
|
||||||
|
|
||||||
* Add joinChannel and toColourspace/toColorspace operations.
|
|
||||||
[#513](https://github.com/lovell/sharp/pull/513)
|
|
||||||
[@mhirsch](https://github.com/mhirsch)
|
|
||||||
|
|
||||||
* Add support for raw pixel data with boolean and withOverlay operations.
|
|
||||||
[#516](https://github.com/lovell/sharp/pull/516)
|
|
||||||
[@mhirsch](https://github.com/mhirsch)
|
|
||||||
|
|
||||||
* Prevent bandbool creating a single channel sRGB image.
|
|
||||||
[#519](https://github.com/lovell/sharp/pull/519)
|
|
||||||
[@mhirsch](https://github.com/mhirsch)
|
|
||||||
|
|
||||||
* Ensure ICC profiles are removed from PNG output unless withMetadata used.
|
|
||||||
[#521](https://github.com/lovell/sharp/issues/521)
|
|
||||||
[@ChrisPinewood](https://github.com/ChrisPinewood)
|
|
||||||
|
|
||||||
* Add alpha channels, if missing, to overlayWith images.
|
|
||||||
[#540](https://github.com/lovell/sharp/pull/540)
|
|
||||||
[@cmtt](https://github.com/cmtt)
|
|
||||||
|
|
||||||
* Remove deprecated interpolateWith method - use resize(w, h, { interpolator: ... })
|
|
||||||
[#310](https://github.com/lovell/sharp/issues/310)
|
|
@ -1,21 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.16.1 - 13th October 2016
|
|
||||||
slug: changelog/v0.16.1
|
|
||||||
---
|
|
||||||
|
|
||||||
* C++11 ABI version is now auto-detected, remove sharp-cxx11 installation flag.
|
|
||||||
|
|
||||||
* Add experimental 'attention' crop strategy.
|
|
||||||
[#295](https://github.com/lovell/sharp/issues/295)
|
|
||||||
|
|
||||||
* Include .node extension for Meteor's require() implementation.
|
|
||||||
[#537](https://github.com/lovell/sharp/issues/537)
|
|
||||||
[@isjackwild](https://github.com/isjackwild)
|
|
||||||
|
|
||||||
* Ensure convolution kernel scale is clamped to a minimum value of 1.
|
|
||||||
[#561](https://github.com/lovell/sharp/issues/561)
|
|
||||||
[@abagshaw](https://github.com/abagshaw)
|
|
||||||
|
|
||||||
* Correct calculation of y-axis placement when overlaying image at a fixed point.
|
|
||||||
[#566](https://github.com/lovell/sharp/issues/566)
|
|
||||||
[@Nateowami](https://github.com/Nateowami)
|
|
@ -1,8 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.16.2 - 22nd October 2016
|
|
||||||
slug: changelog/v0.16.2
|
|
||||||
---
|
|
||||||
|
|
||||||
* Restrict readelf usage to Linux only when detecting global libvips version.
|
|
||||||
[#602](https://github.com/lovell/sharp/issues/602)
|
|
||||||
[@caoko](https://github.com/caoko)
|
|
@ -1,39 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.17.0 - 11th December 2016
|
|
||||||
slug: changelog/v0.17.0
|
|
||||||
---
|
|
||||||
|
|
||||||
* Drop support for versions of Node prior to v4.
|
|
||||||
|
|
||||||
* Deprecate the following output format "option" functions:
|
|
||||||
quality, progressive, compressionLevel, withoutAdaptiveFiltering,
|
|
||||||
withoutChromaSubsampling, trellisQuantisation, trellisQuantization,
|
|
||||||
overshootDeringing, optimiseScans and optimizeScans.
|
|
||||||
Access to these is now via output format functions, for example `quality(n)`
|
|
||||||
is now `jpeg({quality: n})` and/or `webp({quality: n})`.
|
|
||||||
|
|
||||||
* Autoconvert GIF and SVG input to PNG output if no other format is specified.
|
|
||||||
|
|
||||||
* Expose libvips' "centre" resize option to mimic \*magick's +0.5px convention.
|
|
||||||
[#568](https://github.com/lovell/sharp/issues/568)
|
|
||||||
|
|
||||||
* Ensure support for embedded base64 PNG and JPEG images within an SVG.
|
|
||||||
[#601](https://github.com/lovell/sharp/issues/601)
|
|
||||||
[@dynamite-ready](https://github.com/dynamite-ready)
|
|
||||||
|
|
||||||
* Ensure premultiply operation occurs before box filter shrink.
|
|
||||||
[#605](https://github.com/lovell/sharp/issues/605)
|
|
||||||
[@CmdrShepardsPie](https://github.com/CmdrShepardsPie)
|
|
||||||
[@teroparvinen](https://github.com/teroparvinen)
|
|
||||||
|
|
||||||
* Add support for PNG and WebP tile-based output formats (in addition to JPEG).
|
|
||||||
[#622](https://github.com/lovell/sharp/pull/622)
|
|
||||||
[@ppaskaris](https://github.com/ppaskaris)
|
|
||||||
|
|
||||||
* Allow use of extend with greyscale input.
|
|
||||||
[#623](https://github.com/lovell/sharp/pull/623)
|
|
||||||
[@ppaskaris](https://github.com/ppaskaris)
|
|
||||||
|
|
||||||
* Allow non-RGB input to embed/extend onto background with an alpha channel.
|
|
||||||
[#646](https://github.com/lovell/sharp/issues/646)
|
|
||||||
[@DaGaMs](https://github.com/DaGaMs)
|
|
@ -1,15 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.17.1 - 15th January 2017
|
|
||||||
slug: changelog/v0.17.1
|
|
||||||
---
|
|
||||||
|
|
||||||
* Improve error messages for invalid parameters.
|
|
||||||
[@spikeon](https://github.com/spikeon)
|
|
||||||
[#644](https://github.com/lovell/sharp/pull/644)
|
|
||||||
|
|
||||||
* Simplify expression for finding vips-cpp libdir.
|
|
||||||
[#656](https://github.com/lovell/sharp/pull/656)
|
|
||||||
|
|
||||||
* Allow HTTPS-over-HTTP proxy when downloading pre-compiled dependencies.
|
|
||||||
[@wangzhiwei1888](https://github.com/wangzhiwei1888)
|
|
||||||
[#679](https://github.com/lovell/sharp/issues/679)
|
|
@ -1,12 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.17.2 - 11th February 2017
|
|
||||||
slug: changelog/v0.17.2
|
|
||||||
---
|
|
||||||
|
|
||||||
* Ensure Readable side of Stream can start flowing after Writable side has finished.
|
|
||||||
[#671](https://github.com/lovell/sharp/issues/671)
|
|
||||||
[@danhaller](https://github.com/danhaller)
|
|
||||||
|
|
||||||
* Expose WebP alpha quality, lossless and near-lossless output options.
|
|
||||||
[#685](https://github.com/lovell/sharp/pull/685)
|
|
||||||
[@rnanwani](https://github.com/rnanwani)
|
|
@ -1,20 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.17.3 - 1st April 2017
|
|
||||||
slug: changelog/v0.17.3
|
|
||||||
---
|
|
||||||
|
|
||||||
* Allow toBuffer to optionally resolve a Promise with both info and data.
|
|
||||||
[#143](https://github.com/lovell/sharp/issues/143)
|
|
||||||
[@salzhrani](https://github.com/salzhrani)
|
|
||||||
|
|
||||||
* Create blank image of given width, height, channels and background.
|
|
||||||
[#470](https://github.com/lovell/sharp/issues/470)
|
|
||||||
[@pjarts](https://github.com/pjarts)
|
|
||||||
|
|
||||||
* Add support for the "nearest" kernel for image reductions.
|
|
||||||
[#732](https://github.com/lovell/sharp/pull/732)
|
|
||||||
[@alice0meta](https://github.com/alice0meta)
|
|
||||||
|
|
||||||
* Add support for TIFF compression and predictor options.
|
|
||||||
[#738](https://github.com/lovell/sharp/pull/738)
|
|
||||||
[@kristojorg](https://github.com/kristojorg)
|
|
@ -1,60 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.18.0 - 30th May 2017
|
|
||||||
slug: changelog/v0.18.0
|
|
||||||
---
|
|
||||||
|
|
||||||
* Remove the previously-deprecated output format "option" functions:
|
|
||||||
quality, progressive, compressionLevel, withoutAdaptiveFiltering,
|
|
||||||
withoutChromaSubsampling, trellisQuantisation, trellisQuantization,
|
|
||||||
overshootDeringing, optimiseScans and optimizeScans.
|
|
||||||
|
|
||||||
* Ensure maximum output dimensions are based on the format to be used.
|
|
||||||
[#176](https://github.com/lovell/sharp/issues/176)
|
|
||||||
[@stephanebachelier](https://github.com/stephanebachelier)
|
|
||||||
|
|
||||||
* Avoid costly (un)premultiply when using overlayWith without alpha channel.
|
|
||||||
[#573](https://github.com/lovell/sharp/issues/573)
|
|
||||||
[@strarsis](https://github.com/strarsis)
|
|
||||||
|
|
||||||
* Include pixel depth (e.g. "uchar") when reading metadata.
|
|
||||||
[#577](https://github.com/lovell/sharp/issues/577)
|
|
||||||
[@moedusa](https://github.com/moedusa)
|
|
||||||
|
|
||||||
* Add support for Buffer and Stream-based TIFF output.
|
|
||||||
[#587](https://github.com/lovell/sharp/issues/587)
|
|
||||||
[@strarsis](https://github.com/strarsis)
|
|
||||||
|
|
||||||
* Expose warnings from libvips via NODE_DEBUG=sharp environment variable.
|
|
||||||
[#607](https://github.com/lovell/sharp/issues/607)
|
|
||||||
[@puzrin](https://github.com/puzrin)
|
|
||||||
|
|
||||||
* Switch to the libvips implementation of "attention" and "entropy" crop strategies.
|
|
||||||
[#727](https://github.com/lovell/sharp/issues/727)
|
|
||||||
|
|
||||||
* Improve performance and accuracy of nearest neighbour integral upsampling.
|
|
||||||
[#752](https://github.com/lovell/sharp/issues/752)
|
|
||||||
[@MrIbby](https://github.com/MrIbby)
|
|
||||||
|
|
||||||
* Constructor single argument API: allow plain object, reject null/undefined.
|
|
||||||
[#768](https://github.com/lovell/sharp/issues/768)
|
|
||||||
[@kub1x](https://github.com/kub1x)
|
|
||||||
|
|
||||||
* Ensure ARM64 pre-built binaries use correct C++11 ABI version.
|
|
||||||
[#772](https://github.com/lovell/sharp/issues/772)
|
|
||||||
[@ajiratech2](https://github.com/ajiratech2)
|
|
||||||
|
|
||||||
* Prevent aliasing by using dynamic values for shrink(-on-load).
|
|
||||||
[#781](https://github.com/lovell/sharp/issues/781)
|
|
||||||
[@kleisauke](https://github.com/kleisauke)
|
|
||||||
|
|
||||||
* Expose libvips' "squash" parameter to enable 1-bit TIFF output.
|
|
||||||
[#783](https://github.com/lovell/sharp/pull/783)
|
|
||||||
[@YvesBos](https://github.com/YvesBos)
|
|
||||||
|
|
||||||
* Add support for rotation using any multiple of +/-90 degrees.
|
|
||||||
[#791](https://github.com/lovell/sharp/pull/791)
|
|
||||||
[@ncoden](https://github.com/ncoden)
|
|
||||||
|
|
||||||
* Add "jpg" alias to toFormat as shortened form of "jpeg".
|
|
||||||
[#814](https://github.com/lovell/sharp/pull/814)
|
|
||||||
[@jingsam](https://github.com/jingsam)
|
|
@ -1,8 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.18.1 - 30th May 2017
|
|
||||||
slug: changelog/v0.18.1
|
|
||||||
---
|
|
||||||
|
|
||||||
* Remove regression from #781 that could cause incorrect shrink calculation.
|
|
||||||
[#831](https://github.com/lovell/sharp/issues/831)
|
|
||||||
[@suprMax](https://github.com/suprMax)
|
|
@ -1,19 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.18.2 - 1st July 2017
|
|
||||||
slug: changelog/v0.18.2
|
|
||||||
---
|
|
||||||
|
|
||||||
* Expose libvips' xres and yres properties for TIFF output.
|
|
||||||
[#828](https://github.com/lovell/sharp/pull/828)
|
|
||||||
[@YvesBos](https://github.com/YvesBos)
|
|
||||||
|
|
||||||
* Ensure flip and flop operations work with auto-rotate.
|
|
||||||
[#837](https://github.com/lovell/sharp/issues/837)
|
|
||||||
[@rexxars](https://github.com/rexxars)
|
|
||||||
|
|
||||||
* Allow binary download URL override via SHARP_DIST_BASE_URL env variable.
|
|
||||||
[#841](https://github.com/lovell/sharp/issues/841)
|
|
||||||
|
|
||||||
* Add support for Solus Linux.
|
|
||||||
[#857](https://github.com/lovell/sharp/pull/857)
|
|
||||||
[@ekremkaraca](https://github.com/ekremkaraca)
|
|
@ -1,12 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.18.3 - 13th September 2017
|
|
||||||
slug: changelog/v0.18.3
|
|
||||||
---
|
|
||||||
|
|
||||||
* Skip shrink-on-load when trimming.
|
|
||||||
[#888](https://github.com/lovell/sharp/pull/888)
|
|
||||||
[@kleisauke](https://github.com/kleisauke)
|
|
||||||
|
|
||||||
* Migrate from got to simple-get for basic auth support.
|
|
||||||
[#945](https://github.com/lovell/sharp/pull/945)
|
|
||||||
[@pbomb](https://github.com/pbomb)
|
|
@ -1,8 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.18.4 - 18th September 2017
|
|
||||||
slug: changelog/v0.18.4
|
|
||||||
---
|
|
||||||
|
|
||||||
* Ensure input Buffer really is marked as Persistent, prevents mark-sweep GC.
|
|
||||||
[#950](https://github.com/lovell/sharp/issues/950)
|
|
||||||
[@lfdoherty](https://github.com/lfdoherty)
|
|
@ -1,46 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.19.0 - 11th January 2018
|
|
||||||
slug: changelog/v0.19.0
|
|
||||||
---
|
|
||||||
|
|
||||||
* Expose offset coordinates of strategy-based crop.
|
|
||||||
[#868](https://github.com/lovell/sharp/issues/868)
|
|
||||||
[@mirohristov-com](https://github.com/mirohristov-com)
|
|
||||||
|
|
||||||
* PNG output now defaults to adaptiveFiltering=false, compressionLevel=9
|
|
||||||
[#872](https://github.com/lovell/sharp/issues/872)
|
|
||||||
[@wmertens](https://github.com/wmertens)
|
|
||||||
|
|
||||||
* Add stats feature for pixel-derived image statistics.
|
|
||||||
[#915](https://github.com/lovell/sharp/pull/915)
|
|
||||||
[@rnanwani](https://github.com/rnanwani)
|
|
||||||
|
|
||||||
* Add failOnError option to fail-fast on bad input image data.
|
|
||||||
[#976](https://github.com/lovell/sharp/pull/976)
|
|
||||||
[@mceachen](https://github.com/mceachen)
|
|
||||||
|
|
||||||
* Resize: switch to libvips' implementation, make fastShrinkOnLoad optional, remove interpolator and centreSampling options.
|
|
||||||
[#977](https://github.com/lovell/sharp/pull/977)
|
|
||||||
[@jardakotesovec](https://github.com/jardakotesovec)
|
|
||||||
|
|
||||||
* Attach finish event listener to a clone only for Stream-based input.
|
|
||||||
[#995](https://github.com/lovell/sharp/issues/995)
|
|
||||||
[@whmountains](https://github.com/whmountains)
|
|
||||||
|
|
||||||
* Add tilecache before smartcrop to avoid over-computation of previous operations.
|
|
||||||
[#1028](https://github.com/lovell/sharp/issues/1028)
|
|
||||||
[@coffeebite](https://github.com/coffeebite)
|
|
||||||
|
|
||||||
* Prevent toFile extension taking precedence over requested format.
|
|
||||||
[#1037](https://github.com/lovell/sharp/issues/1037)
|
|
||||||
[@tomgallagher](https://github.com/tomgallagher)
|
|
||||||
|
|
||||||
* Add support for gravity option to existing embed feature.
|
|
||||||
[#1038](https://github.com/lovell/sharp/pull/1038)
|
|
||||||
[@AzureByte](https://github.com/AzureByte)
|
|
||||||
|
|
||||||
* Expose IPTC and XMP metadata when available.
|
|
||||||
[#1079](https://github.com/lovell/sharp/pull/1079)
|
|
||||||
[@oaleynik](https://github.com/oaleynik)
|
|
||||||
|
|
||||||
* TIFF output: switch default predictor from 'none' to 'horizontal' to match libvips' behaviour.
|
|
@ -1,16 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.19.1 - 24th February 2018
|
|
||||||
slug: changelog/v0.19.1
|
|
||||||
---
|
|
||||||
|
|
||||||
* Expose libvips' linear transform feature.
|
|
||||||
[#1024](https://github.com/lovell/sharp/pull/1024)
|
|
||||||
[@3epnm](https://github.com/3epnm)
|
|
||||||
|
|
||||||
* Expose angle option for tile-based output.
|
|
||||||
[#1121](https://github.com/lovell/sharp/pull/1121)
|
|
||||||
[@BiancoA](https://github.com/BiancoA)
|
|
||||||
|
|
||||||
* Prevent crop operation when image already at or below target dimensions.
|
|
||||||
[#1134](https://github.com/lovell/sharp/issues/1134)
|
|
||||||
[@pieh](https://github.com/pieh)
|
|
@ -1,7 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.20.0 - 5th March 2018
|
|
||||||
slug: changelog/v0.20.0
|
|
||||||
---
|
|
||||||
|
|
||||||
* Add support for prebuilt sharp binaries on common platforms.
|
|
||||||
[#186](https://github.com/lovell/sharp/issues/186)
|
|
@ -1,15 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.20.1 - 17th March 2018
|
|
||||||
slug: changelog/v0.20.1
|
|
||||||
---
|
|
||||||
|
|
||||||
* Improve installation experience when a globally-installed libvips below the minimum required version is found.
|
|
||||||
[#1148](https://github.com/lovell/sharp/issues/1148)
|
|
||||||
|
|
||||||
* Prevent smartcrop error when cumulative rounding is below target size.
|
|
||||||
[#1154](https://github.com/lovell/sharp/issues/1154)
|
|
||||||
[@ralrom](https://github.com/ralrom)
|
|
||||||
|
|
||||||
* Expose libvips' median filter operation.
|
|
||||||
[#1161](https://github.com/lovell/sharp/pull/1161)
|
|
||||||
[@BiancoA](https://github.com/BiancoA)
|
|
@ -1,20 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.20.2 - 28th April 2018
|
|
||||||
slug: changelog/v0.20.2
|
|
||||||
---
|
|
||||||
|
|
||||||
* Add tint operation to set image chroma.
|
|
||||||
[#825](https://github.com/lovell/sharp/pull/825)
|
|
||||||
[@rikh42](https://github.com/rikh42)
|
|
||||||
|
|
||||||
* Add environment variable to ignore globally-installed libvips.
|
|
||||||
[#1165](https://github.com/lovell/sharp/pull/1165)
|
|
||||||
[@oncletom](https://github.com/oncletom)
|
|
||||||
|
|
||||||
* Add support for page selection with multi-page input (GIF/TIFF).
|
|
||||||
[#1204](https://github.com/lovell/sharp/pull/1204)
|
|
||||||
[@woolite64](https://github.com/woolite64)
|
|
||||||
|
|
||||||
* Add support for Group4 (CCITTFAX4) compression with TIFF output.
|
|
||||||
[#1208](https://github.com/lovell/sharp/pull/1208)
|
|
||||||
[@woolite64](https://github.com/woolite64)
|
|
@ -1,8 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.20.3 - 29th May 2018
|
|
||||||
slug: changelog/v0.20.3
|
|
||||||
---
|
|
||||||
|
|
||||||
* Fix tint operation by ensuring LAB interpretation and allowing negative values.
|
|
||||||
[#1235](https://github.com/lovell/sharp/issues/1235)
|
|
||||||
[@wezside](https://github.com/wezside)
|
|
@ -1,12 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.20.4 - 20th June 2018
|
|
||||||
slug: changelog/v0.20.4
|
|
||||||
---
|
|
||||||
|
|
||||||
* Prevent possible rounding error when using shrink-on-load and 90/270 degree rotation.
|
|
||||||
[#1241](https://github.com/lovell/sharp/issues/1241)
|
|
||||||
[@anahit42](https://github.com/anahit42)
|
|
||||||
|
|
||||||
* Ensure extractChannel sets correct single-channel colour space interpretation.
|
|
||||||
[#1257](https://github.com/lovell/sharp/issues/1257)
|
|
||||||
[@jeremychone](https://github.com/jeremychone)
|
|
@ -1,8 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.20.5 - 27th June 2018
|
|
||||||
slug: changelog/v0.20.5
|
|
||||||
---
|
|
||||||
|
|
||||||
* Expose libjpeg optimize_coding flag.
|
|
||||||
[#1265](https://github.com/lovell/sharp/pull/1265)
|
|
||||||
[@tomlokhorst](https://github.com/tomlokhorst)
|
|
@ -1,33 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.20.6 - 20th August 2018
|
|
||||||
slug: changelog/v0.20.6
|
|
||||||
---
|
|
||||||
|
|
||||||
* Add removeAlpha operation to remove alpha channel, if any.
|
|
||||||
[#1248](https://github.com/lovell/sharp/issues/1248)
|
|
||||||
|
|
||||||
* Expose mozjpeg quant_table flag.
|
|
||||||
[#1285](https://github.com/lovell/sharp/pull/1285)
|
|
||||||
[@rexxars](https://github.com/rexxars)
|
|
||||||
|
|
||||||
* Allow full WebP alphaQuality range of 0-100.
|
|
||||||
[#1290](https://github.com/lovell/sharp/pull/1290)
|
|
||||||
[@sylvaindumont](https://github.com/sylvaindumont)
|
|
||||||
|
|
||||||
* Cache libvips binaries to reduce re-install time.
|
|
||||||
[#1301](https://github.com/lovell/sharp/issues/1301)
|
|
||||||
|
|
||||||
* Ensure vendor platform mismatch throws error at install time.
|
|
||||||
[#1303](https://github.com/lovell/sharp/issues/1303)
|
|
||||||
|
|
||||||
* Improve install time error messages for FreeBSD users.
|
|
||||||
[#1310](https://github.com/lovell/sharp/issues/1310)
|
|
||||||
|
|
||||||
* Ensure extractChannel works with 16-bit images.
|
|
||||||
[#1330](https://github.com/lovell/sharp/issues/1330)
|
|
||||||
|
|
||||||
* Expose depth option for tile-based output.
|
|
||||||
[#1342](https://github.com/lovell/sharp/pull/1342)
|
|
||||||
[@alundavies](https://github.com/alundavies)
|
|
||||||
|
|
||||||
* Add experimental entropy field to stats response.
|
|
@ -1,7 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.20.7 - 21st August 2018
|
|
||||||
slug: changelog/v0.20.7
|
|
||||||
---
|
|
||||||
|
|
||||||
* Use copy+unlink if rename operation fails during installation.
|
|
||||||
[#1345](https://github.com/lovell/sharp/issues/1345)
|
|
@ -1,12 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.20.8 - 5th September 2018
|
|
||||||
slug: changelog/v0.20.8
|
|
||||||
---
|
|
||||||
|
|
||||||
* Avoid race conditions when creating directories during installation.
|
|
||||||
[#1358](https://github.com/lovell/sharp/pull/1358)
|
|
||||||
[@ajhool](https://github.com/ajhool)
|
|
||||||
|
|
||||||
* Accept floating point values for input density parameter.
|
|
||||||
[#1362](https://github.com/lovell/sharp/pull/1362)
|
|
||||||
[@aeirola](https://github.com/aeirola)
|
|
@ -1,39 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.21.0 - 4th October 2018
|
|
||||||
slug: changelog/v0.21.0
|
|
||||||
---
|
|
||||||
|
|
||||||
* Deprecate the following resize-related functions:
|
|
||||||
`crop`, `embed`, `ignoreAspectRatio`, `max`, `min` and `withoutEnlargement`.
|
|
||||||
Access to these is now via options passed to the `resize` function.
|
|
||||||
For example:
|
|
||||||
`embed('north')` is now `resize(width, height, { fit: 'contain', position: 'north' })`,
|
|
||||||
`crop('attention')` is now `resize(width, height, { fit: 'cover', position: 'attention' })`,
|
|
||||||
`max().withoutEnlargement()` is now `resize(width, height, { fit: 'inside', withoutEnlargement: true })`.
|
|
||||||
[#1135](https://github.com/lovell/sharp/issues/1135)
|
|
||||||
|
|
||||||
* Deprecate the `background` function.
|
|
||||||
Per-operation `background` options added to `resize`, `extend` and `flatten` operations.
|
|
||||||
[#1392](https://github.com/lovell/sharp/issues/1392)
|
|
||||||
|
|
||||||
* Add `size` to `metadata` response (Stream and Buffer input only).
|
|
||||||
[#695](https://github.com/lovell/sharp/issues/695)
|
|
||||||
|
|
||||||
* Switch from custom trim operation to `vips_find_trim`.
|
|
||||||
[#914](https://github.com/lovell/sharp/issues/914)
|
|
||||||
|
|
||||||
* Add `chromaSubsampling` and `isProgressive` properties to `metadata` response.
|
|
||||||
[#1186](https://github.com/lovell/sharp/issues/1186)
|
|
||||||
|
|
||||||
* Drop Node 4 support.
|
|
||||||
[#1212](https://github.com/lovell/sharp/issues/1212)
|
|
||||||
|
|
||||||
* Enable SIMD convolution by default.
|
|
||||||
[#1213](https://github.com/lovell/sharp/issues/1213)
|
|
||||||
|
|
||||||
* Add experimental prebuilt binaries for musl-based Linux.
|
|
||||||
[#1379](https://github.com/lovell/sharp/issues/1379)
|
|
||||||
|
|
||||||
* Add support for arbitrary rotation angle via vips_rotate.
|
|
||||||
[#1385](https://github.com/lovell/sharp/pull/1385)
|
|
||||||
[@freezy](https://github.com/freezy)
|
|
@ -1,31 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.21.1 - 7th December 2018
|
|
||||||
slug: changelog/v0.21.1
|
|
||||||
---
|
|
||||||
|
|
||||||
* Install: support `sharp_dist_base_url` npm config, like existing `SHARP_DIST_BASE_URL`.
|
|
||||||
[#1422](https://github.com/lovell/sharp/pull/1422)
|
|
||||||
[@SethWen](https://github.com/SethWen)
|
|
||||||
|
|
||||||
* Ensure `channel` metadata is correct for raw, greyscale output.
|
|
||||||
[#1425](https://github.com/lovell/sharp/issues/1425)
|
|
||||||
|
|
||||||
* Add support for the "mitchell" kernel for image reductions.
|
|
||||||
[#1438](https://github.com/lovell/sharp/pull/1438)
|
|
||||||
[@Daiz](https://github.com/Daiz)
|
|
||||||
|
|
||||||
* Allow separate parameters for gamma encoding and decoding.
|
|
||||||
[#1439](https://github.com/lovell/sharp/pull/1439)
|
|
||||||
[@Daiz](https://github.com/Daiz)
|
|
||||||
|
|
||||||
* Build prototype with `Object.assign` to allow minification.
|
|
||||||
[#1475](https://github.com/lovell/sharp/pull/1475)
|
|
||||||
[@jaubourg](https://github.com/jaubourg)
|
|
||||||
|
|
||||||
* Expose libvips' recombination matrix operation.
|
|
||||||
[#1477](https://github.com/lovell/sharp/pull/1477)
|
|
||||||
[@fromkeith](https://github.com/fromkeith)
|
|
||||||
|
|
||||||
* Expose libvips' pyramid/tile options for TIFF output.
|
|
||||||
[#1483](https://github.com/lovell/sharp/pull/1483)
|
|
||||||
[@mbklein](https://github.com/mbklein)
|
|
@ -1,27 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.21.2 - 13th January 2019
|
|
||||||
slug: changelog/v0.21.2
|
|
||||||
---
|
|
||||||
|
|
||||||
* Ensure all metadata is removed from PNG output unless `withMetadata` used.
|
|
||||||
|
|
||||||
* Ensure shortest edge is at least one pixel after resizing.
|
|
||||||
[#1003](https://github.com/lovell/sharp/issues/1003)
|
|
||||||
|
|
||||||
* Add `ensureAlpha` operation to add an alpha channel, if missing.
|
|
||||||
[#1153](https://github.com/lovell/sharp/issues/1153)
|
|
||||||
|
|
||||||
* Expose `pages` and `pageHeight` metadata for multi-page input images.
|
|
||||||
[#1205](https://github.com/lovell/sharp/issues/1205)
|
|
||||||
|
|
||||||
* Expose PNG output options requiring libimagequant.
|
|
||||||
[#1484](https://github.com/lovell/sharp/issues/1484)
|
|
||||||
|
|
||||||
* Expose underlying error message for invalid input.
|
|
||||||
[#1505](https://github.com/lovell/sharp/issues/1505)
|
|
||||||
|
|
||||||
* Prevent mutatation of options passed to `jpeg`.
|
|
||||||
[#1516](https://github.com/lovell/sharp/issues/1516)
|
|
||||||
|
|
||||||
* Ensure forced output format applied correctly when output chaining.
|
|
||||||
[#1528](https://github.com/lovell/sharp/issues/1528)
|
|
@ -1,9 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.21.3 - 19th January 2019
|
|
||||||
slug: changelog/v0.21.3
|
|
||||||
---
|
|
||||||
|
|
||||||
* Input image decoding now fails fast, set `failOnError` to change this behaviour.
|
|
||||||
|
|
||||||
* Failed filesystem-based input now separates missing file and invalid format errors.
|
|
||||||
[#1542](https://github.com/lovell/sharp/issues/1542)
|
|
@ -1,20 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.22.0 - 18th March 2019
|
|
||||||
slug: changelog/v0.22.0
|
|
||||||
---
|
|
||||||
|
|
||||||
* Remove functions previously deprecated in v0.21.0:
|
|
||||||
`background`, `crop`, `embed`, `ignoreAspectRatio`, `max`, `min` and `withoutEnlargement`.
|
|
||||||
|
|
||||||
* Add `composite` operation supporting multiple images and blend modes; deprecate `overlayWith`.
|
|
||||||
[#728](https://github.com/lovell/sharp/issues/728)
|
|
||||||
|
|
||||||
* Add support for `pages` input option for multi-page input.
|
|
||||||
[#1566](https://github.com/lovell/sharp/issues/1566)
|
|
||||||
|
|
||||||
* Allow Stream-based input of raw pixel data.
|
|
||||||
[#1579](https://github.com/lovell/sharp/issues/1579)
|
|
||||||
|
|
||||||
* Add support for `page` input option to GIF and PDF.
|
|
||||||
[#1595](https://github.com/lovell/sharp/pull/1595)
|
|
||||||
[@ramiel](https://github.com/ramiel)
|
|
@ -1,15 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.22.1 - 25th April 2019
|
|
||||||
slug: changelog/v0.22.1
|
|
||||||
---
|
|
||||||
|
|
||||||
* Add `modulate` operation for brightness, saturation and hue.
|
|
||||||
[#1601](https://github.com/lovell/sharp/pull/1601)
|
|
||||||
[@Goues](https://github.com/Goues)
|
|
||||||
|
|
||||||
* Improve help messaging should `require("sharp")` fail.
|
|
||||||
[#1638](https://github.com/lovell/sharp/pull/1638)
|
|
||||||
[@sidharthachatterjee](https://github.com/sidharthachatterjee)
|
|
||||||
|
|
||||||
* Add support for Node 12.
|
|
||||||
[#1668](https://github.com/lovell/sharp/issues/1668)
|
|
@ -1,32 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.23.0 - 29th July 2019
|
|
||||||
slug: changelog/v0.23.0
|
|
||||||
---
|
|
||||||
|
|
||||||
* Remove `overlayWith` previously deprecated in v0.22.0.
|
|
||||||
|
|
||||||
* Add experimental support for HEIF images. Requires libvips compiled with libheif.
|
|
||||||
[#1105](https://github.com/lovell/sharp/issues/1105)
|
|
||||||
|
|
||||||
* Expose libwebp `smartSubsample` and `reductionEffort` options.
|
|
||||||
[#1545](https://github.com/lovell/sharp/issues/1545)
|
|
||||||
|
|
||||||
* Add experimental support for Worker Threads.
|
|
||||||
[#1558](https://github.com/lovell/sharp/issues/1558)
|
|
||||||
|
|
||||||
* Use libvips' built-in CMYK and sRGB profiles when required.
|
|
||||||
[#1619](https://github.com/lovell/sharp/issues/1619)
|
|
||||||
|
|
||||||
* Drop support for Node.js versions 6 and 11.
|
|
||||||
[#1674](https://github.com/lovell/sharp/issues/1674)
|
|
||||||
|
|
||||||
* Expose `skipBlanks` option for tile-based output.
|
|
||||||
[#1687](https://github.com/lovell/sharp/pull/1687)
|
|
||||||
[@RaboliotTheGrey](https://github.com/RaboliotTheGrey)
|
|
||||||
|
|
||||||
* Allow use of `failOnError` option with Stream-based input.
|
|
||||||
[#1691](https://github.com/lovell/sharp/issues/1691)
|
|
||||||
|
|
||||||
* Fix rotate/extract ordering for non-90 angles.
|
|
||||||
[#1755](https://github.com/lovell/sharp/pull/1755)
|
|
||||||
[@iovdin](https://github.com/iovdin)
|
|
@ -1,24 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.23.1 - 26th September 2019
|
|
||||||
slug: changelog/v0.23.1
|
|
||||||
---
|
|
||||||
|
|
||||||
* Ensure `sharp.format.vips` is present and correct (filesystem only).
|
|
||||||
[#1813](https://github.com/lovell/sharp/issues/1813)
|
|
||||||
|
|
||||||
* Ensure invalid `width` and `height` provided as options to `resize` throw.
|
|
||||||
[#1817](https://github.com/lovell/sharp/issues/1817)
|
|
||||||
|
|
||||||
* Allow use of 'heic' and 'heif' identifiers with `toFormat`.
|
|
||||||
[#1834](https://github.com/lovell/sharp/pull/1834)
|
|
||||||
[@jaubourg](https://github.com/jaubourg)
|
|
||||||
|
|
||||||
* Add `premultiplied` option to `composite` operation.
|
|
||||||
[#1835](https://github.com/lovell/sharp/pull/1835)
|
|
||||||
[@Andargor](https://github.com/Andargor)
|
|
||||||
|
|
||||||
* Allow instance reuse with differing `toBuffer` options.
|
|
||||||
[#1860](https://github.com/lovell/sharp/pull/1860)
|
|
||||||
[@RaboliotTheGrey](https://github.com/RaboliotTheGrey)
|
|
||||||
|
|
||||||
* Ensure image is at least 3x3 pixels before attempting trim operation.
|
|
@ -1,12 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.23.2 - 28th October 2019
|
|
||||||
slug: changelog/v0.23.2
|
|
||||||
---
|
|
||||||
|
|
||||||
* Add `background` option to tile output operation.
|
|
||||||
[#1924](https://github.com/lovell/sharp/pull/1924)
|
|
||||||
[@neave](https://github.com/neave)
|
|
||||||
|
|
||||||
* Add support for Node.js 13.
|
|
||||||
[#1932](https://github.com/lovell/sharp/pull/1932)
|
|
||||||
[@MayhemYDG](https://github.com/MayhemYDG)
|
|
@ -1,18 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.23.3 - 17th November 2019
|
|
||||||
slug: changelog/v0.23.3
|
|
||||||
---
|
|
||||||
|
|
||||||
* Ensure `trim` operation supports images contained in the alpha channel.
|
|
||||||
[#1597](https://github.com/lovell/sharp/issues/1597)
|
|
||||||
|
|
||||||
* Ensure tile `overlap` option works as expected.
|
|
||||||
[#1921](https://github.com/lovell/sharp/pull/1921)
|
|
||||||
[@rustyguts](https://github.com/rustyguts)
|
|
||||||
|
|
||||||
* Allow compilation on FreeBSD and variants (broken since v0.23.0)
|
|
||||||
[#1952](https://github.com/lovell/sharp/pull/1952)
|
|
||||||
[@pouya-eghbali](https://github.com/pouya-eghbali)
|
|
||||||
|
|
||||||
* Ensure `modulate` and other colour-based operations can co-exist.
|
|
||||||
[#1958](https://github.com/lovell/sharp/issues/1958)
|
|
@ -1,12 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.23.4 - 5th December 2019
|
|
||||||
slug: changelog/v0.23.4
|
|
||||||
---
|
|
||||||
|
|
||||||
* Handle zero-length Buffer objects when using Node.js v13.2.0+.
|
|
||||||
|
|
||||||
* Expose raw TIFFTAG_PHOTOSHOP metadata.
|
|
||||||
[#1600](https://github.com/lovell/sharp/issues/1600)
|
|
||||||
|
|
||||||
* Improve thread safety by using copy-on-write when updating metadata.
|
|
||||||
[#1986](https://github.com/lovell/sharp/issues/1986)
|
|
@ -1,28 +0,0 @@
|
|||||||
---
|
|
||||||
title: v0.24.0 - 16th January 2020
|
|
||||||
slug: changelog/v0.24.0
|
|
||||||
---
|
|
||||||
|
|
||||||
* Drop support for Node.js 8.
|
|
||||||
[#1910](https://github.com/lovell/sharp/issues/1910)
|
|
||||||
|
|
||||||
* Drop support for undefined input where options also provided.
|
|
||||||
[#1768](https://github.com/lovell/sharp/issues/1768)
|
|
||||||
|
|
||||||
* Move `limitInputPixels` and `sequentialRead` to input options, deprecating functions of the same name.
|
|
||||||
|
|
||||||
* Expose `delay` and `loop` metadata for animated images.
|
|
||||||
[#1905](https://github.com/lovell/sharp/issues/1905)
|
|
||||||
|
|
||||||
* Ensure correct colour output for 16-bit, 2-channel PNG input with ICC profile.
|
|
||||||
[#2013](https://github.com/lovell/sharp/issues/2013)
|
|
||||||
|
|
||||||
* Prevent use of sequentialRead for rotate operations.
|
|
||||||
[#2016](https://github.com/lovell/sharp/issues/2016)
|
|
||||||
|
|
||||||
* Correctly bind max width and height values when using withoutEnlargement.
|
|
||||||
[#2024](https://github.com/lovell/sharp/pull/2024)
|
|
||||||
[@BrychanOdlum](https://github.com/BrychanOdlum)
|
|
||||||
|
|
||||||
* Add support for input with 16-bit RGB profile.
|
|
||||||
[#2037](https://github.com/lovell/sharp/issues/2037)
|
|