Lines Matching refs:height
41 // 27..29 Height of the Canvas Image.
110 int width, height;
123 height = 1 + GetLE24(*data + 15);
124 if (width * (uint64_t)height >= MAX_IMAGE_AREA) {
130 if (height_ptr != NULL) *height_ptr = height;
266 // Fetch '*width', '*height', '*has_alpha' and fill out 'headers' based on
280 int* const height,
410 if (height != NULL) *height = image_height;
422 // fill out headers, ignore width/height/has_alpha.
476 // Decode bitstream header, update io->width/io->height.
481 status = WebPAllocateDecBuffer(io.width, io.height, params->options,
486 io.width, io.height);
503 status = WebPAllocateDecBuffer(io.width, io.height, params->options,
604 size_t data_size, int* const width, int* const height,
615 if (!WebPGetInfo(data, data_size, &output.width, &output.height)) {
619 if (height != NULL) *height = output.height;
633 int* width, int* height) {
634 return Decode(MODE_RGB, data, data_size, width, height, NULL);
638 int* width, int* height) {
639 return Decode(MODE_RGBA, data, data_size, width, height, NULL);
643 int* width, int* height) {
644 return Decode(MODE_ARGB, data, data_size, width, height, NULL);
648 int* width, int* height) {
649 return Decode(MODE_BGR, data, data_size, width, height, NULL);
653 int* width, int* height) {
654 return Decode(MODE_BGRA, data, data_size, width, height, NULL);
658 int* width, int* height, uint8_t** u, uint8_t** v,
662 width, height, &output);
689 &features->width, &features->height,
698 int* width, int* height) {
708 if (height != NULL) {
709 *height = features.height;
775 const int H = io->height;