mirror of
https://github.com/lovell/sharp.git
synced 2025-07-09 18:40:16 +02:00
Update changelog ahead of v0.12.0
Highlight features in readme+docs Add link to Docker-based Linux CI build status
This commit is contained in:
parent
8a3098604c
commit
37e4b9b5ba
14
README.md
14
README.md
@ -7,6 +7,12 @@ smaller, web-friendly JPEG, PNG and WebP images of varying dimensions.
|
|||||||
Resizing an image is typically 4x faster than using the
|
Resizing an image is typically 4x faster than using the
|
||||||
quickest ImageMagick and GraphicsMagick settings.
|
quickest ImageMagick and GraphicsMagick settings.
|
||||||
|
|
||||||
|
Colour spaces, embedded ICC profiles and alpha transparency channels are all handled correctly.
|
||||||
|
Bicubic interpolation with Lanczos anti-alias filtering ensures quality is not sacrificed for speed.
|
||||||
|
|
||||||
|
As well as image resizing, operations such as
|
||||||
|
rotation, extraction, compositing and gamma correction are available.
|
||||||
|
|
||||||
64-bit Windows and recent Linux systems do not require
|
64-bit Windows and recent Linux systems do not require
|
||||||
the installation of any external runtime dependencies.
|
the installation of any external runtime dependencies.
|
||||||
|
|
||||||
@ -17,9 +23,11 @@ to install the libvips dependency.
|
|||||||
|
|
||||||
### Documentation
|
### Documentation
|
||||||
|
|
||||||
Visit [sharp.dimens.io](http://sharp.dimens.io/) for
|
Visit [sharp.dimens.io](http://sharp.dimens.io/) for complete
|
||||||
complete installation instructions, API documentation,
|
[installation instructions](http://sharp.dimens.io/page/install),
|
||||||
benchmark tests and a changelog.
|
[API documentation](http://sharp.dimens.io/page/api),
|
||||||
|
[benchmark tests](http://sharp.dimens.io/page/performance) and
|
||||||
|
[changelog](http://sharp.dimens.io/page/changelog).
|
||||||
|
|
||||||
### Contributing
|
### Contributing
|
||||||
|
|
||||||
|
@ -10,10 +10,34 @@
|
|||||||
* Take advantage of libvips v8.1.0+ features.
|
* Take advantage of libvips v8.1.0+ features.
|
||||||
[#152](https://github.com/lovell/sharp/issues/152)
|
[#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.
|
* Pre-extract rotatation should not swap width/height.
|
||||||
[#296](https://github.com/lovell/sharp/issues/296)
|
[#296](https://github.com/lovell/sharp/issues/296)
|
||||||
[@asilvas](https://github.com/asilvas)
|
[@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)
|
||||||
|
|
||||||
### v0.11 - "*knife*"
|
### v0.11 - "*knife*"
|
||||||
|
|
||||||
#### v0.11.4 - 5<sup>th</sup> November 2015
|
#### v0.11.4 - 5<sup>th</sup> November 2015
|
||||||
|
@ -7,6 +7,18 @@ smaller, web-friendly JPEG, PNG and WebP images of varying dimensions.
|
|||||||
Resizing an image is typically 4x faster than using
|
Resizing an image is typically 4x faster than using
|
||||||
the quickest ImageMagick and GraphicsMagick settings.
|
the quickest ImageMagick and GraphicsMagick settings.
|
||||||
|
|
||||||
|
Colour spaces, embedded ICC profiles and alpha transparency channels are all handled correctly.
|
||||||
|
Bicubic interpolation with Lanczos anti-alias filtering ensures quality is not sacrificed for speed.
|
||||||
|
|
||||||
|
As well as image resizing, operations such as
|
||||||
|
rotation, extraction, compositing and gamma correction are available.
|
||||||
|
|
||||||
|
64-bit Windows and recent Linux systems do not require
|
||||||
|
the installation of any external runtime dependencies.
|
||||||
|
|
||||||
|
Use with OS X is as simple as running `brew install homebrew/science/vips`
|
||||||
|
to install the libvips dependency.
|
||||||
|
|
||||||
[](https://coveralls.io/r/lovell/sharp?branch=master)
|
[](https://coveralls.io/r/lovell/sharp?branch=master)
|
||||||
|
|
||||||
### Formats
|
### Formats
|
||||||
@ -25,14 +37,6 @@ suitable for use with "slippy map" tile viewers like
|
|||||||
[OpenSeadragon](https://github.com/openseadragon/openseadragon)
|
[OpenSeadragon](https://github.com/openseadragon/openseadragon)
|
||||||
and [Leaflet](https://github.com/turban/Leaflet.Zoomify).
|
and [Leaflet](https://github.com/turban/Leaflet.Zoomify).
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
As well as image resizing, operations such as
|
|
||||||
rotation, extraction, compositing and gamma correction are available.
|
|
||||||
|
|
||||||
Colour spaces, embedded ICC profiles and alpha transparency channels
|
|
||||||
are all handled correctly.
|
|
||||||
|
|
||||||
### Fast
|
### Fast
|
||||||
|
|
||||||
This module is powered by the blazingly fast
|
This module is powered by the blazingly fast
|
||||||
@ -84,6 +88,7 @@ the help and code contributions of the following people:
|
|||||||
* [Victor Mateevitsi](https://github.com/mvictoras)
|
* [Victor Mateevitsi](https://github.com/mvictoras)
|
||||||
* [Alaric Holloway](https://github.com/skedastik)
|
* [Alaric Holloway](https://github.com/skedastik)
|
||||||
* [Bernhard K. Weisshuhn](https://github.com/bkw)
|
* [Bernhard K. Weisshuhn](https://github.com/bkw)
|
||||||
|
* [David A. Carley](https://github.com/dacarley)
|
||||||
|
|
||||||
Thank you!
|
Thank you!
|
||||||
|
|
||||||
|
@ -12,6 +12,7 @@ npm install sharp
|
|||||||
### Linux
|
### Linux
|
||||||
|
|
||||||
[](https://travis-ci.org/lovell/sharp)
|
[](https://travis-ci.org/lovell/sharp)
|
||||||
|
[](https://circleci.com/gh/lovell/sharp)
|
||||||
|
|
||||||
libvips and its dependencies are fetched and stored within `node_modules/sharp` during `npm install`.
|
libvips and its dependencies are fetched and stored within `node_modules/sharp` during `npm install`.
|
||||||
This involves an automated HTTPS download of approximately 6MB.
|
This involves an automated HTTPS download of approximately 6MB.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user