mirror of
https://github.com/lovell/sharp.git
synced 2025-07-09 10:30:15 +02:00
Docs: remove mention of EXIF from flip/flop ops
This commit is contained in:
parent
8be6da1def
commit
9c7713ed54
@ -60,8 +60,6 @@ const resizeThenRotate = await sharp(input)
|
|||||||
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.
|
||||||
|
|
||||||
|
|
||||||
@ -80,8 +78,6 @@ const output = await sharp(input).flip().toBuffer();
|
|||||||
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 |
|
||||||
|
@ -83,8 +83,6 @@ function rotate (angle, options) {
|
|||||||
* 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.
|
||||||
*
|
*
|
||||||
* @example
|
* @example
|
||||||
@ -102,8 +100,6 @@ function flip (flip) {
|
|||||||
* 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.
|
|
||||||
*
|
|
||||||
* @example
|
* @example
|
||||||
* const output = await sharp(input).flop().toBuffer();
|
* const output = await sharp(input).flop().toBuffer();
|
||||||
*
|
*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user