PDA

View Full Version : حطا getPixel in null در زمان کار با png



abasfar
پنج شنبه 27 اردیبهشت 1397, 14:41 عصر
سلام
دوستان من وقتی می خوام یک فایل png را لود کنم به bitmap و از متد getPixel ان استفادع کنم خطای زیر را میده



Attempt to invoke virtual method 'int android.graphics.Bitmap.getPixel(int, int)' on a null object reference



حالب ایتحاست که بعضی وقت ها درست کار میکنه بعضی وقت ها خطا میده و یم چیزی را هم اضافه کنم من دارم با کد زیر تو یک سرویس کار میکنم


FileInputStream in = new FileInputStream(file);
BitmapFactory.Options options = new BitmapFactory.Options();
options.inScaled = false;
options.inDither=false;
options.inJustDecodeBounds = false;
options.inPreferredConfig = Bitmap.Config.RGB_565;
Bitmap bMap = BitmapFactory.decodeStream(in,null,options);