From 61de936e55c8ffdb30ceab3959eea04d1e272f14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aar=C3=B3n=20Garc=C3=ADa=20Herv=C3=A1s?= Date: Fri, 6 Mar 2020 15:46:58 +0100 Subject: [PATCH] Fix README typo --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 18c3c796..9874f51c 100644 --- a/README.md +++ b/README.md @@ -531,7 +531,7 @@ The links below refer to an older version of gm but everything should still work - **stream** - provides a `ReadableStream` with the processed image data - **toBuffer** - returns the image as a `Buffer` instead of a stream -##compare +## compare Graphicsmagicks `compare` command is exposed through `gm.compare()`. This allows us to determine if two images can be considered "equal". @@ -580,7 +580,7 @@ gm.compare('/path/to/image1.jpg', '/path/to/another.png', options, function (err }) ``` -##composite +## composite GraphicsMagick supports compositing one image on top of another. This is exposed through `gm.composite()`. Its first argument is an image path with the changes to the base image, and an optional mask image. @@ -597,7 +597,7 @@ gm('/path/to/image.jpg') }); ``` -##montage +## montage GraphicsMagick supports montage for combining images side by side. This is exposed through `gm.montage()`. Its only argument is an image path with the changes to the base image.