我正在开发一个简单的图像编辑器。Aviary 的 Aviary Image Editor SDK 注册已禁用,现在随 Adobe 的 Creative Sdk 一起提供。毫无疑问,它们提供了如此多的功能,但它们对我的简单图像编辑器没有用。
我只想使用一些图像编辑工具,如裁剪和方向。所以我在我的 MainActivity 中编写了以下代码。
String[] tools = new String[] { "CROP", "ORIENTATION" };
Intent newIntent = new AviaryIntent.Builder(this)
.setData(imageUri) // input image src
.withOutput(Uri.parse("file://" + "abc.jpg")) // output file
.withOutputFormat(Bitmap.CompressFormat.JPEG) // output format
.withOutputSize(MegaPixels.Mp5) // output size
.withOutputQuality(90) // output quality
.build();
newIntent.putExtra(Constants.EXTRA_TOOLS_LIST, tools);
startActivityForResult(newIntent, 1);
问题是,我想删除Creative Cloud Connected
编辑器页脚中的链接。请提供一些解决方案。
注意:这只是一个用于学习目的的演示应用程序,而不是用于生产。我们不会在任何地方发布它。
谢谢...