SYMBOL INDEX (32 symbols across 5 files) FILE: src/BMP24.ts type IRGB (line 9) | interface IRGB { function makeHeader (line 15) | function makeHeader(buf: Buffer, fileLen: number, dataLen: number, w: nu... class BMP24 (line 29) | class BMP24 { method constructor (line 40) | constructor(w: number, h: number) { method getFileData (line 60) | public getFileData() { method getDataUrl (line 64) | public getDataUrl() { method getData (line 69) | public getData() { method drawPoint (line 74) | public drawPoint(x: number, y: number, rgb: number) { method drawPointRGB (line 83) | public drawPointRGB(x: number, y: number, rgb: IRGB) { method getPointRGB (line 99) | public getPointRGB(x: number, y: number): IRGB { method drawLineH (line 114) | public drawLineH(x1: number, x2: number, y: number, rgb: number) { method drawLineV (line 126) | public drawLineV(y1: number, y2: number, x: number, rgb: number) { method drawLine (line 137) | public drawLine(x1: number, y1: number, x2: number, y2: number, rgb: n... method drawRect (line 175) | public drawRect(x: number, y: number, w: number, h: number, rgb: numbe... method fillRect (line 185) | public fillRect(x: number, y: number, w: number, h: number, rgb: numbe... method drawCircle (line 206) | public drawCircle(x: number, y: number, r: number, rgb: number) { method drawChar (line 240) | public drawChar(ch: string, x: number, y: number, font: IFont, color: ... method drawString (line 264) | public drawString(str: string, x: number, y: number, font: IFont, colo... method loadFromFile (line 272) | public static async loadFromFile(filename: string) { FILE: src/demo/filter.ts function gaussBlur (line 14) | function gaussBlur(img: BMP24, radius: number, sigma?: number) { function sharp (line 99) | function sharp(img: BMP24, arg: number) { function test (line 138) | async function test() { FILE: src/demo/gb16Font.ts constant CHAR_H (line 7) | const CHAR_H = 16; constant EN_CHAR_W (line 8) | const EN_CHAR_W = 8; constant CN_CHAR_W (line 9) | const CN_CHAR_W = 16; function getCharWidthHeight (line 15) | function getCharWidthHeight(char: number | string) { function drawChar (line 26) | function drawChar(img: BMP24, char: number | string, x: number, y: numbe... function drawString (line 43) | function drawString(img: BMP24, str: string, x: number, y: number, color... FILE: src/demo/test.ts function makeImg2 (line 20) | function makeImg2() { function rand (line 29) | function rand(min: number, max: number) { function makeCapcha (line 34) | function makeCapcha() { FILE: src/font.ts type IFont (line 325) | interface IFont {