Home | History | Annotate | Download | only in coders

Lines Matching refs:resolution

2702         Set image resolution.
2706 image->resolution.x=(double) x_resolution;
2707 image->resolution.y=(double) y_resolution;
2712 image->resolution.x=(double) x_resolution/100.0;
2713 image->resolution.y=(double) y_resolution/100.0;
4570 image->resolution.x=(double) mng_get_long(p);
4571 image->resolution.y=(double) mng_get_long(&p[4]);
4575 image->resolution.x=image->resolution.x/100.0f;
4576 image->resolution.y=image->resolution.y/100.0f;
9522 if ((image->resolution.x != 0) && (image->resolution.y != 0) &&
9533 (png_uint_32) ((100.0*image->resolution.x+0.5)/2.54);
9535 (png_uint_32) ((100.0*image->resolution.y+0.5)/2.54);
9541 ping_pHYs_x_resolution=(png_uint_32) (100.0*image->resolution.x+0.5);
9542 ping_pHYs_y_resolution=(png_uint_32) (100.0*image->resolution.y+0.5);
9548 ping_pHYs_x_resolution=(png_uint_32) image->resolution.x;
9549 ping_pHYs_y_resolution=(png_uint_32) image->resolution.y;
12553 if (image->resolution.x && image->resolution.y && !mng_info->equal_physs)
12564 (image->resolution.x*100.0/2.54+0.5));
12567 (image->resolution.y*100.0/2.54+0.5));
12577 (image->resolution.x*100.0+0.5));
12580 (image->resolution.y*100.0+0.5));
12587 PNGLong(chunk+4,(png_uint_32) (image->resolution.x+0.5));
12588 PNGLong(chunk+8,(png_uint_32) (image->resolution.y+0.5));
13131 (next_image->resolution.x != next_image->next->resolution.x) ||
13132 (next_image->resolution.y != next_image->next->resolution.y))
13406 if (image->resolution.x && image->resolution.y && mng_info->equal_physs)
13418 (image->resolution.x*100.0/2.54+0.5));
13421 (image->resolution.y*100.0/2.54+0.5));
13431 (image->resolution.x*100.0+0.5));
13434 (image->resolution.y*100.0+0.5));
13441 PNGLong(chunk+4,(png_uint_32) (image->resolution.x+0.5));
13442 PNGLong(chunk+8,(png_uint_32) (image->resolution.y+0.5));