de.erichseifert.vectorgraphics2d.pdf.Resources Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of VectorGraphics2D Show documentation
Show all versions of VectorGraphics2D Show documentation
A library for adding vector export to Java(R) Graphics2D.
The newest version!
/*
* VectorGraphics2D: Vector export for Java(R) Graphics2D
*
* (C) Copyright 2010-2017 Erich Seifert ,
* Michael Seifert
*
* This file is part of VectorGraphics2D.
*
* VectorGraphics2D is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* VectorGraphics2D 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with VectorGraphics2D. If not, see .
*/
package de.erichseifert.vectorgraphics2d.pdf;
import java.awt.Font;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.concurrent.atomic.AtomicInteger;
import de.erichseifert.vectorgraphics2d.util.DataUtils;
import de.erichseifert.vectorgraphics2d.util.GraphicsUtils;
class Resources extends DefaultPDFObject {
private static final String KEY_TRANSPARENCY = "ExtGState";
private static final String KEY_IMAGE = "XObject";
private static final String[] VALUE_PROC_SET = {"PDF", "Text", "ImageB", "ImageC", "ImageI"};
private static final String PREFIX_FONT = "Fnt";
private static final String PREFIX_IMAGE = "Img";
private static final String PREFIX_TRANSPARENCY = "Trp";
private final List procSet;
private final Map fontsByFontId;
private final Map fontIDsByFont;
private final Map images;
private final Map transparencies;
private final AtomicInteger currentFontId = new AtomicInteger();
private final AtomicInteger currentImageId = new AtomicInteger();
private final AtomicInteger currentTransparencyId = new AtomicInteger();
public Resources() {
super(null, null, false);
procSet = new LinkedList<>();
fontsByFontId = new HashMap<>();
fontIDsByFont = new HashMap<>();
images = new HashMap<>();
transparencies = new HashMap<>();
setProcSet(VALUE_PROC_SET);
}
private String getResourceId(Map resources, T resource,
String idPrefix, AtomicInteger idCounter) {
String id = resources.get(resource);
if (id == null) {
id = String.format("%s%d", idPrefix, idCounter.getAndIncrement());
resources.put(resource, id);
}
return id;
}
public String getId(Font font) {
font = GraphicsUtils.getPhysicalFont(font);
String resourceId = getResourceId(fontIDsByFont, font, PREFIX_FONT, currentFontId);
String baseFontName = font.getPSName();
// TODO: Determine font encoding (e.g. MacRomanEncoding, MacExpertEncoding, WinAnsiEncoding)
String fontEncoding = "WinAnsiEncoding";
TrueTypeFont pdfFont = new TrueTypeFont(fontEncoding, baseFontName);
fontsByFontId.put(resourceId, pdfFont);
return resourceId;
}
public String getId(PDFObject image) {
// Make sure a dictionary entry for images exists
Map dictEntry =
(Map) dict.get(KEY_IMAGE);
if (dictEntry == null) {
dictEntry = new LinkedHashMap<>();
dict.put(KEY_IMAGE, dictEntry);
}
String resourceId = getResourceId(images, image, PREFIX_IMAGE, currentImageId);
dictEntry.put(resourceId, image);
return resourceId;
}
public String getId(Double transparency) {
// Make sure a dictionary entry for transparency levels exists
Map> dictEntry =
(Map>) dict.get(KEY_TRANSPARENCY);
if (dictEntry == null) {
dictEntry = new LinkedHashMap<>();
dict.put(KEY_TRANSPARENCY, dictEntry);
}
String resourceId = getResourceId(transparencies, transparency,
PREFIX_TRANSPARENCY, currentTransparencyId);
dictEntry.put(resourceId, DataUtils.map(
new String[] {"Type", "ca", "CA"},
new Object[] {"ExtGState", transparency, transparency}
));
return resourceId;
}
public void setProcSet(String... procedureNames) {
procSet.clear();
procSet.addAll(Arrays.asList(procedureNames));
}
public List getProcSet() {
return Collections.unmodifiableList(procSet);
}
public Map getFont() {
return Collections.unmodifiableMap(fontsByFontId);
}
}