Lines Matching full:h

29 #include <string.h> /*for size_t*/
31 #include "../../../lvgl.h"
119 After decoding, its size is w * h * (bytes per pixel) bytes larger than
124 h: Output parameter. Pointer to height of pixel data.
131 unsigned lodepng_decode_memory(unsigned char** out, unsigned* w, unsigned* h,
136 unsigned lodepng_decode32(unsigned char** out, unsigned* w, unsigned* h,
140 unsigned lodepng_decode24(unsigned char** out, unsigned* w, unsigned* h,
148 unsigned lodepng_decode_file(unsigned char** out, unsigned* w, unsigned* h,
153 unsigned lodepng_decode32_file(unsigned char** out, unsigned* w, unsigned* h,
157 unsigned lodepng_decode24_file(unsigned char** out, unsigned* w, unsigned* h,
173 w * h * (bytes per pixel), bytes per pixel depends on colortype and bitdepth.
175 h: height of the raw pixel data in pixels.
181 const unsigned char* image, unsigned w, unsigned h,
186 const unsigned char* image, unsigned w, unsigned h);
190 const unsigned char* image, unsigned w, unsigned h);
199 const unsigned char* image, unsigned w, unsigned h,
204 const unsigned char* image, unsigned w, unsigned h);
208 const unsigned char* image, unsigned w, unsigned h);
218 unsigned decode(std::vector<unsigned char>& out, unsigned& w, unsigned& h,
221 unsigned decode(std::vector<unsigned char>& out, unsigned& w, unsigned& h,
229 unsigned decode(std::vector<unsigned char>& out, unsigned& w, unsigned& h,
239 const unsigned char* in, unsigned w, unsigned h,
242 const std::vector<unsigned char>& in, unsigned w, unsigned h,
251 const unsigned char* in, unsigned w, unsigned h,
254 const std::vector<unsigned char>& in, unsigned w, unsigned h,
416 size_t lodepng_get_raw_size(unsigned w, unsigned h, const LodePNGColorMode* color);
628 The out buffer must have size (w * h * bpp + 7) / 8, where bpp is the bits per pixel
636 unsigned w, unsigned h);
727 const unsigned char* image, unsigned w, unsigned h,
790 unsigned lodepng_decode(unsigned char** out, unsigned* w, unsigned* h,
799 unsigned lodepng_inspect(unsigned* w, unsigned* h,
822 const unsigned char* image, unsigned w, unsigned h,
1009 unsigned decode(std::vector<unsigned char>& out, unsigned& w, unsigned& h,
1012 unsigned decode(std::vector<unsigned char>& out, unsigned& w, unsigned& h,
1020 const unsigned char* in, unsigned w, unsigned h,
1023 const std::vector<unsigned char>& in, unsigned w, unsigned h,
1147 -lodepng.h: the header file for both C and C++
1654 Add the files lodepng.c(pp) and lodepng.h to your project, include
1655 lodepng.h where needed, and your program can read/write PNG files.
1690 Visual Studio may want "stdafx.h" files to be included in each source file and
1719 #include "lodepng.h"
1739 #include "lodepng.h"
1962 documentation in the header. Renamed files to lodepng.cpp and lodepng.h