Finally i done this, by,
drawPage(bp, 0, size.x, size.y, 0, 0, size.x, size.y, new Cookie());
it'll help you to render first page of PDF as BitMap. This method implemented in MuPDFCore.java.
PointF pageSize = getPageSize(0);
float mSourceScale = Math.max(w/pageSize.x, h/pageSize.y);
Point size = new Point((int)(pageSize.x*mSourceScale), (int)(pageSize.y*mSourceScale));
final Bitmap bp = Bitmap.createBitmap(size.x, size.y, Bitmap.Config.ARGB_8888);
drawPage(bp, 0, size.x, size.y, 0, 0, size.x, size.y, new Cookie());
storeImageIntoLocal(bp,filePath);//To Do my custom method to store bitmap into local