PhotoEditor icon indicating copy to clipboard operation
PhotoEditor copied to clipboard

A Photo Editor library with simple, easy support for image editing using paints,text,filters,emoji and Sticker like stories.

Results 80 PhotoEditor issues
Sort by recently updated
recently updated
newest added

Thank you for this awesome project. You mentioned cropping functionality is next. Is it in active development? What's the expected time frame?

enhancement

Please use something like [this](https://github.com/kencheung4/android-StickerView) for stickers and emojis. Right now it's hard to resize and rotate stickers and specially emojis and there is no option for flipping them.

enhancement

when i use this method second time it give me an error, i use this method frequently to save previous bitmaps on every action i make. ` private fun saveImageAsBitmap(mPhotoEditor:...

I came across two problems while working with the library: 1. If the image is bigger than the max OpenGL texture size(which is different depending on the device), the image...

bug
help wanted

- [ ] Use data binding to bind views in the sample app. - [ ] Remove necessary null values. - [ ] Use lateinit.

enhancement

Image in PhotoEditorView should be zoomable, this feature is missing in current version.

enhancement

How I can increase/decrease the contrast, beauty, brightness of the image view (PhotoEditorView) with the help of seek bar? I actually added the method of brightness which works fine for...

Is there a suggested way to change the orientation of the image being edited? Currently, I have tried using the `mPhotoEditorView.getSource().setRotation(90);` function to set the rotation based off of the...

I cannot seem to draw on top of stickers. When I try to the sticker is moved instead. Is this the intended behavior? Is there a way to work around...

There is a small mistake in the wiki, particularly in Saving part: https://github.com/burhanrashid52/PhotoEditor/wiki/Saving Current code: ``` mPhotoEditor.saveAsBitmap(new PhotoEditor.OnSaveBitmap() { @Override public void onBitmapReady(@NonNull Bitmap saveBitmap) { Log.e("PhotoEditor","Image Saved Successfully"); }...