Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
This file is part of the iText (R) project.
Copyright (c) 1998-2023 iText Group NV
Authors: iText Software.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License version 3
as published by the Free Software Foundation with the addition of the
following permission added to Section 15 as permitted in Section 7(a):
FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
OF THIRD PARTY RIGHTS
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program; if not, see http://www.gnu.org/licenses or write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA, 02110-1301 USA, or download the license from the following URL:
http://itextpdf.com/terms-of-use/
The interactive user interfaces in modified source and object code versions
of this program must display Appropriate Legal Notices, as required under
Section 5 of the GNU Affero General Public License.
In accordance with Section 7(b) of the GNU Affero General Public License,
a covered work must retain the producer line in every PDF that is created
or manipulated using iText.
You can be released from the requirements of the license by purchasing
a commercial license. Buying such a license is mandatory as soon as you
develop commercial activities involving the iText software without
disclosing the source code of your own applications.
These activities include: offering paid services to customers as an ASP,
serving PDFs on the fly in a web application, shipping iText with a closed
source product.
For more information, please contact iText Software Corp. at this
address: [email protected]
*/
package com.itextpdf.kernel.pdf;
import com.itextpdf.io.font.PdfEncodings;
import com.itextpdf.kernel.xmp.PdfConst;
import com.itextpdf.kernel.xmp.XMPConst;
import com.itextpdf.kernel.xmp.XMPException;
import com.itextpdf.kernel.xmp.XMPMeta;
import com.itextpdf.kernel.xmp.XMPMetaFactory;
import com.itextpdf.kernel.xmp.options.PropertyOptions;
import com.itextpdf.kernel.xmp.properties.XMPProperty;
class XmpMetaInfoConverter {
private XmpMetaInfoConverter() {
}
static void appendMetadataToInfo(byte[] xmpMetadata, PdfDocumentInfo info) {
if (xmpMetadata != null) {
try {
XMPMeta meta = XMPMetaFactory.parseFromBuffer(xmpMetadata);
XMPProperty title = meta.getLocalizedText(XMPConst.NS_DC, PdfConst.Title, XMPConst.X_DEFAULT, XMPConst.X_DEFAULT);
if (title != null) {
info.setTitle(title.getValue());
}
String author = fetchArrayIntoString(meta, XMPConst.NS_DC, PdfConst.Creator);
if (author != null) {
info.setAuthor(author);
}
// We assume that pdf:keywords has precedence over dc:subject
XMPProperty keywords = meta.getProperty(XMPConst.NS_PDF, PdfConst.Keywords);
if (keywords != null) {
info.setKeywords(keywords.getValue());
} else {
String keywordsStr = fetchArrayIntoString(meta, XMPConst.NS_DC, PdfConst.Subject);
if (keywordsStr != null) {
info.setKeywords(keywordsStr);
}
}
XMPProperty subject = meta.getLocalizedText(XMPConst.NS_DC, PdfConst.Description, XMPConst.X_DEFAULT, XMPConst.X_DEFAULT);
if (subject != null) {
info.setSubject(subject.getValue());
}
XMPProperty creator = meta.getProperty(XMPConst.NS_XMP, PdfConst.CreatorTool);
if (creator != null) {
info.setCreator(creator.getValue());
}
XMPProperty producer = meta.getProperty(XMPConst.NS_PDF, PdfConst.Producer);
if (producer != null) {
info.put(PdfName.Producer, new PdfString(producer.getValue(), PdfEncodings.UNICODE_BIG));
}
XMPProperty trapped = meta.getProperty(XMPConst.NS_PDF, PdfConst.Trapped);
if (trapped != null) {
info.setTrapped(new PdfName(trapped.getValue()));
}
} catch (XMPException ignored) {
}
}
}
static void appendDocumentInfoToMetadata(PdfDocumentInfo info, XMPMeta xmpMeta) throws XMPException {
PdfDictionary docInfo = info.getPdfObject();
if (docInfo != null) {
PdfName key;
PdfObject obj;
String value;
for (PdfName pdfName : docInfo.keySet()) {
key = pdfName;
obj = docInfo.get(key);
if (obj == null)
continue;
if (obj.isString()) {
value = ((PdfString) obj).toUnicodeString();
} else if (obj.isName()) {
value = ((PdfName)obj).getValue();
} else {
continue;
}
if (PdfName.Title.equals(key)) {
xmpMeta.setLocalizedText(XMPConst.NS_DC, PdfConst.Title, XMPConst.X_DEFAULT, XMPConst.X_DEFAULT, value);
} else if (PdfName.Author.equals(key)) {
for (String v : value.split(",|;")) {
if (v.trim().length() > 0) {
appendArrayItemIfDoesNotExist(xmpMeta, XMPConst.NS_DC, PdfConst.Creator, v.trim(), PropertyOptions.ARRAY_ORDERED);
}
}
} else if (PdfName.Subject.equals(key)) {
xmpMeta.setLocalizedText(XMPConst.NS_DC, PdfConst.Description, XMPConst.X_DEFAULT, XMPConst.X_DEFAULT, value);
} else if (PdfName.Keywords.equals(key)) {
for (String v : value.split(",|;")) {
if (v.trim().length() > 0) {
appendArrayItemIfDoesNotExist(xmpMeta, XMPConst.NS_DC, PdfConst.Subject, v.trim(), PropertyOptions.ARRAY);
}
}
xmpMeta.setProperty(XMPConst.NS_PDF, PdfConst.Keywords, value);
} else if (PdfName.Creator.equals(key)) {
xmpMeta.setProperty(XMPConst.NS_XMP, PdfConst.CreatorTool, value);
} else if (PdfName.Producer.equals(key)) {
xmpMeta.setProperty(XMPConst.NS_PDF, PdfConst.Producer, value);
} else if (PdfName.CreationDate.equals(key)) {
xmpMeta.setProperty(XMPConst.NS_XMP, PdfConst.CreateDate, PdfDate.getW3CDate(value));
} else if (PdfName.ModDate.equals(key)) {
xmpMeta.setProperty(XMPConst.NS_XMP, PdfConst.ModifyDate, PdfDate.getW3CDate(value));
} else if (PdfName.Trapped.equals(key)) {
xmpMeta.setProperty(XMPConst.NS_PDF, PdfConst.Trapped, value);
}
}
}
}
private static void appendArrayItemIfDoesNotExist(XMPMeta meta, String ns, String arrayName, String value, int arrayOption) throws XMPException {
int currentCnt = meta.countArrayItems(ns, arrayName);
for (int i = 0; i < currentCnt; i++) {
XMPProperty item = meta.getArrayItem(ns, arrayName, i + 1);
if (value.equals(item.getValue())) {
return;
}
}
meta.appendArrayItem(ns, arrayName, new PropertyOptions(arrayOption), value, null);
}
private static String fetchArrayIntoString(XMPMeta meta, String ns, String arrayName) throws XMPException {
int keywordsCnt = meta.countArrayItems(ns, arrayName);
StringBuilder sb = null;
for (int i = 0; i < keywordsCnt; i++) {
XMPProperty curKeyword = meta.getArrayItem(ns, arrayName, i + 1);
if (sb == null) {
sb = new StringBuilder();
} else if (sb.length() > 0) {
sb.append("; ");
}
sb.append(curKeyword.getValue());
}
return sb != null ? sb.toString() : null;
}
}