I have a problem which is to convert image from String. That String is returned from PHP , not from drawable folder. My coding is not working well. Here is my code.
picturePath = jArray.getString("photo");
cursor.close();
Bitmap bm = ShrinkBitmap(picturePath, 300, 300);
Bitmap resizedbitmap = Bitmap.createScaledBitmap(bm, 100, 100, true);
img_Photo.setImageBitmap(resizedbitmap);
Please, Guide me some ways.