mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-25 11:14:05 +00:00
| Package | Version | Package | Version | | -------------------- | ------- | -------------------- | ------- | | @uppy/companion | 3.7.1 | @uppy/remote-sources | 0.1.1 | | @uppy/compressor | 0.3.1 | @uppy/transloadit | 2.3.5 | | @uppy/core | 2.3.2 | @uppy/robodog | 2.9.1 | | @uppy/dashboard | 2.4.1 | uppy | 2.13.1 | | @uppy/image-editor | 1.4.1 | | | - @uppy/compressor: fix upload causing meta name to reset (Justin / #3890) - @uppy/transloadit: cancel assemblies when all its files have been removed (Antoine du Hamel / #3893) - e2e: Add retries for flaky e2e test (Merlijn Vos / #3915) - @uppy/dashboard,@uppy/image-editor,@uppy/remote-sources: Fix `uppy.close()` crashes when remote-sources or image-editor is installed (Merlijn Vos / #3914) - @uppy/core: Add missing type for retry-all event (Luc Boissaye / #3901) - @uppy/companion: Companion app type (Mikael Finstad / #3899) - e2e: upgrade to Cypress 10 (Antoine du Hamel / #3896) - meta: Fix website build (Murderlon) - meta: Create new issue templates (Merlijn Vos / #3879) |
||
|---|---|---|
| .. | ||
| src | ||
| types | ||
| CHANGELOG.md | ||
| LICENSE | ||
| package.json | ||
| README.md | ||
@uppy/image-editor
Image Editor is an image cropping and editing plugin for Uppy. Designed to be used with the Dashboard UI (can in theory work without it).
⚠ In beta.
Uppy is being developed by the folks at Transloadit, a versatile file encoding service.
Example
import Uppy from '@uppy/core'
import Dashboard from '@uppy/dashboard'
import ImageEditor from '@uppy/image-editor'
const uppy = new Uppy()
uppy.use(Dashboard)
uppy.use(ImageEditor, {
target: Dashboard,
quality: 0.7,
})
Installation
$ npm install @uppy/image-editor
Alternatively, you can also use this plugin in a pre-built bundle from Transloadit’s CDN: Edgly. In that case Uppy will attach itself to the global window.Uppy object. See the main Uppy documentation for instructions.
Documentation
Documentation for this plugin can be found on the Uppy website.