@expo/image-utils 0.3.18 → 0.3.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
|
-
|
|
1
|
+
<!-- Title -->
|
|
2
|
+
<h1 align="center">
|
|
3
|
+
👋 Welcome to <br><code>@expo/image-utils</code>
|
|
4
|
+
</h1>
|
|
2
5
|
|
|
3
|
-
A library for image processing functionality in Expo CLI
|
|
6
|
+
<p align="center">A library for image processing functionality in Expo CLI.</p>
|
|
7
|
+
|
|
8
|
+
<p align="center">
|
|
9
|
+
<img src="https://flat.badgen.net/packagephobia/install/@expo/image-utils">
|
|
10
|
+
|
|
11
|
+
<a href="https://www.npmjs.com/package/@expo/image-utils">
|
|
12
|
+
<img src="https://flat.badgen.net/npm/dw/@expo/image-utils" target="_blank" />
|
|
13
|
+
</a>
|
|
14
|
+
</p>
|
|
15
|
+
|
|
16
|
+
<!-- Body -->
|
|
17
|
+
|
|
18
|
+
It uses `sharp` for image processing if it's available through a global `sharp-cli` installation. Otherwise it uses `jimp`, a Node library with no native dependencies, and warns the user that they may want to install `sharp-cli` for faster image processing.
|
|
4
19
|
|
|
5
20
|
## Advanced Configuration
|
|
6
21
|
|