-
-
Notifications
You must be signed in to change notification settings - Fork 773
/
Copy pathindex.test.ts
43 lines (34 loc) · 1.27 KB
/
index.test.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
import { expect, test, describe } from "vitest";
import { createJimp } from "@jimp/core";
import { getTestImagePath } from "@jimp/test-utils";
import jpeg from "./index.js";
const jimp = createJimp({ formats: [jpeg] });
describe("JPEG", () => {
test("load JPG", async () => {
const image = await jimp.read(getTestImagePath("cops.jpg"));
expect(image.getPixelColor(10, 10)).toBe(0x3f4a02ff);
expect(image.getPixelColor(220, 190)).toBe(0x5d94b6ff);
expect(image.getPixelColor(350, 130)).toBe(0xdf7944ff);
});
test("load JPG with fill bytes", async () => {
const image = await jimp.read(getTestImagePath("fillbytes.jpg"));
expect(image.getPixelColor(10, 10)).toBe(0xaeb8c3ff);
expect(image.getPixelColor(220, 190)).toBe(0x262b21ff);
expect(image.getPixelColor(350, 130)).toBe(0x4e5d30ff);
});
test("export JPG", async () => {
const image = jimp.fromBitmap({
width: 3,
height: 3,
data: [
0xff0000ff, 0xff0080ff, 0xff00ffff, 0xff0080ff, 0xff00ffff, 0x8000ffff,
0xff00ffff, 0x8000ffff, 0x0000ffff,
],
});
const buffer = await image.getBuffer("image/jpeg", {
quality: 50,
});
// eslint-disable-next-line no-control-regex
expect(buffer.toString()).toMatch(/^.{3,9}JFIF\u0000/);
});
});