Steve Curtis
Steve Curtis
@prowsandy @gwidaz Using `android.media.ExifInterface` you can fix the image rotation via button click. You could essentially modify the `com.soundcloud.android.crop.CropImageActivity` to include a "Fix Rotation" button. But this is how you...
@danielchristopher1 @matte5031 @Marabita Possible solution here for you: [#258](https://github.com/jdamcd/android-crop/issues/258)
@onionYJK See this issue: [#258](https://github.com/jdamcd/android-crop/issues/258)
Take a look at this issue for a workaround: [#258](https://github.com/jdamcd/android-crop/issues/258)
@zhongzhihuashanghai I've never had any issues with this library returning a NullPointerException. Could you elaborate a little more as to why you would be getting a NullPointerException or what you...
@muh-bazm What exactly is your issue?
@Amirhgh74 Yes it is possible. You can do it using the following line. > Crop.of(source, destination).withAspect(ASPECT_X, ASPECT_Y).start(context, Class/Fragment here); You would do this in the onActivityResult. This is how I...
Awesome. How would I use your fix via gradle?
@Lawgrin I figured out a temporary fix. I just created my own separate Crop class within my project and just pasted the code you modified. Works perfectly now. Thank you....
@matte5031 the way I did it was I went to lawgrin's fork and copied the "crop" class code. I then created my own crop class within my project and posted...