summaryrefslogtreecommitdiff
path: root/third_party/freetype-py/freetype/ft_enums/ft_outline_flags.py
diff options
context:
space:
mode:
authorRoozbeh Pournader <roozbeh@google.com>2015-01-13 08:50:27 -0800
committerJames Godfrey-Kittle <jamesgk@google.com>2015-04-16 12:16:25 -0700
commit36623f13d922461c897fe0ae1ff550a073385329 (patch)
tree9339ab434222da3393491673ea12090de381495b /third_party/freetype-py/freetype/ft_enums/ft_outline_flags.py
parent9fc4898c2338e4b9bb028171f5f8492f01879fbe (diff)
Add FreeType python bindings to third_party.
Diffstat (limited to 'third_party/freetype-py/freetype/ft_enums/ft_outline_flags.py')
-rw-r--r--third_party/freetype-py/freetype/ft_enums/ft_outline_flags.py87
1 files changed, 87 insertions, 0 deletions
diff --git a/third_party/freetype-py/freetype/ft_enums/ft_outline_flags.py b/third_party/freetype-py/freetype/ft_enums/ft_outline_flags.py
new file mode 100644
index 0000000..644c225
--- /dev/null
+++ b/third_party/freetype-py/freetype/ft_enums/ft_outline_flags.py
@@ -0,0 +1,87 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+# -----------------------------------------------------------------------------
+#
+# FreeType high-level python API - Copyright 2011 Nicolas P. Rougier
+# Distributed under the terms of the new BSD license.
+#
+# -----------------------------------------------------------------------------
+"""
+A list of bit-field constants use for the flags in an outline's 'flags'
+field.
+
+
+FT_OUTLINE_NONE
+
+ Value 0 is reserved.
+
+
+FT_OUTLINE_OWNER
+
+ If set, this flag indicates that the outline's field arrays (i.e., 'points',
+ 'flags', and 'contours') are 'owned' by the outline object, and should thus
+ be freed when it is destroyed.
+
+
+FT_OUTLINE_EVEN_ODD_FILL
+
+ By default, outlines are filled using the non-zero winding rule. If set to 1,
+ the outline will be filled using the even-odd fill rule (only works with the
+ smooth rasterizer).
+
+
+FT_OUTLINE_REVERSE_FILL
+
+ By default, outside contours of an outline are oriented in clock-wise
+ direction, as defined in the TrueType specification. This flag is set if the
+ outline uses the opposite direction (typically for Type 1 fonts). This flag
+ is ignored by the scan converter.
+
+
+FT_OUTLINE_IGNORE_DROPOUTS
+
+ By default, the scan converter will try to detect drop-outs in an outline and
+ correct the glyph bitmap to ensure consistent shape continuity. If set, this
+ flag hints the scan-line converter to ignore such cases. See below for more
+ information.
+
+
+FT_OUTLINE_SMART_DROPOUTS
+
+ Select smart dropout control. If unset, use simple dropout control. Ignored
+ if FT_OUTLINE_IGNORE_DROPOUTS is set. See below for more information.
+
+
+FT_OUTLINE_INCLUDE_STUBS
+
+ If set, turn pixels on for 'stubs', otherwise exclude them. Ignored if
+ FT_OUTLINE_IGNORE_DROPOUTS is set. See below for more information.
+
+
+FT_OUTLINE_HIGH_PRECISION
+
+ This flag indicates that the scan-line converter should try to convert this
+ outline to bitmaps with the highest possible quality. It is typically set for
+ small character sizes. Note that this is only a hint that might be completely
+ ignored by a given scan-converter.
+
+
+FT_OUTLINE_SINGLE_PASS
+
+ This flag is set to force a given scan-converter to only use a single pass
+ over the outline to render a bitmap glyph image. Normally, it is set for very
+ large character sizes. It is only a hint that might be completely ignored by
+ a given scan-converter.
+"""
+FT_OUTLINE_FLAGS = { 'FT_OUTLINE_NONE' : 0x0,
+ 'FT_OUTLINE_OWNER' : 0x1,
+ 'FT_OUTLINE_EVEN_ODD_FILL' : 0x2,
+ 'FT_OUTLINE_REVERSE_FILL' : 0x4,
+ 'FT_OUTLINE_IGNORE_DROPOUTS' : 0x8,
+ 'FT_OUTLINE_SMART_DROPOUTS' : 0x10,
+ 'FT_OUTLINE_INCLUDE_STUBS' : 0x20,
+ 'FT_OUTLINE_HIGH_PRECISION' : 0x100,
+ 'FT_OUTLINE_SINGLE_PASS' : 0x200 }
+globals().update(FT_OUTLINE_FLAGS)
+
+