Ananas icon indicating copy to clipboard operation
Ananas copied to clipboard

ImageEditorIntentBuilder cant find symbol

Open ravibirla1 opened this issue 3 years ago • 1 comments

ImageEditorIntentBuilder this class is not found in activity

try { Intent intent = new ImageEditorIntentBuilder(this, sourceImagePath, outputFilePath) .withAddText() // Add the features you need .withPaintFeature() .withFilterFeature() .withRotateFeature() .withCropFeature() .withBrightnessFeature() .withSaturationFeature() .withBeautyFeature() .withStickerFeature() .forcePortrait(true) // Add this to force portrait mode (It's set to false by default) .setSupportActionBarVisibility(false) // To hide app's default action bar .build();

        EditImageActivity.start(activity, intent, PHOTO_EDITOR_REQUEST_CODE);
    } catch (Exception e) {
        Log.e("Demo App", e.getMessage()); // This could throw if either `sourcePath` or `outputPath` is blank or Null
    }

ravibirla1 avatar Sep 28 '21 07:09 ravibirla1

i m also facing the same issue

sgarg3399 avatar Apr 10 '22 12:04 sgarg3399