Lines Matching refs:height

129 	png_uint_32 width, height, rowbytes, w, h, res_x, res_y;  in gdImageCreateFromPngCtx()  local
199 …png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, N… in gdImageCreateFromPngCtx()
202 im = gdImageCreateTrueColor((int) width, (int) height); in gdImageCreateFromPngCtx()
204 im = gdImageCreate((int) width, (int) height); in gdImageCreateFromPngCtx()
343 image_data = (png_bytep) safe_emalloc(rowbytes, height, 0); in gdImageCreateFromPngCtx()
345 row_pointers = (png_bytepp) safe_emalloc(height, sizeof(png_bytep), 0); in gdImageCreateFromPngCtx()
348 for (h = 0; h < height; ++h) { in gdImageCreateFromPngCtx()
380 for (h = 0; h < height; h++) { in gdImageCreateFromPngCtx()
393 for (h = 0; h < height; h++) { in gdImageCreateFromPngCtx()
413 for (h = 0; h < height; ++h) { in gdImageCreateFromPngCtx()
488 int height = im->sy; in gdImagePngCtxEx() local
600 png_set_IHDR(png_ptr, info_ptr, width, height, 8, PNG_COLOR_TYPE_RGB_ALPHA, interlace_type, in gdImagePngCtxEx()
603 png_set_IHDR(png_ptr, info_ptr, width, height, 8, PNG_COLOR_TYPE_RGB, interlace_type, in gdImagePngCtxEx()
607 png_set_IHDR(png_ptr, info_ptr, width, height, bit_depth, PNG_COLOR_TYPE_PALETTE, interlace_type, in gdImagePngCtxEx()
716 row_pointers = safe_emalloc(sizeof(png_bytep), height, 0); in gdImagePngCtxEx()
718 for (j = 0; j < height; ++j) { in gdImagePngCtxEx()
744 for (j = 0; j < height; ++j) { in gdImagePngCtxEx()
752 row_pointers = safe_emalloc(height, sizeof(png_bytep), 0); in gdImagePngCtxEx()
753 for (j = 0; j < height; ++j) { in gdImagePngCtxEx()
763 for (j = 0; j < height; ++j) { in gdImagePngCtxEx()