Hi
Hi,
Is there any image editing components available for FMX on android and IOS.
What I am looking for is the ability to
1. Open an image or take a photo.
2. Ability to draw lines with different brush size or color (Fill) sections.
3. Ability to write text.
4. Crop image.
5. Save to a file or stream.
Thanks
Is there any image editing components available for FMX on android and IOS.
What I am looking for is the ability to
1. Open an image or take a photo.
2. Ability to draw lines with different brush size or color (Fill) sections.
3. Ability to write text.
4. Crop image.
5. Save to a file or stream.
Thanks
It is not a single component but if it can help:
ReplyDelete1) action list > camera action > save bitmap somewhere
2) Canvas inside TRectangle for example. If you need it could have the bitmap as background
3) Similar to (2)
4) You can crop images with a few lines of code, you'll need the TBitmap class. On stackoverflow there are great answers
5) The TImage component for example may be useful