-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
1,258 additions
and
256 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,7 @@ let knownGlobals = [ | |
closed, | ||
confirm, | ||
console, | ||
createImageBitmap, | ||
crypto, | ||
Deno, | ||
dispatchEvent, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. | ||
|
||
import { assertEquals } from "./test_util.ts"; | ||
|
||
function generateNumberedData(n: number): Uint8ClampedArray { | ||
return new Uint8ClampedArray( | ||
Array.from({ length: n }, (_, i) => [i + 1, 0, 0, 1]).flat(), | ||
); | ||
} | ||
|
||
Deno.test(async function imageBitmapDirect() { | ||
const data = generateNumberedData(3); | ||
const imageData = new ImageData(data, 3, 1); | ||
const imageBitmap = await createImageBitmap(imageData); | ||
assertEquals( | ||
// @ts-ignore: Deno[Deno.internal].core allowed | ||
Deno[Deno.internal].getBitmapData(imageBitmap), | ||
new Uint8Array(data.buffer), | ||
); | ||
}); | ||
|
||
Deno.test(async function imageBitmapCrop() { | ||
const data = generateNumberedData(3 * 3); | ||
const imageData = new ImageData(data, 3, 3); | ||
const imageBitmap = await createImageBitmap(imageData, 1, 1, 1, 1); | ||
assertEquals( | ||
// @ts-ignore: Deno[Deno.internal].core allowed | ||
Deno[Deno.internal].getBitmapData(imageBitmap), | ||
new Uint8Array([5, 0, 0, 1]), | ||
); | ||
}); | ||
|
||
Deno.test(async function imageBitmapCropPartialNegative() { | ||
const data = generateNumberedData(3 * 3); | ||
const imageData = new ImageData(data, 3, 3); | ||
const imageBitmap = await createImageBitmap(imageData, -1, -1, 2, 2); | ||
// @ts-ignore: Deno[Deno.internal].core allowed | ||
// deno-fmt-ignore | ||
assertEquals(Deno[Deno.internal].getBitmapData(imageBitmap), new Uint8Array([ | ||
0, 0, 0, 0, 0, 0, 0, 0, | ||
0, 0, 0, 0, 1, 0, 0, 1 | ||
])); | ||
}); | ||
|
||
Deno.test(async function imageBitmapCropGreater() { | ||
const data = generateNumberedData(3 * 3); | ||
const imageData = new ImageData(data, 3, 3); | ||
const imageBitmap = await createImageBitmap(imageData, -1, -1, 5, 5); | ||
// @ts-ignore: Deno[Deno.internal].core allowed | ||
// deno-fmt-ignore | ||
assertEquals(Deno[Deno.internal].getBitmapData(imageBitmap), new Uint8Array([ | ||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | ||
0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 1, 3, 0, 0, 1, 0, 0, 0, 0, | ||
0, 0, 0, 0, 4, 0, 0, 1, 5, 0, 0, 1, 6, 0, 0, 1, 0, 0, 0, 0, | ||
0, 0, 0, 0, 7, 0, 0, 1, 8, 0, 0, 1, 9, 0, 0, 1, 0, 0, 0, 0, | ||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | ||
])); | ||
}); | ||
|
||
Deno.test(async function imageBitmapScale() { | ||
const data = generateNumberedData(3); | ||
const imageData = new ImageData(data, 3, 1); | ||
const imageBitmap = await createImageBitmap(imageData, { | ||
resizeHeight: 5, | ||
resizeWidth: 5, | ||
resizeQuality: "pixelated", | ||
}); | ||
// @ts-ignore: Deno[Deno.internal].core allowed | ||
// deno-fmt-ignore | ||
assertEquals(Deno[Deno.internal].getBitmapData(imageBitmap), new Uint8Array([ | ||
1, 0, 0, 1, 1, 0, 0, 1, 2, 0, 0, 1, 3, 0, 0, 1, 3, 0, 0, 1, | ||
1, 0, 0, 1, 1, 0, 0, 1, 2, 0, 0, 1, 3, 0, 0, 1, 3, 0, 0, 1, | ||
1, 0, 0, 1, 1, 0, 0, 1, 2, 0, 0, 1, 3, 0, 0, 1, 3, 0, 0, 1, | ||
1, 0, 0, 1, 1, 0, 0, 1, 2, 0, 0, 1, 3, 0, 0, 1, 3, 0, 0, 1, | ||
1, 0, 0, 1, 1, 0, 0, 1, 2, 0, 0, 1, 3, 0, 0, 1, 3, 0, 0, 1 | ||
])); | ||
}); | ||
|
||
Deno.test(async function imageBitmapFlipY() { | ||
const data = generateNumberedData(9); | ||
const imageData = new ImageData(data, 3, 3); | ||
const imageBitmap = await createImageBitmap(imageData, { | ||
imageOrientation: "flipY", | ||
}); | ||
// @ts-ignore: Deno[Deno.internal].core allowed | ||
// deno-fmt-ignore | ||
assertEquals(Deno[Deno.internal].getBitmapData(imageBitmap), new Uint8Array([ | ||
7, 0, 0, 1, 8, 0, 0, 1, 9, 0, 0, 1, | ||
4, 0, 0, 1, 5, 0, 0, 1, 6, 0, 0, 1, | ||
1, 0, 0, 1, 2, 0, 0, 1, 3, 0, 0, 1, | ||
])); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.