이미지 경로만 DB를 통해 가져 왔다면 다음과 같이 image를 읽으면 됩니다.
File imgFile =
new
File(
"/sdcard/Images/test_image.jpg"
);
if
(imgFile.exists()){
Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
ImageView myImage = (ImageView) findViewById(R.id.imageviewTest);
myImage.setImageBitmap(myBitmap);
}