org.apache.pdfbox.debugger.fontencodingpane.SimpleFont Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdfbox-debugger Show documentation
Show all versions of pdfbox-debugger Show documentation
The Apache PDFBox library is an open source Java tool for working with PDF documents.
This artefact contains the PDFDebugger.
The newest version!
/*
* Copyright 2015 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.pdfbox.debugger.fontencodingpane;
import java.awt.geom.GeneralPath;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.Map;
import javax.swing.JPanel;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.pdfbox.pdmodel.font.PDSimpleFont;
import org.apache.pdfbox.pdmodel.font.PDVectorFont;
/**
* @author Khyrul Bashar
* A class that shows the glyph table along with unicode characters for SimpleFont.
*/
class SimpleFont extends FontPane
{
private static final Log LOG = LogFactory.getLog(SimpleFont.class);
public static final String NO_GLYPH = "None";
private final FontEncodingView view;
private int totalAvailableGlyph = 0;
/**
* Constructor.
* @param font PDSimpleFont instance, but not a type 3 font (must also be a PDVectorFont).
* @throws IOException If fails to parse unicode characters.
*/
SimpleFont(PDSimpleFont font) throws IOException
{
Object[][] tableData = getGlyphs(font);
double[] yBounds = getYBounds(tableData, 3);
Map attributes = new LinkedHashMap<>();
attributes.put("Font", font.getName());
attributes.put("Encoding", getEncodingName(font));
attributes.put("Glyphs", Integer.toString(totalAvailableGlyph));
attributes.put("Standard 14", Boolean.toString(font.isStandard14()));
attributes.put("Embedded", Boolean.toString(font.isEmbedded()));
view = new FontEncodingView(tableData, attributes,
new String[] {"Code", "Glyph Name", "Unicode Character", "Glyph"}, yBounds);
}
private Object[][] getGlyphs(PDSimpleFont font) throws IOException
{
Object[][] glyphs = new Object[256][4];
for (int index = 0; index <= 255; index++)
{
glyphs[index][0] = index;
String unicode = font.toUnicode(index);
if (unicode == null)
{
// this mirrors the workaround for PDSimpleFont in LegacyPDFStreamEngine
unicode = String.valueOf((char) index);
}
if (font.getEncoding().contains(index) || unicode != null)
{
String glyphName = font.getEncoding().getName(index);
glyphs[index][1] = glyphName;
glyphs[index][2] = unicode;
try
{
// using names didn't work with the file from PDFBOX-3445
glyphs[index][3] = ((PDVectorFont) font).getPath(index);
}
catch (IOException ex)
{
LOG.error("Couldn't render code " + index + " ('" + glyphName + "') of font " +
font.getName(), ex);
glyphs[index][3] = new GeneralPath();
}
totalAvailableGlyph++;
}
else
{
glyphs[index][1] = NO_GLYPH;
glyphs[index][2] = NO_GLYPH;
glyphs[index][3] = font.getPath(".notdef");
}
}
return glyphs;
}
private String getEncodingName(PDSimpleFont font)
{
return font.getEncoding().getClass().getSimpleName() + " / " + font.getEncoding().getEncodingName();
}
@Override
public JPanel getPanel()
{
return view.getPanel();
}
}