Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the function to embed images ICC profile #1437

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 20 additions & 0 deletions examples/embedicc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
const PDFDocument=require('..');
const fs=require('fs');
// Create a new PDFDocument
let doc = new PDFDocument();
doc.pipe(fs.createWriteStream('embedicc.pdf'));
// Set some meta data
doc.info['Title'] = 'Test Document';
doc.info['Author'] = 'xiaohui';
doc
.text('noICC', 40, 50)
.image('images/landscape.jpg', 40, 70, {
width: 200,
height: 267
})
.text('embedICC', 280, 50)
.image('images/landscape+icc.jpg', 280, 70, {
width: 200,
height: 267
});
doc.end();
Binary file added examples/embedicc.pdf
Binary file not shown.
Binary file added examples/images/landscape+icc.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added examples/images/landscape.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
187 changes: 187 additions & 0 deletions lib/image/icc_profile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,187 @@
import zlib from 'zlib';
class ICCProfile {
static extractFromJPEG(jpeg) {
let pos = 2;
const buffers = [];
while (pos < jpeg.length) {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Testing this gives me an error, because const marker = jpeg.readUInt16BE(pos); only takes a max offset of length - 2 https://www.geeksforgeeks.org/node-js-buffer-readuint16be-method/.

If I change this to while (pos < jpeg.length - 4) {, it finishes sucessfully.

const marker = jpeg.readUInt16BE(pos);
const length = jpeg.readUInt16BE(pos + 2);
if (marker === 0xFFE2) {
const signature = jpeg.toString('ascii', pos + 4, pos + 18);
if (signature.startsWith('ICC_PROFILE')) {
const data = jpeg.slice(pos + 18, pos + length + 2);
buffers.push(data);
}
}
pos += length + 2;
}
if (buffers.length == 0) return;
return Buffer.concat(buffers);
}

static extractFromPNG(png) {
const pos = png.indexOf('iCCP');
if (pos === -1) {
console.log('No iCCP chunk found');
return;
}
const length = png.readUInt32BE(pos - 4);
const data = png.slice(pos + 8, pos + length + 8);
const nullPos = data.indexOf('\x00');
const buffer = zlib.inflateSync(data.slice(nullPos + 2), { windowBits: 15 });
return buffer;
}

constructor(buffer) {
this.buffer = buffer;
this.data = this._parse();
}

_parse() {
const versionMap = {
0x02000000: '2.0',
0x02100000: '2.1',
0x02400000: '2.4',
0x04000000: '4.0',
0x04200000: '4.2',
0x04300000: '4.3'
};
const intentMap = {
0: 'Perceptual',
1: 'Relative',
2: 'Saturation',
3: 'Absolute'
};
const valueMap = {
// Device
scnr: 'Scanner',
mntr: 'Monitor',
prtr: 'Printer',
link: 'Link',
abst: 'Abstract',
spac: 'Space',
nmcl: 'Named color',
// Platform
appl: 'Apple',
adbe: 'Adobe',
msft: 'Microsoft',
sunw: 'Sun Microsystems',
sgi: 'Silicon Graphics',
tgnt: 'Taligent'
};
const tagMap = {
desc: 'description',
cprt: 'copyright',
dmdd: 'deviceModelDescription',
vued: 'viewingConditionsDescription'
};
const getContentAtOffsetAsString = (buffer, offset) => {
const value = buffer.slice(offset, offset + 4).toString().trim();
return (value.toLowerCase() in valueMap) ? valueMap[value.toLowerCase()] : value;
};
const hasContentAtOffset = (buffer, offset) => buffer.readUInt32BE(offset) !== 0;
const readStringUTF16BE = (buffer, start, end) => {
const data = buffer.slice(start, end);
let value = '';
for (let i = 0; i < data.length; i += 2) {
value += String.fromCharCode((data[i] * 256) + data[i + 1]);
}
return value;
};
const invalid = (reason) => new Error(`Invalid ICC profile: ${reason}`);
const parse = (buffer) => {
// Verify expected length
const size = buffer.readUInt32BE(0);
if (size !== buffer.length) {
throw invalid('length mismatch');
}
// Verify 'acsp' signature
const signature = buffer.slice(36, 40).toString();
if (signature !== 'acsp') {
throw invalid('missing signature');
}
// Integer attributes
const profile = {
version: versionMap[buffer.readUInt32BE(8)],
intent: intentMap[buffer.readUInt32BE(64)]
};
// Four-byte string attributes
[
[4, 'cmm'],
[12, 'deviceClass'],
[16, 'colorSpace'],
[20, 'connectionSpace'],
[40, 'platform'],
[48, 'manufacturer'],
[52, 'model'],
[80, 'creator']
].forEach(attr => {
if (hasContentAtOffset(buffer, attr[0])) {
profile[attr[1]] = getContentAtOffsetAsString(buffer, attr[0]);
}
});
// Tags
const tagCount = buffer.readUInt32BE(128);
let tagHeaderOffset = 132;
for (let i = 0; i < tagCount; i++) {
const tagSignature = getContentAtOffsetAsString(buffer, tagHeaderOffset);
if (tagSignature in tagMap) {
const tagOffset = buffer.readUInt32BE(tagHeaderOffset + 4);
const tagSize = buffer.readUInt32BE(tagHeaderOffset + 8);
if (tagOffset > buffer.length) {
throw invalid('tag offset out of bounds');
}
const tagType = getContentAtOffsetAsString(buffer, tagOffset);
// desc
if (tagType === 'desc') {
const tagValueSize = buffer.readUInt32BE(tagOffset + 8);
if (tagValueSize > tagSize) {
throw invalid(`description tag value size out of bounds for ${tagSignature}`);
}
profile[tagMap[tagSignature]] = buffer.slice(tagOffset + 12, tagOffset + tagValueSize + 11).toString();
}
// text
if (tagType === 'text') {
profile[tagMap[tagSignature]] = buffer.slice(tagOffset + 8, tagOffset + tagSize - 7).toString();
}
if (tagType === 'mluc' && tagSignature in tagMap) {
// 4 bytes signature, 4 bytes reserved (must be 0), 4 bytes number of names, 4 bytes name record size (must be 12)
const numberOfNames = buffer.readUInt32BE(tagOffset + 8);
const nameRecordSize = buffer.readUInt32BE(tagOffset + 12);
if (nameRecordSize !== 12) {
throw invalid(`mluc name record size must be 12 for tag ${tagSignature}`);
}
if (numberOfNames > 0) {
// Entry: 2 bytes language code, 2 bytes country code, 4 bytes length, 4 bytes offset from start of tag
// const languageCode = buffer.slice(tagOffset + 16, tagOffset + 18).toString();
// const countryCode = buffer.slice(tagOffset + 18, tagOffset + 20).toString();
const nameLength = buffer.readUInt32BE(tagOffset + 20);
const nameOffset = buffer.readUInt32BE(tagOffset + 24);
const nameStart = tagOffset + nameOffset;
const nameStop = nameStart + nameLength;
profile[tagMap[tagSignature]] = readStringUTF16BE(buffer, nameStart, nameStop);
}
}
}
tagHeaderOffset = tagHeaderOffset + 12;
}
return profile;
};
return parse(this.buffer);
}

embed(document, alternate, channels) {
if(!this.data)return alternate;
const profile=document.ref({
Alternate: alternate,
N: channels,
Length: this.buffer.length
})
profile.write(this.buffer);
profile.end();
const colorSpace = document.ref([`ICCBased ${profile}`]);
colorSpace.end();
return colorSpace;
}
}
export default ICCProfile;
21 changes: 14 additions & 7 deletions lib/image/jpeg.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import ICCProfile from './icc_profile'
const MARKERS = [
0xffc0,
0xffc1,
Expand Down Expand Up @@ -53,24 +54,31 @@ class JPEG {
this.width = this.data.readUInt16BE(pos);
pos += 2;

const channels = this.data[pos++];
this.colorSpace = COLOR_SPACE_MAP[channels];
this.channels = this.data[pos++];
this.colorSpace = COLOR_SPACE_MAP[this.channels]

this.obj = null;
}

embed(document) {
embed(document, {embedICCProfile=true}={}) {
if (this.obj) {
return;
}

let colorSpace=this.colorSpace;
if(embedICCProfile){
let iccProfile = ICCProfile.extractFromJPEG(this.data);
if(iccProfile){
iccProfile = new ICCProfile(iccProfile);
colorSpace = iccProfile.embed(document, colorSpace, this.channels);
}
}
this.obj = document.ref({
Type: 'XObject',
Subtype: 'Image',
BitsPerComponent: this.bits,
Width: this.width,
Height: this.height,
ColorSpace: this.colorSpace,
ColorSpace: colorSpace,
Filter: 'DCTDecode'
});

Expand All @@ -82,10 +90,9 @@ class JPEG {
}

this.obj.end(this.data);

// free memory
return (this.data = null);
}
}

export default JPEG;
export default JPEG;
15 changes: 12 additions & 3 deletions lib/image/png.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
import zlib from 'zlib';
import PNG from 'png-js';

import ICCProfile from './icc_profile'
class PNGImage {
constructor(data, label) {
this.label = label;
this.data = data;
this.image = new PNG(data);
this.width = this.image.width;
this.height = this.image.height;
this.imgData = this.image.imgData;
this.obj = null;
}

embed(document) {
embed(document, {embedICCProfile=true}={}) {
let dataDecoded = false;

this.document = document;
Expand Down Expand Up @@ -44,7 +45,15 @@ class PNGImage {
}

if (this.image.palette.length === 0) {
this.obj.data['ColorSpace'] = this.image.colorSpace;
let colorSpace = this.image.colorSpace;
if(embedICCProfile){
let iccProfile = ICCProfile.extractFromPNG(this.data);
if(iccProfile){
iccProfile = new ICCProfile(iccProfile);
colorSpace = iccProfile.embed(document, colorSpace, this.image.colors);
}
}
this.obj.data['ColorSpace']=colorSpace;
} else {
// embed the color palette in the PDF as an object stream
const palette = this.document.ref();
Expand Down
2 changes: 1 addition & 1 deletion lib/mixins/images.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default {
}

if (!image.obj) {
image.embed(this);
image.embed(this, options);
}

if (this.page.xobjects[image.label] == null) {
Expand Down
Binary file added tests/images/landscape+icc.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests/images/landscape+icc.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests/images/landscape+micc.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.