Lines Matching full:but
17 appreciated but is not required.
135 /*Same as lodepng_decode_memory, but always decodes to 32-bit RGBA raw image*/
139 /*Same as lodepng_decode_memory, but always decodes to 24-bit RGB raw image*/
146 Same as the other decode functions, but instead takes a filename as input.
152 /*Same as lodepng_decode_file, but always decodes to 32-bit RGBA raw image.*/
156 /*Same as lodepng_decode_file, but always decodes to 24-bit RGB raw image.*/
184 /*Same as lodepng_encode_memory, but always encodes from 32-bit RGBA raw image.*/
188 /*Same as lodepng_encode_memory, but always encodes from 24-bit RGB raw image.*/
195 Same as the other encode functions, but instead takes a filename as output.
202 /*Same as lodepng_encode_file, but always encodes from 32-bit RGBA raw image.*/
206 /*Same as lodepng_encode_file, but always encodes from 24-bit RGB raw image.*/
216 /*Same as lodepng_decode_memory, but decodes to an std::vector. The colortype
227 Same as the other decode functions, but instead takes a filename as input.
236 /*Same as lodepng_encode_memory, but encodes to an std::vector. colortype
247 Same as the other encode functions, but instead takes a filename as output.
277 not hard limit nor a guarantee, but can prevent excessive memory usage. This setting is
278 …ignored by the PNG decoder, but is used by the deflate/zlib decoder and can be used by custom ones.
311 …unsigned windowsize; /*must be a power of two <= 32768. higher compresses more but is slower. Defa…
314 unsigned lazymatching; /*use lazy matching: better compression but a bit slower. Default: true*/
452 these values. The encoder normally ignores info_png.color when auto_convert is on, but will
493 Similar to the non-international text chunks, but with additional strings
564 data if the pixels could be encoded as grayscale but the ICC profile is RGB.
592 (such as one with two IHDR chunks or the disallowed combination of sRGB with iCCP). But do use
641 decoder, but not the Info settings from the Info structs.
658 …unsigned read_text_chunks; /*if false but remember_unknown_chunks is true, they're stored in the u…
683 /*every filter at 1, 2, 3 or 4 (paeth), unlike LFS_ZERO not a good choice, but for testing*/
787 Same as lodepng_decode_memory, but uses a LodePNGState to allow custom settings and
795 Read the PNG header, but not the actual data. This returns only the information
886 point to the first byte of the PNG file (which is not a chunk but the magic header, the
1008 /* Same as other lodepng::decode, but using a State for more settings and information. */
1018 /* Same as other lodepng::encode, but using a State for more settings and information. */
1068 [.] test if there are no memory leaks or security exploits - done a lot but needs to be checked oft…
1069 [.] check compatibility with various compilers - done but needs to be redone for every newer versi…
1071 [X] support color profile chunk types (but never let them touch RGB values by default)
1154 LodePNG is simple but only supports the basic requirements. To achieve
1209 *) The following public chunks are not (yet) supported but treated as unknown chunks by LodePNG:
1330 but it's possible to choose it yourself given the right settings.
1365 2048 by default, but can be set to 32768 for better, but slow, compression.
1372 large texts but a larger result on small texts (such as a single program name).
1394 is easy, but there are multiple ways if you want to give some channels more
1440 but control it yourself, you need to set auto_convert in the encoder settings
1457 PNG image, but it can be ignored since the raw image has the color type you requested instead
1467 interface but normally isn't needed since the encoder and decoder already call
1471 -color to grayscale when non-gray pixels are present: no error is thrown, but
1499 scanline starts at a fresh byte. But that is NOT true for the LodePNG raw input and output.
1522 anyway, but it means you cannot simply cast the unsigned char* buffer to an
1564 signature of the PNG and are not part of a chunk. But if you start at byte 8
1626 chunks, but does not force any other ordering rules.
1696 NOTE: Modern versions of VS should be fully supported, but old versions, e.g.
1775 state.info_png....: no settings for decoder but ouput, see struct LodePNGInfo
1861 but it is cleaner now imho and functionality remains the same. Also fixed
1888 read by ignoring the problem but windows apps couldn't.
1903 are together in these files but it works both for C and C++ compilers.
1912 *) 27 may 2007: zlib and png code separated (but still in the same file),