私は単純な画像エディタに取り組んでいます。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
問題は、エディターのフッターにあるリンクを削除したいということです。いくつかの解決策を提供してください。
注: これは学習用のデモ アプリであり、本番用ではありません。どこにもリリースするつもりはありません。
ありがとう...