xtd 0.2.0
text_rendering_hint.hpp
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace xtd {
10 namespace drawing {
12 namespace text {
34 }
35 }
36}
37
41};
text_rendering_hint
Specifies the quality of text rendering.
Definition text_rendering_hint.hpp:20
@ clear_type_grid_fit
Each character is drawn using its glyph ClearType bitmap with hinting. The highest quality setting....
Definition text_rendering_hint.hpp:32
@ system_default
Each character is drawn using its glyph bitmap, with the system default rendering hint....
Definition text_rendering_hint.hpp:22
@ anti_alias_grid_fit
Each character is drawn using its antialiased glyph bitmap with hinting. Much better quality due to a...
Definition text_rendering_hint.hpp:28
@ single_bit_per_pixel
Each character is drawn using its glyph bitmap. Hinting is not used.
Definition text_rendering_hint.hpp:26
@ anti_alias
Each character is drawn using its antialiased glyph bitmap without hinting. Better quality due to ant...
Definition text_rendering_hint.hpp:30
@ single_bit_per_pixel_grid_fit
Each character is drawn using its glyph bitmap. Hinting is used to improve character appearance on st...
Definition text_rendering_hint.hpp:24
std::vector< std::pair< enum_t, xtd::string > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.hpp:24
The xtd::drawing::text namespace provides advanced GDI+ typography functionality.
Definition font_collection.hpp:14
The xtd::drawing namespace provides access to GDI+ basic graphics functionality. More advanced functi...
Definition actions_system_images.hpp:10
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Provides the registration struct for enumerations.
Definition enum_register.hpp:38