Lines Matching refs:height
44 // 27..29 Height of the Canvas Image.
117 int width, height;
130 height = 1 + get_le24(*data + 15);
131 if (width * (uint64_t)height >= MAX_IMAGE_AREA) {
137 if (height_ptr != NULL) *height_ptr = height;
271 // Fetch '*width', '*height', '*has_alpha' and fill out 'headers' based on
285 int* const height,
311 status = ParseVP8X(&data, &data_size, &found_vp8x, width, height, &flags);
355 (uint32_t)hdrs.compressed_size, width, height)) {
363 if (!VP8LGetInfo(data, data_size, width, height, has_alpha)) {
386 // fill out headers, ignore width/height/has_alpha.
443 // Decode bitstream header, update io->width/io->height.
448 status = WebPAllocateDecBuffer(io.width, io.height, params->options,
466 status = WebPAllocateDecBuffer(io.width, io.height, params->options,
563 size_t data_size, int* const width, int* const height,
574 if (!WebPGetInfo(data, data_size, &output.width, &output.height)) {
578 if (height != NULL) *height = output.height;
592 int* width, int* height) {
593 return Decode(MODE_RGB, data, data_size, width, height, NULL);
597 int* width, int* height) {
598 return Decode(MODE_RGBA, data, data_size, width, height, NULL);
602 int* width, int* height) {
603 return Decode(MODE_ARGB, data, data_size, width, height, NULL);
607 int* width, int* height) {
608 return Decode(MODE_BGR, data, data_size, width, height, NULL);
612 int* width, int* height) {
613 return Decode(MODE_BGRA, data, data_size, width, height, NULL);
617 int* width, int* height, uint8_t** u, uint8_t** v,
621 width, height, &output);
649 &features->width, &features->height,
658 int* width, int* height) {
668 if (height != NULL) {
669 *height = features.height;
735 const int H = io->height;