📄 gdipapi.pas
字号:
InterpolationModeHighQualityBicubic = 7;
type
TInterpolationMode = InterpolationMode;
{$ENDIF}
//--------------------------------------------------------------------------
// Pen types
//--------------------------------------------------------------------------
{$EXTERNALSYM PenAlignment}
PenAlignment = (
PenAlignmentCenter,
PenAlignmentInset
);
TPenAlignment = PenAlignment;
//--------------------------------------------------------------------------
// Brush types
//--------------------------------------------------------------------------
{$EXTERNALSYM BrushType}
BrushType = (
BrushTypeSolidColor,
BrushTypeHatchFill,
BrushTypeTextureFill,
BrushTypePathGradient,
BrushTypeLinearGradient
);
TBrushType = BrushType;
//--------------------------------------------------------------------------
// Pen's Fill types
//--------------------------------------------------------------------------
{$IFDEF DELPHI6_UP}
{$EXTERNALSYM PenType}
PenType = (
PenTypeSolidColor = ord(BrushTypeSolidColor),
PenTypeHatchFill = ord(BrushTypeHatchFill),
PenTypeTextureFill = ord(BrushTypeTextureFill),
PenTypePathGradient = ord(BrushTypePathGradient),
PenTypeLinearGradient = ord(BrushTypeLinearGradient),
PenTypeUnknown = -1
);
TPenType = PenType;
{$ELSE}
{$EXTERNALSYM PenType}
PenType = Integer;
const
PenTypeSolidColor = 0;
PenTypeHatchFill = 1;
PenTypeTextureFill = 2;
PenTypePathGradient = 3;
PenTypeLinearGradient = 4;
PenTypeUnknown = -1;
type
TPenType = PenType;
{$ENDIF}
//--------------------------------------------------------------------------
// Matrix Order
//--------------------------------------------------------------------------
{$EXTERNALSYM MatrixOrder}
MatrixOrder = (
MatrixOrderPrepend,
MatrixOrderAppend
);
TMatrixOrder = MatrixOrder;
//--------------------------------------------------------------------------
// Generic font families
//--------------------------------------------------------------------------
{$EXTERNALSYM GenericFontFamily}
GenericFontFamily = (
GenericFontFamilySerif,
GenericFontFamilySansSerif,
GenericFontFamilyMonospace
);
TGenericFontFamily = GenericFontFamily;
//--------------------------------------------------------------------------
// FontStyle: face types and common styles
//--------------------------------------------------------------------------
type
{$EXTERNALSYM FontStyle}
FontStyle = Integer;
const
FontStyleRegular = Integer(0);
FontStyleBold = Integer(1);
FontStyleItalic = Integer(2);
FontStyleBoldItalic = Integer(3);
FontStyleUnderline = Integer(4);
FontStyleStrikeout = Integer(8);
Type
TFontStyle = FontStyle;
//---------------------------------------------------------------------------
// Smoothing Mode
//---------------------------------------------------------------------------
{$IFDEF DELPHI6_UP}
{$EXTERNALSYM SmoothingMode}
SmoothingMode = (
SmoothingModeInvalid = ord(QualityModeInvalid),
SmoothingModeDefault = ord(QualityModeDefault),
SmoothingModeHighSpeed = ord(QualityModeLow),
SmoothingModeHighQuality = ord(QualityModeHigh),
SmoothingModeNone,
SmoothingModeAntiAlias
);
TSmoothingMode = SmoothingMode;
{$ELSE}
{$EXTERNALSYM SmoothingMode}
SmoothingMode = Integer;
const
SmoothingModeInvalid = QualityModeInvalid;
SmoothingModeDefault = QualityModeDefault;
SmoothingModeHighSpeed = QualityModeLow;
SmoothingModeHighQuality = QualityModeHigh;
SmoothingModeNone = 3;
SmoothingModeAntiAlias = 4;
type
TSmoothingMode = SmoothingMode;
{$ENDIF}
//---------------------------------------------------------------------------
// Pixel Format Mode
//---------------------------------------------------------------------------
{$IFDEF DELPHI6_UP}
{$EXTERNALSYM PixelOffsetMode}
PixelOffsetMode = (
PixelOffsetModeInvalid = Ord(QualityModeInvalid),
PixelOffsetModeDefault = Ord(QualityModeDefault),
PixelOffsetModeHighSpeed = Ord(QualityModeLow),
PixelOffsetModeHighQuality = Ord(QualityModeHigh),
PixelOffsetModeNone, // No pixel offset
PixelOffsetModeHalf // Offset by -0.5, -0.5 for fast anti-alias perf
);
TPixelOffsetMode = PixelOffsetMode;
{$ELSE}
{$EXTERNALSYM PixelOffsetMode}
PixelOffsetMode = Integer;
const
PixelOffsetModeInvalid = QualityModeInvalid;
PixelOffsetModeDefault = QualityModeDefault;
PixelOffsetModeHighSpeed = QualityModeLow;
PixelOffsetModeHighQuality = QualityModeHigh;
PixelOffsetModeNone = 3; // No pixel offset
PixelOffsetModeHalf = 4; // Offset by -0.5, -0.5 for fast anti-alias perf
type
TPixelOffsetMode = PixelOffsetMode;
{$ENDIF}
//---------------------------------------------------------------------------
// Text Rendering Hint
//---------------------------------------------------------------------------
{$EXTERNALSYM TextRenderingHint}
TextRenderingHint = (
TextRenderingHintSystemDefault, // Glyph with system default rendering hint
TextRenderingHintSingleBitPerPixelGridFit, // Glyph bitmap with hinting
TextRenderingHintSingleBitPerPixel, // Glyph bitmap without hinting
TextRenderingHintAntiAliasGridFit, // Glyph anti-alias bitmap with hinting
TextRenderingHintAntiAlias, // Glyph anti-alias bitmap without hinting
TextRenderingHintClearTypeGridFit // Glyph CT bitmap with hinting
);
TTextRenderingHint = TextRenderingHint;
//---------------------------------------------------------------------------
// Metafile Types
//---------------------------------------------------------------------------
{$EXTERNALSYM MetafileType}
MetafileType = (
MetafileTypeInvalid, // Invalid metafile
MetafileTypeWmf, // Standard WMF
MetafileTypeWmfPlaceable, // Placeable WMF
MetafileTypeEmf, // EMF (not EMF+)
MetafileTypeEmfPlusOnly, // EMF+ without dual, down-level records
MetafileTypeEmfPlusDual // EMF+ with dual, down-level records
);
TMetafileType = MetafileType;
//---------------------------------------------------------------------------
// Specifies the type of EMF to record
//---------------------------------------------------------------------------
{$IFDEF DELPHI6_UP}
{$EXTERNALSYM EmfType}
EmfType = (
EmfTypeEmfOnly = Ord(MetafileTypeEmf), // no EMF+, only EMF
EmfTypeEmfPlusOnly = Ord(MetafileTypeEmfPlusOnly), // no EMF, only EMF+
EmfTypeEmfPlusDual = Ord(MetafileTypeEmfPlusDual) // both EMF+ and EMF
);
TEmfType = EmfType;
{$ELSE}
{$EXTERNALSYM EmfType}
EmfType = Integer;
const
EmfTypeEmfOnly = Ord(MetafileTypeEmf); // no EMF+, only EMF
EmfTypeEmfPlusOnly = Ord(MetafileTypeEmfPlusOnly); // no EMF, only EMF+
EmfTypeEmfPlusDual = Ord(MetafileTypeEmfPlusDual); // both EMF+ and EMF
type
TEmfType = EmfType;
{$ENDIF}
//---------------------------------------------------------------------------
// EMF+ Persistent object types
//---------------------------------------------------------------------------
{$EXTERNALSYM ObjectType}
ObjectType = (
ObjectTypeInvalid,
ObjectTypeBrush,
ObjectTypePen,
ObjectTypePath,
ObjectTypeRegion,
ObjectTypeImage,
ObjectTypeFont,
ObjectTypeStringFormat,
ObjectTypeImageAttributes,
ObjectTypeCustomLineCap
);
TObjectType = ObjectType;
const
ObjectTypeMax = ObjectTypeCustomLineCap;
ObjectTypeMin = ObjectTypeBrush;
function ObjectTypeIsValid(type_: ObjectType): BOOL;
//---------------------------------------------------------------------------
// EMF+ Records
//---------------------------------------------------------------------------
// We have to change the WMF record numbers so that they don't conflict with
// the EMF and EMF+ record numbers.
const
GDIP_EMFPLUS_RECORD_BASE = $00004000;
{$EXTERNALSYM GDIP_EMFPLUS_RECORD_BASE}
GDIP_WMF_RECORD_BASE = $00010000;
{$EXTERNALSYM GDIP_WMF_RECORD_BASE}
// macros
function GDIP_WMF_RECORD_TO_EMFPLUS(n: integer): Integer;
function GDIP_EMFPLUS_RECORD_TO_WMF(n: integer): Integer;
function GDIP_IS_WMF_RECORDTYPE(n: integer): BOOL;
{$IFDEF DELPHI6_UP}
type
{$EXTERNALSYM EmfPlusRecordType}
EmfPlusRecordType = (
// Since we have to enumerate GDI records right along with GDI+ records,
// We list all the GDI records here so that they can be part of the
// same enumeration type which is used in the enumeration callback.
WmfRecordTypeSetBkColor = (META_SETBKCOLOR or GDIP_WMF_RECORD_BASE),
WmfRecordTypeSetBkMode = (META_SETBKMODE or GDIP_WMF_RECORD_BASE),
WmfRecordTypeSetMapMode = (META_SETMAPMODE or GDIP_WMF_RECORD_BASE),
WmfRecordTypeSetROP2 = (META_SETROP2 or GDIP_WMF_RECORD_BASE),
WmfRecordTypeSetRelAbs = (META_SETRELABS or GDIP_WMF_RECORD_BASE),
WmfRecordTypeSetPolyFillMode = (META_SETPOLYFILLMODE or GDIP_WMF_RECORD_BASE),
WmfRecordTypeSetStretchBltMode = (META_SETSTRETCHBLTMODE or GDIP_WMF_RECORD_BASE),
WmfRecordTypeSetTextCharExtra = (META_SETTEXTCHAREXTRA or GDIP_WMF_RECORD_BASE),
WmfRecordTypeSetTextColor = (META_SETTEXTCOLOR or GDIP_WMF_RECORD_BASE),
WmfRecordTypeSetTextJustification = (META_SETTEXTJUSTIFICATION or GDIP_WMF_RECORD_BASE),
WmfRecordTypeSetWindowOrg = (META_SETWINDOWORG or GDIP_WMF_RECORD_BASE),
WmfRecordTypeSetWindowExt = (META_SETWINDOWEXT or GDIP_WMF_RECORD_BASE),
WmfRecordTypeSetViewportOrg = (META_SETVIEWPORTORG or GDIP_WMF_RECORD_BASE),
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -