Parameters of the writing algorithm. More...
#include <jpeg.hpp>
Public Member Functions | |
options () | |
Default constructor. | |
options (unsigned char compression_quality_, bool progressive_) | |
Constructor. | |
Public Attributes | |
unsigned char | quality |
Quality level to use in the saved stream. | |
bool | progressive |
Tell if we save a progressive jpeg. |
Parameters of the writing algorithm.
Definition at line 173 of file jpeg.hpp.
claw::graphic::jpeg::writer::options::options | ( | ) |
Default constructor.
Definition at line 137 of file jpeg_writer.cpp.
00138 : quality(75), progressive(false) 00139 { 00140 00141 } // jpeg::writer::options::options()
claw::graphic::jpeg::writer::options::options | ( | unsigned char | quality_, | |
bool | progressive_ | |||
) |
Constructor.
Definition at line 151 of file jpeg_writer.cpp.
00152 : quality(quality_), progressive(progressive_) 00153 { 00154 00155 } // jpeg::writer::options::options()
Tell if we save a progressive jpeg.
Definition at line 184 of file jpeg.hpp.
Referenced by claw::graphic::jpeg::writer::set_options().
unsigned char claw::graphic::jpeg::writer::options::quality |
Quality level to use in the saved stream.
Definition at line 181 of file jpeg.hpp.
Referenced by claw::graphic::jpeg::writer::set_options().