mirror of
https://github.com/lovell/sharp.git
synced 2025-07-09 10:30:15 +02:00
111 lines
3.1 KiB
JavaScript
111 lines
3.1 KiB
JavaScript
'use strict';
|
|
|
|
const assert = require('assert');
|
|
|
|
const sharp = require('../../index');
|
|
const fixtures = require('../fixtures');
|
|
|
|
const assertNormalized = function (data) {
|
|
let min = 255;
|
|
let max = 0;
|
|
for (let i = 0; i < data.length; i++) {
|
|
min = Math.min(min, data[i]);
|
|
max = Math.max(max, data[i]);
|
|
}
|
|
assert.strictEqual(0, min);
|
|
assert.strictEqual(255, max);
|
|
};
|
|
|
|
describe('Normalization', function () {
|
|
it('uses the same prototype for both spellings', function () {
|
|
assert.strictEqual(sharp.prototype.normalize, sharp.prototype.normalise);
|
|
});
|
|
|
|
it('spreads rgb image values between 0 and 255', function (done) {
|
|
sharp(fixtures.inputJpgWithLowContrast)
|
|
.normalize()
|
|
.raw()
|
|
.toBuffer(function (err, data, info) {
|
|
if (err) throw err;
|
|
assertNormalized(data);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('spreads grayscaled image values between 0 and 255', function (done) {
|
|
sharp(fixtures.inputJpgWithLowContrast)
|
|
.gamma()
|
|
.greyscale()
|
|
.normalize(true)
|
|
.raw()
|
|
.toBuffer(function (err, data, info) {
|
|
if (err) throw err;
|
|
assertNormalized(data);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('stretches greyscale images with alpha channel', function (done) {
|
|
sharp(fixtures.inputPngWithGreyAlpha)
|
|
.normalize()
|
|
.raw()
|
|
.toBuffer(function (err, data, info) {
|
|
if (err) throw err;
|
|
assertNormalized(data);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('keeps an existing alpha channel', function (done) {
|
|
sharp(fixtures.inputPngWithTransparency)
|
|
.normalize()
|
|
.toBuffer(function (err, data) {
|
|
if (err) throw err;
|
|
sharp(data).metadata(function (err, metadata) {
|
|
if (err) return done(err);
|
|
assert.strictEqual(4, metadata.channels);
|
|
assert.strictEqual(true, metadata.hasAlpha);
|
|
assert.strictEqual('srgb', metadata.space);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
it('keeps the alpha channel of greyscale images intact', function (done) {
|
|
sharp(fixtures.inputPngWithGreyAlpha)
|
|
.normalize()
|
|
.toBuffer(function (err, data) {
|
|
if (err) throw err;
|
|
sharp(data).metadata(function (err, metadata) {
|
|
if (err) return done(err);
|
|
assert.strictEqual(true, metadata.hasAlpha);
|
|
assert.strictEqual(4, metadata.channels);
|
|
assert.strictEqual('srgb', metadata.space);
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
it('does not alter images with only one color', function (done) {
|
|
const output = fixtures.path('output.unmodified-png-with-one-color.png');
|
|
sharp(fixtures.inputPngWithOneColor)
|
|
.normalize()
|
|
.toFile(output, function (err, info) {
|
|
if (err) done(err);
|
|
fixtures.assertMaxColourDistance(output, fixtures.inputPngWithOneColor, 0);
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('works with 16-bit RGBA images', function (done) {
|
|
sharp(fixtures.inputPngWithTransparency16bit)
|
|
.normalize()
|
|
.raw()
|
|
.toBuffer(function (err, data, info) {
|
|
if (err) throw err;
|
|
assertNormalized(data);
|
|
done();
|
|
});
|
|
});
|
|
});
|