expo-image-manipulator
Advanced tools
Comparing version 10.1.0 to 10.1.1
@@ -27,2 +27,3 @@ import { crop, flip, resize, rotate } from './actions/index.web'; | ||
const imageSource = new Image(); | ||
imageSource.crossOrigin = 'anonymous'; | ||
const canvas = document.createElement('canvas'); | ||
@@ -29,0 +30,0 @@ imageSource.onload = () => { |
@@ -13,2 +13,8 @@ # Changelog | ||
## 10.1.1 — 2021-10-15 | ||
### 🐛 Bug fixes | ||
- Fix `Tainted canvases may not be exported` CORS error on web. ([#14739](https://github.com/expo/expo/pull/14739) by [@IjzerenHein](https://github.com/IjzerenHein)) | ||
## 10.1.0 — 2021-10-01 | ||
@@ -15,0 +21,0 @@ |
{ | ||
"name": "expo-image-manipulator", | ||
"version": "10.1.0", | ||
"version": "10.1.1", | ||
"description": "Provides functions that let you manipulation images on the local file system, eg: resize, crop.", | ||
@@ -35,3 +35,3 @@ "main": "build/ImageManipulator.js", | ||
"expo-image-loader": "~3.0.0", | ||
"expo-modules-core": "~0.4.2" | ||
"expo-modules-core": "~0.4.3" | ||
}, | ||
@@ -41,3 +41,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "2718b696f4a6919905b0f47ebb24ff65b42d8ff9" | ||
"gitHead": "d23e1ac491da96b51c25eb2533efcd56499ee287" | ||
} |
@@ -29,2 +29,3 @@ import { ImageResult, SaveOptions, Action } from './ImageManipulator.types'; | ||
const imageSource = new Image(); | ||
imageSource.crossOrigin = 'anonymous'; | ||
const canvas = document.createElement('canvas'); | ||
@@ -31,0 +32,0 @@ imageSource.onload = () => { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
107769
1029
Updatedexpo-modules-core@~0.4.3