home *** CD-ROM | disk | FTP | other *** search
INI File | 1996-08-01 | 2.8 KB | 98 lines |
- [replace]
- ##procedure CreatePalette(nColors: Smallint; var pPaletteEntries: TColor; nSystemColors: Smallint);
- ##
- procedure CreatePalette(nColors: Smallint; pPaletteEntries: Pointer; nSystemColors: Smallint);
- [replace]
- ##procedure GetColorCountArray(var pCountArray: TColor);
- ##
- procedure GetColorCountArray(pCountArray: Pointer);
- [replace]
- ##procedure GetPalette(var pPaletteArray: TColor);
- ##
- procedure GetPalette(pPaletteArray: Pointer);
- [replace]
- ##procedure GetScanLine(nLine: Smallint; var pScanLine: TColor);
- ##
- procedure GetScanLine(nLine: Smallint; pScanLine: Pointer);
- [replace]
- ##procedure MatrixFilter(nMatrixSize: Smallint; var pMatrix: Smallint; nScale, nNorm, nOffset: Smallint);
- ##
- procedure MatrixFilter(nMatrixSize: Smallint; pMatrix: Pointer; nScale, nNorm, nOffset: Smallint);
- [replace]
- ##procedure PutScanLine(nLine: Smallint; var pLine: TColor; nUpdate: Variant);
- ##
- procedure PutScanLine(nLine: Smallint; pLine: Pointer; nUpdate:Variant);
- [replace]
- ##procedure ReduceColors(nColors, nOptimize, nDither, nNoBleed: Smallint);
- ##
- procedure ReduceColors(nColors:Integer; nOptimize, nDither, nNoBleed: Boolean);
- [replace]
- ##procedure ReduceColorsCallback(nColors, bOptimize, bDither, bNoBleed: Smallint; pPeekCntrl: Variant);
- ##
- procedure ReduceColorsCallback(nColors : Smallint; bOptimize, bDither, bNoBleed: Boolean; pPeekCntrl: Variant);
- [replace]
- ##procedure PolyLine(var PointArray: Integer; nPts: Smallint; nDestination: Variant);
- ##
- procedure PolyLine(PointArray: Pointer; nPts: Smallint; nDestination: Variant);
- [replace]
- ##procedure Polygon(var PointArray: Integer; nPts, nWinding: Smallint; nDestination: Variant);
- ##
- procedure Polygon(PointArray: Pointer; nPts, nWinding: Smallint; nDestination: Variant);
- [insert_before]
- ##implementation
- ##
-
- { ******* Constants ******* }
-
- { Image file formats }
-
- const
- IK_EXTENSION = 0;
- IK_TIFF = 1;
- IK_TARGA = 2;
- IK_BITMAP = 3;
- IK_GIF = 4;
- IK_DIB = 5;
- IK_PCX = 6;
- IK_JPEG = 7;
- IK_OLEPBRUSH = 8;
- IK_FIF = 9;
-
- { Image file compression types }
-
- IK_UNCOMP = 0;
- IK_LZW = 1;
- IK_RLE = 2;
- IK_PACKBITS = 3;
- IK_OS2 = 4;
- IK_PCXCOMP = 5;
-
- { Scrollbar types }
- IK_SB_NONE = 0;
- IK_SB_HORZ = 1;
- IK_SB_VERT = 2;
- IK_SB_BOTH = 3;
-
- { Load Options }
- IK_FIF_24_BIT = 0;
- IK_FIF_8_BIT_DITHERED = 1;
- IK_FIF_4_BIT_DITHERED = 2;
- IK_FIF_8_BIT_NODITHERED = 3;
- IK_FIF_4_BIT_NODITHERED = 4;
-
- { Load Scale }
- IK_FULL_SCALE = 0;
- IK_HALF_SCALE = 1;
- IK_DOUBLE_SCALE = 2;
- IK_IGNORE_SCALE = 3;
-
- { Contents }
- IK_CT_EMPTY = 0;
- IK_CT_DIB = 1;
- IK_CT_PAL = 2;
-
- { ikDumpControl }
- IK_DC_IMAGE_PALETTE = 0;
- IK_DC_IMAGE = 1;
- IK_DC_PALETTE = 2;
-