mirror of
https://github.com/swc-project/swc.git
synced 2024-12-30 17:15:11 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
31 lines
744 B
TypeScript
31 lines
744 B
TypeScript
// Loaded from https://deno.land/x/jpegts@1.1/lib/image.ts
|
|
|
|
|
|
import type { Pixel } from "./pixel.ts";
|
|
|
|
export class Image {
|
|
// @ts-ignore
|
|
width: number;
|
|
// @ts-ignore
|
|
height: number;
|
|
// @ts-ignore
|
|
data: Uint8Array;
|
|
getPixel(x: number, y: number): Pixel {
|
|
const index = x + (y * this.width);
|
|
const rntVal: Pixel = {
|
|
r: this.data[index * 4],
|
|
g: this.data[index * 4 + 1],
|
|
b: this.data[index * 4 + 2],
|
|
a: this.data[index * 4 + 3],
|
|
};
|
|
return rntVal;
|
|
}
|
|
setPixel(x: number, y: number, pix: Pixel) {
|
|
const index = x + (y * this.width);
|
|
this.data[index * 4] = pix.r;
|
|
this.data[index * 4 + 1] = pix.g;
|
|
this.data[index * 4 + 2] = pix.b;
|
|
this.data[index * 4 + 3] = pix.a;
|
|
}
|
|
}
|