Lines Matching refs:BitmapHeader2
1053 BitmapHeader2; in ReadWPGImage() local
1113 BitmapHeader2.RotAngle=0; in ReadWPGImage()
1196 BitmapHeader2.RotAngle=ReadBlobLSBShort(image); in ReadWPGImage()
1197 BitmapHeader2.LowLeftX=ReadBlobLSBShort(image); in ReadWPGImage()
1198 BitmapHeader2.LowLeftY=ReadBlobLSBShort(image); in ReadWPGImage()
1199 BitmapHeader2.UpRightX=ReadBlobLSBShort(image); in ReadWPGImage()
1200 BitmapHeader2.UpRightY=ReadBlobLSBShort(image); in ReadWPGImage()
1201 BitmapHeader2.Width=ReadBlobLSBShort(image); in ReadWPGImage()
1202 BitmapHeader2.Height=ReadBlobLSBShort(image); in ReadWPGImage()
1203 if ((BitmapHeader2.Width == 0) || (BitmapHeader2.Height == 0)) in ReadWPGImage()
1205 BitmapHeader2.Depth=ReadBlobLSBShort(image); in ReadWPGImage()
1206 BitmapHeader2.HorzRes=ReadBlobLSBShort(image); in ReadWPGImage()
1207 BitmapHeader2.VertRes=ReadBlobLSBShort(image); in ReadWPGImage()
1211 ((BitmapHeader2.LowLeftX-BitmapHeader2.UpRightX)/470.0); in ReadWPGImage()
1213 ((BitmapHeader2.LowLeftX-BitmapHeader2.UpRightY)/470.0); in ReadWPGImage()
1214 image->page.x=(int) (BitmapHeader2.LowLeftX/470.0); in ReadWPGImage()
1215 image->page.y=(int) (BitmapHeader2.LowLeftX/470.0); in ReadWPGImage()
1216 if(BitmapHeader2.HorzRes && BitmapHeader2.VertRes) in ReadWPGImage()
1218 image->resolution.x=BitmapHeader2.HorzRes/470.0; in ReadWPGImage()
1219 image->resolution.y=BitmapHeader2.VertRes/470.0; in ReadWPGImage()
1221 image->columns=BitmapHeader2.Width; in ReadWPGImage()
1222 image->rows=BitmapHeader2.Height; in ReadWPGImage()
1223 bpp=BitmapHeader2.Depth; in ReadWPGImage()
1301 if(Rec.RecType==0x14 && BitmapHeader2.RotAngle!=0 && !image_info->ping) in ReadWPGImage()
1304 if(BitmapHeader2.RotAngle & 0x8000) in ReadWPGImage()
1316 if(BitmapHeader2.RotAngle & 0x2000) in ReadWPGImage()
1328 if(BitmapHeader2.RotAngle & 0x0FFF) in ReadWPGImage()
1333 rotate_image=RotateImage(image,(BitmapHeader2.RotAngle & in ReadWPGImage()