If i am capturing an image and inserting it inside the database. this is working fine. But if no image is captured then what will be the default value of it?
I am using Bitmap for capturing and byte[] for storing it into database. Can anybody tell me that what will be the default value of bitmap??
If i am capturing an image and inserting it inside the database. this is
Share
if you don’t assign a resource to your Bitmap ( i.e if you declare it like this
Bitmap b;orBitmap b=null;) or if you try to assign an invalid resource , the value will benull.