Searched refs:hires_bounds (Results 1 – 2 of 2) sorted by relevance
/external/ImageMagick/coders/ |
D | ps.c | 475 hires_bounds; in ReadPSImage() local 583 (void) memset(&hires_bounds,0,sizeof(hires_bounds)); in ReadPSImage() 709 if ((fabs(bounds.x2-bounds.x1) <= fabs(hires_bounds.x2-hires_bounds.x1)) || in ReadPSImage() 710 (fabs(bounds.y2-bounds.y1) <= fabs(hires_bounds.y2-hires_bounds.y1))) in ReadPSImage() 713 hires_bounds=bounds; in ReadPSImage() 716 if ((fabs(hires_bounds.x2-hires_bounds.x1) >= MagickEpsilon) && in ReadPSImage() 717 (fabs(hires_bounds.y2-hires_bounds.y1) >= MagickEpsilon)) in ReadPSImage() 723 hires_bounds.x2-hires_bounds.x1,hires_bounds.y2-hires_bounds.y1, in ReadPSImage() 724 hires_bounds.x1,hires_bounds.y1); in ReadPSImage() 726 page.width=(size_t) ceil((double) ((hires_bounds.x2-hires_bounds.x1)* in ReadPSImage() [all …]
|
D | pdf.c | 447 hires_bounds; in ReadPDFImage() local 521 (void) memset(&hires_bounds,0,sizeof(hires_bounds)); in ReadPDFImage() 624 if ((fabs(bounds.x2-bounds.x1) <= fabs(hires_bounds.x2-hires_bounds.x1)) || in ReadPDFImage() 625 (fabs(bounds.y2-bounds.y1) <= fabs(hires_bounds.y2-hires_bounds.y1))) in ReadPDFImage() 627 hires_bounds=bounds; in ReadPDFImage() 629 if ((fabs(hires_bounds.x2-hires_bounds.x1) >= MagickEpsilon) && in ReadPDFImage() 630 (fabs(hires_bounds.y2-hires_bounds.y1) >= MagickEpsilon)) in ReadPDFImage() 636 hires_bounds.x2-bounds.x1,hires_bounds.y2-hires_bounds.y1, in ReadPDFImage() 637 hires_bounds.x1,hires_bounds.y1); in ReadPDFImage() 639 page.width=(size_t) ceil((double) ((hires_bounds.x2-hires_bounds.x1)* in ReadPDFImage() [all …]
|