Note that there are some explanatory texts on larger screens.

plurals
  1. POget width and height of bitmap when rotate bitmap android?
    primarykey
    data
    text
    <p>i'm learning how to rotate bitmap in android, but i have problem when get width and height of bitmap.. how to fix it ?</p> <p>this my code;</p> <pre><code>// Decode with inSampleSize BitmapFactory.Options o2 = new BitmapFactory.Options(); o2.inSampleSize = scale; bitmap = BitmapFactory.decodeFile(filePath, o2); int width = bitmap.getWidth(); int height = bitmap.getHeight(); if(degree!=0){ Matrix matrix = new Matrix(); matrix.postRotate(degree); bitmap = Bitmap.createBitmap(bitmap, 0, 0, width, height, matrix, true); } </code></pre> <p>i get error at <strong>int width = bitmap.getWidth(); int height = bitmap.getHeight();</strong></p> <p>this my logcat</p> <pre><code> 10-25 11:02:51.689: W/dalvikvm(22013): threadid=1: thread exiting with uncaught exception (group=0x40bd7438) 10-25 11:02:51.699: E/AndroidRuntime(22013): FATAL EXCEPTION: main 10-25 11:02:51.699: E/AndroidRuntime(22013): java.lang.NullPointerException 10-25 11:02:51.699: E/AndroidRuntime(22013): at com.mozaik.tangsel.uploadimage.UploadActivity.decodeFile(UploadActivity.java:580) 10-25 11:02:51.699: E/AndroidRuntime(22013): at com.mozaik.tangsel.uploadimage.UploadActivity$5.onClick(UploadActivity.java:216) 10-25 11:02:51.699: E/AndroidRuntime(22013): at android.view.View.performClick(View.java:4084) 10-25 11:02:51.699: E/AndroidRuntime(22013): at android.view.View$PerformClick.run(View.java:16987) 10-25 11:02:51.699: E/AndroidRuntime(22013): at android.os.Handler.handleCallback(Handler.java:615) 10-25 11:02:51.699: E/AndroidRuntime(22013): at android.os.Handler.dispatchMessage(Handler.java:92) 10-25 11:02:51.699: E/AndroidRuntime(22013): at android.os.Looper.loop(Looper.java:137) 10-25 11:02:51.699: E/AndroidRuntime(22013): at android.app.ActivityThread.main(ActivityThread.java:4794) 10-25 11:02:51.699: E/AndroidRuntime(22013): at java.lang.reflect.Method.invokeNative(Native Method) 10-25 11:02:51.699: E/AndroidRuntime(22013): at java.lang.reflect.Method.invoke(Method.java:511) 10-25 11:02:51.699: E/AndroidRuntime(22013): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:789) 10-25 11:02:51.699: E/AndroidRuntime(22013): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:556) 10-25 11:02:51.699: E/AndroidRuntime(22013): at dalvik.system.NativeStart.main(Native Method) </code></pre> <p>thanks, sorry for my english</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload