Lines Matching refs:page
184 page;
228 Set the page density.
247 Determine page geometry from the PCL media box.
253 (void) ResetMagickMemory(&page,0,sizeof(page));
258 if (image_info->page != (char *) NULL)
303 if (width > page.width)
304 page.width=width;
305 if (height > page.height)
306 page.height=height;
312 if ((page.width == 0) || (page.height == 0))
313 (void) ParseAbsoluteGeometry(PSPageGeometry,&page);
314 if (image_info->page != (char *) NULL)
315 (void) ParseAbsoluteGeometry(image_info->page,&page);
317 page.width,(double) page.height);
327 if ((page.width == 0) || (page.height == 0))
328 (void) ParseAbsoluteGeometry(PSPageGeometry,&page);
329 if (image_info->page != (char *) NULL)
330 (void) ParseAbsoluteGeometry(image_info->page,&page);
335 page.width=(size_t) floor(page.width*image->resolution.x/delta.x+0.5);
336 page.height=(size_t) floor(page.height*image->resolution.y/delta.y+0.5);
338 page.width,(double) page.height);
387 image->page=page;
472 % WritePCLImage() writes an image in the Page Control Language encoded
792 option=GetImageOption(image_info,"pcl:fit-to-page");