Searched refs:pngHandle (Results 1 - 1 of 1) sorted by relevance
/developtools/global_resource_tool/src/ |
H A D | resource_check.cpp | 116 png_structp pngHandle = png_create_read_struct(PNG_LIBPNG_VER_STRING, nullptr, nullptr, nullptr);
in GetPngWidthAndHeight() local 117 if (pngHandle == nullptr) {
in GetPngWidthAndHeight() 121 png_infop infoHandle = png_create_info_struct(pngHandle);
in GetPngWidthAndHeight() 124 png_destroy_read_struct(&pngHandle, nullptr, nullptr);
in GetPngWidthAndHeight() 127 png_init_io(pngHandle, in);
in GetPngWidthAndHeight() 128 png_read_info(pngHandle, infoHandle);
in GetPngWidthAndHeight() 131 png_get_IHDR(pngHandle, infoHandle, &w, &h, nullptr, nullptr, nullptr, nullptr, nullptr);
in GetPngWidthAndHeight() 135 png_destroy_read_struct(&pngHandle, &infoHandle, 0);
in GetPngWidthAndHeight()
|
Completed in 2 milliseconds