ByteArrayInputStream bis=new ByteArrayInputStream(stream);
//read version and throw error is not correct version
int version=bis.read();
if(version!=1)
throw new PdfException("Unknown version in serialised object "+version);
int isHires=bis.read(); //0=no,1=yes
useHiResImageForDisplay = isHires == 1;
pageNumber=bis.read();