我在我的应用程序中使用 Aviary SDK 作为照片编辑器,但它正在缩小我的图像。考虑我正在传递一个大小的图像,720*720
但在编辑 Aviary 后给我一个大小的图像720*590
为什么 Aviary 返回按比例缩小的图像?
Intent newIntent = new Intent( ShowCapturedImage.this, FeatherActivity.class );
newIntent.setData(Uri.fromFile(pictureFile) );
startActivityForResult( newIntent, 1 );