1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

Use Uint8ClampedArray when returning image data in src/core/jbig2.js and src/core/jpg.js

This commit is contained in:
Jonas Jenwald 2017-08-15 16:06:55 +02:00
parent 74ad90cb8f
commit f6636d6b19
3 changed files with 3 additions and 3 deletions

View file

@ -1386,7 +1386,7 @@ var JpxImage = (function JpxImageClosure() {
transformedTiles[c] = transformTile(context, tile, c);
}
var tile0 = transformedTiles[0];
var out = new Uint8Array(tile0.items.length * componentsCount);
var out = new Uint8ClampedArray(tile0.items.length * componentsCount);
var result = {
left: tile0.left,
top: tile0.top,