Lines Matching refs:image_height
31 int image_width = 0, image_height = 0; // original width and height variable
96 image_height = atoi(argv[++c]); // NOLINT in ParseOptions()
136 if (image_width == 0 || image_height == 0) { in ParseOptions()
139 image_height = org_height; in ParseOptions()
142 image_height = rec_height; in ParseOptions()
154 dst_height = Abs(image_height); in ParseOptions()
225 int org_size = Abs(image_width) * Abs(image_height) * 4; // ARGB in main()
228 const int y_size = Abs(image_width) * Abs(image_height); in main()
230 ((Abs(image_width) + 1) / 2) * ((Abs(image_height) + 1) / 2); in main()
263 printf("Size: %dx%d to %dx%d\n", image_width, image_height, dst_width, in main()
294 int src_height = Abs(image_height); in main()
302 half_src_width, image_width, image_height, ch_rec, dst_width, in main()
308 TileARGBScale(ch_org, Abs(image_width) * 4, image_width, image_height, in main()