Lines Matching full:settings

46 the custom_zlib field of the compress and decompress settings*/
318 /*Settings for zlib decompression*/
344 const void * custom_context; /*optional custom settings for custom functions*/
348 void lodepng_decompress_settings_init(LodePNGDecompressSettings * settings);
353 Settings for zlib compression. Tweaking these settings tweaks the balance
358 /*LZ77 related settings*/
377 const void * custom_context; /*optional custom settings for custom functions*/
381 void lodepng_compress_settings_init(LodePNGCompressSettings * settings);
405 When decoding, with the default settings you can ignore this palette, since
733 Settings for the decoder. This contains settings for the PNG and the Zlib
734 decoder, but not the Info settings from the Info structs.
768 void lodepng_decoder_settings_init(LodePNGDecoderSettings * settings);
811 /*user settings for computing/using the stats*/
824 /*Settings for the encoder.*/
826 … LodePNGCompressSettings zlibsettings; /*settings for the zlib encoder, such as window size, ...*/
859 void lodepng_encoder_settings_init(LodePNGEncoderSettings * settings);
864 /*The settings, state and information for extended encoding and decoding.*/
867 LodePNGDecoderSettings decoder; /*the decoding settings*/
870 LodePNGEncoderSettings encoder; /*the encoding settings*/
885 Same as lodepng_decode_memory, but uses a LodePNGState to allow custom settings and
1032 const LodePNGDecompressSettings * settings);
1042 const LodePNGDecompressSettings * settings);
1055 const LodePNGCompressSettings * settings);
1067 const LodePNGCompressSettings * settings);
1115 /* Same as other lodepng::decode, but using a State for more settings and information. */
1125 /* Same as other lodepng::encode, but using a State for more settings and information. */
1159 … const LodePNGDecompressSettings & settings = lodepng_default_decompress_settings);
1163 … const LodePNGDecompressSettings & settings = lodepng_default_decompress_settings);
1169 const LodePNGCompressSettings & settings = lodepng_default_compress_settings);
1173 const LodePNGCompressSettings & settings = lodepng_default_compress_settings);
1234 11. state settings reference
1382 *) LodePNGDecoderSettings decoder: you can specify a few extra settings for the decoder to use
1409 The settings can be used to ignore the errors created by invalid CRC and Adler32
1437 *) LodePNGEncoderSettings encoder: you can specify a few settings for the encoder to use
1445 but it's possible to choose it yourself given the right settings.
1449 encoder uses, for example, the following settings from it when applicable:
1470 The following settings are supported (some are in sub-structs):
1555 but control it yourself, you need to set auto_convert in the encoder settings
1606 as the PNG has, by setting the color_convert setting to false. Settings in
1751 if you set the option settings.remember_unknown_chunks to 1. By default, this
1778 and with the same settings as the rest of the program, or the interfaces with
1875 11. state settings reference
1878 A quick reference of some settings to set on the LodePNGState
1892 state.info_raw....: more color settings, see struct LodePNGColorMode
1893 state.info_png....: no settings for decoder but output, see struct LodePNGInfo
1912 state.info_raw: more color settings, see struct LodePNGColorMode
1915 state.info_png.color....: more color settings, see struct LodePNGColorMode
1916 state.info_png....: more PNG related settings, see struct LodePNGInfo
1975 (no palette). Better deflate tree encoding. New compression tweak settings.
2060 *) 28 dec 2006: Added "Settings" to the encoder.