I am working on a simple graphical editor. Aviary Registration for the Aviary Image Editor SDK is disabled, and now it comes with Adobe Creative Sdk. No doubt they provide so many functions, but they are not useful for my simple image editor.
I just want to use some image editing tools like cropping and orientation. So I wrote the code below in my MainActivity.
String[] tools = new String[] { "CROP", "ORIENTATION" };
Intent newIntent = new AviaryIntent.Builder(this)
.setData(imageUri)
.withOutput(Uri.parse("file://" + "abc.jpg"))
.withOutputFormat(Bitmap.CompressFormat.JPEG)
.withOutputSize(MegaPixels.Mp5)
.withOutputQuality(90)
.build();
newIntent.putExtra(Constants.EXTRA_TOOLS_LIST, tools);
startActivityForResult(newIntent, 1);
The problem is that I want to remove the link Creative Cloud Connectedin the editor footer. Please provide some solution.
Thank...
source
share