Lines Matching refs:image
1384 PNG_EXPORT(57, void, png_read_image, (png_structrp png_ptr, png_bytepp image));
1400 PNG_EXPORT(60, void, png_write_image, (png_structrp png_ptr, png_bytepp image));
2898 #define PNG_IMAGE_ROW_STRIDE(image)\ argument
2899 (PNG_IMAGE_PIXEL_CHANNELS((image).format) * (image).width)
2910 #define PNG_IMAGE_BUFFER_SIZE(image, row_stride)\ argument
2911 (PNG_IMAGE_PIXEL_COMPONENT_SIZE((image).format)*(image).height*(row_stride))
2919 #define PNG_IMAGE_SIZE(image)\ argument
2920 PNG_IMAGE_BUFFER_SIZE(image, PNG_IMAGE_ROW_STRIDE(image))
2925 #define PNG_IMAGE_COLORMAP_SIZE(image)\ argument
2926 (PNG_IMAGE_SAMPLE_SIZE((image).format) * (image).colormap_entries)
2980 PNG_EXPORT(234, int, png_image_begin_read_from_file, (png_imagep image,
2986 PNG_EXPORT(235, int, png_image_begin_read_from_stdio, (png_imagep image,
2991 PNG_EXPORT(236, int, png_image_begin_read_from_memory, (png_imagep image,
2995 PNG_EXPORT(237, int, png_image_finish_read, (png_imagep image,
3030 PNG_EXPORT(238, void, png_image_free, (png_imagep image));
3054 PNG_EXPORT(239, int, png_image_write_to_file, (png_imagep image,
3059 PNG_EXPORT(240, int, png_image_write_to_stdio, (png_imagep image, FILE *file,
3086 PNG_EXPORT(245, int, png_image_write_to_memory, (png_imagep image, void *memory,
3111 #define png_image_write_get_memory_size(image, size, convert_to_8_bit, buffer,\ argument
3113 png_image_write_to_memory(&(image), 0, &(size), convert_to_8_bit, buffer,\
3130 #define PNG_IMAGE_DATA_SIZE(image) (PNG_IMAGE_SIZE(image)+(image).height) argument
3150 #define PNG_IMAGE_COMPRESSED_SIZE_MAX(image)\ argument
3151 PNG_ZLIB_MAX_SIZE((png_alloc_size_t)PNG_IMAGE_DATA_SIZE(image))
3154 #define PNG_IMAGE_PNG_SIZE_MAX_(image, image_size)\ argument
3156 (((image).format&PNG_FORMAT_FLAG_COLORMAP)?/*colormap: PLTE, tRNS*/\
3157 12U+3U*(image).colormap_entries/*PLTE data*/+\
3158 (((image).format&PNG_FORMAT_FLAG_ALPHA)?\
3159 12U/*tRNS*/+(image).colormap_entries:0U):0U)+\
3167 #define PNG_IMAGE_PNG_SIZE_MAX(image)\ argument
3168 PNG_IMAGE_PNG_SIZE_MAX_(image, PNG_IMAGE_COMPRESSED_SIZE_MAX(image))