⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ftimage.h

📁 奇趣公司比较新的qt/emd版本
💻 H
📖 第 1 页 / 共 5 页
字号:
  /*                                                                       */  /* <Fields>                                                              */  /*    ft_palette_mode_rgb  :: The palette is an array of 3-bytes RGB     */  /*                            records.                                   */  /*                                                                       */  /*    ft_palette_mode_rgba :: The palette is an array of 4-bytes RGBA    */  /*                            records.                                   */  /*                                                                       */  /* <Note>                                                                */  /*    As ft_pixel_mode_pal2, pal4 and pal8 are currently unused by       */  /*    FreeType, these types are not handled by the library itself.       */  /*                                                                       */  typedef enum  FT_Palette_Mode_  {    ft_palette_mode_rgb = 0,    ft_palette_mode_rgba,    ft_palettte_mode_max   /* do not remove */  } FT_Palette_Mode;  /* */#endif  /*************************************************************************/  /*                                                                       */  /* <Struct>                                                              */  /*    FT_Bitmap                                                          */  /*                                                                       */  /* <Description>                                                         */  /*    A structure used to describe a bitmap or pixmap to the raster.     */  /*    Note that we now manage pixmaps of various depths through the      */  /*    `pixel_mode' field.                                                */  /*                                                                       */  /* <Fields>                                                              */  /*    rows         :: The number of bitmap rows.                         */  /*                                                                       */  /*    width        :: The number of pixels in bitmap row.                */  /*                                                                       */  /*    pitch        :: The pitch's absolute value is the number of bytes  */  /*                    taken by one bitmap row, including padding.        */  /*                    However, the pitch is positive when the bitmap has */  /*                    a `down' flow, and negative when it has an `up'    */  /*                    flow.  In all cases, the pitch is an offset to add */  /*                    to a bitmap pointer in order to go down one row.   */  /*                                                                       */  /*    buffer       :: A typeless pointer to the bitmap buffer.  This     */  /*                    value should be aligned on 32-bit boundaries in    */  /*                    most cases.                                        */  /*                                                                       */  /*    num_grays    :: This field is only used with                       */  /*                    @FT_PIXEL_MODE_GRAY; it gives the number of gray   */  /*                    levels used in the bitmap.                         */  /*                                                                       */  /*    pixel_mode   :: The pixel mode, i.e., how pixel bits are stored.   */  /*                    See @FT_Pixel_Mode for possible values.            */  /*                                                                       */  /*    palette_mode :: This field is intended for paletted pixel modes;   */  /*                    it indicates how the palette is stored.  Not       */  /*                    used currently.                                    */  /*                                                                       */  /*    palette      :: A typeless pointer to the bitmap palette; this     */  /*                    field is intended for paletted pixel modes.  Not   */  /*                    used currently.                                    */  /*                                                                       */  /* <Note>                                                                */  /*   For now, the only pixel modes supported by FreeType are mono and    */  /*   grays.  However, drivers might be added in the future to support    */  /*   more `colorful' options.                                            */  /*                                                                       */  typedef struct  FT_Bitmap_  {    int             rows;    int             width;    int             pitch;    unsigned char*  buffer;    short           num_grays;    char            pixel_mode;    char            palette_mode;    void*           palette;  } FT_Bitmap;  /*************************************************************************/  /*                                                                       */  /* <Section>                                                             */  /*    outline_processing                                                 */  /*                                                                       */  /*************************************************************************/  /*************************************************************************/  /*                                                                       */  /* <Struct>                                                              */  /*    FT_Outline                                                         */  /*                                                                       */  /* <Description>                                                         */  /*    This structure is used to describe an outline to the scan-line     */  /*    converter.                                                         */  /*                                                                       */  /* <Fields>                                                              */  /*    n_contours :: The number of contours in the outline.               */  /*                                                                       */  /*    n_points   :: The number of points in the outline.                 */  /*                                                                       */  /*    points     :: A pointer to an array of `n_points' @FT_Vector       */  /*                  elements, giving the outline's point coordinates.    */  /*                                                                       */  /*    tags       :: A pointer to an array of `n_points' chars, giving    */  /*                  each outline point's type.  If bit 0 is unset, the   */  /*                  point is `off' the curve, i.e., a Bezier control     */  /*                  point, while it is `on' when set.                    */  /*                                                                       */  /*                  Bit 1 is meaningful for `off' points only.  If set,  */  /*                  it indicates a third-order Bezier arc control point; */  /*                  and a second-order control point if unset.           */  /*                                                                       */  /*    contours   :: An array of `n_contours' shorts, giving the end      */  /*                  point of each contour within the outline.  For       */  /*                  example, the first contour is defined by the points  */  /*                  `0' to `contours[0]', the second one is defined by   */  /*                  the points `contours[0]+1' to `contours[1]', etc.    */  /*                                                                       */  /*    flags      :: A set of bit flags used to characterize the outline  */  /*                  and give hints to the scan-converter and hinter on   */  /*                  how to convert/grid-fit it.  See @FT_OUTLINE_FLAGS.  */  /*                                                                       */  typedef struct  FT_Outline_  {    short       n_contours;      /* number of contours in glyph        */    short       n_points;        /* number of points in the glyph      */    FT_Vector*  points;          /* the outline's points               */    char*       tags;            /* the points flags                   */    short*      contours;        /* the contour end points             */    int         flags;           /* outline masks                      */  } FT_Outline;  /*************************************************************************/  /*                                                                       */  /* <Enum>                                                                */  /*   FT_OUTLINE_FLAGS                                                    */  /*                                                                       */  /* <Description>                                                         */  /*    A list of bit-field constants use for the flags in an outline's    */  /*    `flags' field.                                                     */  /*                                                                       */  /* <Values>                                                              */  /*    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' & `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 raster).              */  /*                                                                       */  /*   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.       */  /*                                                                       */  /*   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.                       */  /*                                                                       */#define FT_OUTLINE_NONE             0x0#define FT_OUTLINE_OWNER            0x1#define FT_OUTLINE_EVEN_ODD_FILL    0x2#define FT_OUTLINE_REVERSE_FILL     0x4

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -