Lines Matching refs:crop_box

6834           crop_box;  in ReadOneMNGImage()  local
7391 crop_box.left=mng_info->image_box.left+mng_info->x_off[object_id]; in ReadOneMNGImage()
7392 crop_box.right=mng_info->image_box.right+mng_info->x_off[object_id]; in ReadOneMNGImage()
7393 crop_box.top=mng_info->image_box.top+mng_info->y_off[object_id]; in ReadOneMNGImage()
7394 crop_box.bottom=mng_info->image_box.bottom+mng_info->y_off[object_id]; in ReadOneMNGImage()
7395 crop_box=mng_minimum_box(crop_box,mng_info->clip); in ReadOneMNGImage()
7396 crop_box=mng_minimum_box(crop_box,mng_info->frame); in ReadOneMNGImage()
7397 crop_box=mng_minimum_box(crop_box,mng_info->object_clip[object_id]); in ReadOneMNGImage()
7398 if ((crop_box.left != (mng_info->image_box.left in ReadOneMNGImage()
7400 (crop_box.right != (mng_info->image_box.right in ReadOneMNGImage()
7402 (crop_box.top != (mng_info->image_box.top in ReadOneMNGImage()
7404 (crop_box.bottom != (mng_info->image_box.bottom in ReadOneMNGImage()
7411 if ((crop_box.left < crop_box.right) && in ReadOneMNGImage()
7412 (crop_box.top < crop_box.bottom)) in ReadOneMNGImage()
7424 crop_info.x=(crop_box.left-mng_info->x_off[object_id]); in ReadOneMNGImage()
7425 crop_info.y=(crop_box.top-mng_info->y_off[object_id]); in ReadOneMNGImage()
7426 crop_info.width=(size_t) (crop_box.right-crop_box.left); in ReadOneMNGImage()
7427 crop_info.height=(size_t) (crop_box.bottom-crop_box.top); in ReadOneMNGImage()
7441 image->page.x=crop_box.left; in ReadOneMNGImage()
7442 image->page.y=crop_box.top; in ReadOneMNGImage()