-
Add a toggle button inside the Painting Editor to easily switch between normal crop and round crop modes |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Do you mean inside the Crop-Rotate-Editor? Or you required to crop the image inside the paint-editor? If you want to change in the Crop-Rotate-Editor, you can edit the app or bottom bar like in the example. But be careful the round cropper only supports the aspect ratio 1×1 so if you allow the user to change the aspect ratio in the round cropper can it make some issues. If you would like to change in the paint editor, it is not possible because the paint editor is not built for this case. What you can do is to create your own extended paint-editor if you copy the paint editor code and add a method where you can edit the |
Beta Was this translation helpful? Give feedback.
-
Yes, I mean to add a toggle button inside the Crop-Rotate-Editor. Thank you for your suggestion. I will customize the bottom bar. |
Beta Was this translation helpful? Give feedback.
Do you mean inside the Crop-Rotate-Editor? Or you required to crop the image inside the paint-editor?
If you want to change in the Crop-Rotate-Editor, you can edit the app or bottom bar like in the example. But be careful the round cropper only supports the aspect ratio 1×1 so if you allow the user to change the aspect ratio in the round cropper can it make some issues.
If you would like to change in the paint editor, it is not possible because the paint editor is not built for this case. What you can do is to create your own extended paint-editor if you copy the paint editor code and add a method where you can edit the
transformConfigs
. This will require a lot of logic, but you can copy/…