Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is There Any Image Editing SDK Currently Available for Android [closed]

I have been looking for an image editing SDK for Android, something that includes an option for custom stickers. A good example would be the Adobe Creative SDK (previously the Aviary SDK), though the current build only supports customizing which features to include, with no option to add your own stickers. Another good example would be the Fotor SDK, which did support adding your own stickers, but it is now under development, with no way of accessing the previous version (that I know of).

There are a few more editing SDKs available, including the PhotoEditor SDK by img.ly and CLImageEditor, but only for iOS. If anyone knows of an Android editing SDK with a sticker feature, or if someone could point me toward some decent resources on the subject (which I have not been able to find) so I can create my own, it would be greatly appreciated.

like image 595
Bryan Avatar asked Sep 22 '15 15:09

Bryan


People also ask

Is photo editor SDK free?

100% Free to integrate! Detailed documentation for both iOS & Android. Hundreds of apps are using our SDK, and millions of photos get edited every week through our SDK.

Is there a photo editor on android?

If you're a Google One member or a Pixel user, you can get more editing features through the Google Photos app. Your device must have at least 3 GB RAM and Android 8.0 and up. Use these extra editing features: Portrait light : Change the position and brightness of light for photos of people.


1 Answers

The Img.ly PhotoEditor SDK is now also available for Android. You can also easily add your own assets like stickers and fonts.

You can get a reference to the stickers array like so:

ArrayList<ImageStickerConfig> stickers = PhotoEditorSdkConfig.getStickerConfig();

For the complete example consult the docs

like image 52
Jan Bussieck Avatar answered Oct 12 '22 23:10

Jan Bussieck