-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.d.ts
134 lines (106 loc) · 3.82 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
declare module "image-raub" {
namespace image {
type TSize = Readonly<{ width: number; height: number }>;
type TImageData = TSize & Readonly<{
data: Buffer;
noflip?: boolean;
}>;
type TEvent = {
type: string;
[key: string]: unknown;
};
type TEventCb<T extends TEvent> = (event: T) => (void | boolean);
type EventEmitter = import('node:events').EventEmitter;
/**
* Image
*
* It is similar to the web Image.
* Extends EventEmitter to provide event-handling.
*/
class ImageJs implements EventEmitter {
constructor(src?: string | null);
/** Is image fully loaded? */
readonly complete: boolean;
/** Raw image data */
readonly data: TImageData;
/** An Array, containing width and height. */
readonly wh: [number, number];
/** Image width. */
readonly width: number;
/** Image height. */
readonly height: number;
/** Alias for width. */
readonly naturalWidth: number;
/** Alias for height. */
readonly naturalHeight: number;
/** An Object, containing width and height. */
readonly size: TSize;
/** Image URI: local file / URL / data-uri */
src: string;
/**
* Similar to .on('error', cb).
*
* Setter adds a new callback. If passed `null`, removes ALL callbacks.
* Getter returns an Array of currently existing callbacks.
*/
onerror: null | undefined | TEventCb<TEvent> | ReadonlyArray<TEventCb<TEvent>>;
/**
* Similar to .on('load', cb).
*
* Setter adds a new callback. If passed `null`, removes ALL callbacks.
* Getter returns an Array of currently existing callbacks.
*/
onload: null | undefined | TEventCb<TEvent> | ReadonlyArray<TEventCb<TEvent>>;
/** Emit an event on behalf of this Image. */
emit(name: string, event: TEvent): boolean;
/**
* Add event listener.
*
* 'error' - something went wrong.
* 'load' - image has been loaded.
*/
on(name: string, cb: (event: TEvent) => (void | boolean)): this;
/** Alias for emit. */
dispatchEvent(event: TEvent): void;
/** Alias for on. */
addEventListener(name: string): void;
/** Alias for removeListener. */
removeEventListener(name: string): void;
/** Save the image to a file. */
save(dest: string): void;
/** Draws other image onto this one.
* @see https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/drawImage
*/
drawImage(
image: TImageData,
sx: number,
sy: number,
sWidth: number,
sHeight: number,
dx: number,
dy: number,
dWidth: number,
dHeight: number,
): void;
static fromPixels(width: number, height: number, bpp: number, pixels: Buffer): ImageJs;
static loadAsync(src: string): Promise<ImageJs>;
// ------ implements EventEmitter
addListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
on(eventName: string | symbol, listener: (...args: any[]) => void): this;
once(eventName: string | symbol, listener: (...args: any[]) => void): this;
removeListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
off(eventName: string | symbol, listener: (...args: any[]) => void): this;
removeAllListeners(event?: string | symbol): this;
setMaxListeners(n: number): this;
getMaxListeners(): number;
listeners(eventName: string | symbol): Function[];
rawListeners(eventName: string | symbol): Function[];
emit(eventName: string | symbol, ...args: any[]): boolean;
listenerCount(eventName: string | symbol, listener?: Function): number;
prependListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
prependOnceListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
eventNames(): Array<string | symbol>;
}
}
export = image.ImageJs;
}