-
Notifications
You must be signed in to change notification settings - Fork 474
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Picture is not clear and cropping problem #133
Comments
Agreed with the second issue of picture quality, but first issue I never experienced. |
What I can do for picture quality.
…On Sun, 18 Oct, 2020, 7:27 pm Jhansi Karee, ***@***.***> wrote:
Agreed with the second issue of picture quality, but first issue I never
experienced.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#133 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AG7UKM7HWKEKMA25BID2S63SLLX4LANCNFSM4QLXCQKA>
.
|
In Case , Your Image is Simply getting cropped then just change the following things :
change method private Bitmap scaledBitmap(Bitmap bitmap, int width, int height){
Matrix m = new Matrix();
m.setRectToRect(new RectF(0, 0, bitmap.getWidth(), bitmap.getHeight()), new RectF(0, 0, width, height), Matrix.ScaleToFit.CENTER);
return Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), m, false);
} to : private Bitmap scaledBitmap(Bitmap bitmap, int width, int height){
return Bitmap.createScaledBitmap(bitmap,width,height,false);
} |
@arunkush @jhansireddy did you got resolution of improving image quality? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello
When I click the image and crop it which part i have crop that not showing in the app some different part show the app.
2. when i save the picture and check it again it is not clear how i can in create picture quality.
The text was updated successfully, but these errors were encountered: