Skip to content

Commit cda700e

Browse files
committed
Update libmagick references to the C library
1 parent d32901d commit cda700e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
The typical use case for this high speed Node.js module is to convert large images of many formats to smaller, web-friendly JPEG, PNG and WebP images of varying dimensions.
1313

1414
This module supports reading and writing JPEG, PNG and WebP images to and from Streams, Buffer objects and the filesystem.
15-
It also supports reading images of many other types from the filesystem via libmagick++ or libgraphicsmagick++ if present.
15+
It also supports reading images of many other types from the filesystem via libmagick or libgraphicsmagick if present.
1616
Colour spaces, embedded ICC profiles and alpha transparency channels are all handled correctly.
1717

1818
Only small regions of uncompressed image data are held in memory and processed at a time, taking full advantage of multiple CPU cores and L1/L2/L3 cache. Resizing an image is typically 4x faster than using the quickest ImageMagick and GraphicsMagick settings.
@@ -546,7 +546,7 @@ brew install graphicsmagick
546546
```
547547

548548
```
549-
sudo apt-get install -qq imagemagick graphicsmagick libmagick++-dev
549+
sudo apt-get install -qq imagemagick graphicsmagick libmagickcore-dev
550550
```
551551

552552
```

preinstall.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,15 @@ case $(uname -s) in
9595
trusty|utopic|qiana|rebecca)
9696
# Ubuntu 14, Mint 17
9797
echo "Installing libvips dependencies via apt-get"
98-
apt-get install -y automake build-essential gobject-introspection gtk-doc-tools libglib2.0-dev libjpeg-turbo8-dev libpng12-dev libwebp-dev libtiff5-dev libexif-dev liblcms2-dev libxml2-dev swig libmagickwand-dev curl
98+
apt-get install -y automake build-essential gobject-introspection gtk-doc-tools libglib2.0-dev libjpeg-turbo8-dev libpng12-dev libwebp-dev libtiff5-dev libexif-dev liblcms2-dev libxml2-dev swig libmagickcore-dev curl
9999
install_libvips_from_source
100100
;;
101101
precise|wheezy|maya)
102102
# Debian 7, Ubuntu 12.04, Mint 13
103103
echo "Installing libvips dependencies via apt-get"
104104
add-apt-repository -y ppa:lyrasis/precise-backports
105105
apt-get update
106-
apt-get install -y automake build-essential gobject-introspection gtk-doc-tools libglib2.0-dev libjpeg-turbo8-dev libpng12-dev libwebp-dev libtiff4-dev libexif-dev liblcms2-dev libxml2-dev swig libmagickwand-dev curl
106+
apt-get install -y automake build-essential gobject-introspection gtk-doc-tools libglib2.0-dev libjpeg-turbo8-dev libpng12-dev libwebp-dev libtiff4-dev libexif-dev liblcms2-dev libxml2-dev swig libmagickcore-dev curl
107107
install_libvips_from_source
108108
;;
109109
*)

0 commit comments

Comments
 (0)