org.jpedal.fonts.tt.Name Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of OpenViewerFX Show documentation
Show all versions of OpenViewerFX Show documentation
An Open Source JavaFX PDF Viewer
/*
* ===========================================
* Java Pdf Extraction Decoding Access Library
* ===========================================
*
* Project Info: http://www.idrsolutions.com
* Help section for developers at http://www.idrsolutions.com/support/
*
* (C) Copyright 1997-2015 IDRsolutions and Contributors.
*
* This file is part of JPedal/JPDF2HTML5
*
This library 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 2.1 of the License, or (at your option) any later version.
This library 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 this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* ---------------
* Name.java
* ---------------
*/
package org.jpedal.fonts.tt;
import java.util.Collections;
import java.util.Map;
import java.util.HashMap;
/**
* font strings partially implemented - full spec is at http://www.microsoft.com/OpenType/OTSpec/name.htm
*/
@SuppressWarnings("UnusedDeclaration")
public class Name extends Table {
/**max number of glyphs*/
private int encoding;
private final Map strings=new HashMap();
public static final Integer COPYRIGHT_NOTICE= 0;
public static final Integer FONT_FAMILY_NAME= 1;
public static final Integer FONT_SUBFAMILY_NAME= 2;
public static final Integer UNIQUE_FONT_IDENTIFIER= 3;
public static final Integer FULL_FONT_NAME= 4;
public static final Integer VERSION_STRING= 5;
public static final Integer POSTSCRIPT_NAME= 6;
public static final Integer TRADEMARK= 7;
public static final Integer MANUFACTURER= 8;
public static final Integer DESIGNER= 9;
public static final Integer DESCRIPTION= 10;
public static final Integer VENDOR_URL= 11;
public static final Integer DESIGNER_URL= 12;
public static final Integer LICENSE= 13;
public static final Integer LICENSE_URL= 14;
public static final Integer PREFERRED_FAMILY= 16;
public static final Integer PREFERRED_SUBFAMILY= 17;
public static final Integer COMPATIBLE= 18;
public static final Integer SAMPLE_TEXT= 19;
/**list of Integer values in same order as keys*/
public static final String[] stringNames={"COPYRIGHT_NOTICE","FONT_FAMILY_NAME","FONT_SUBFAMILY_NAME",
"UNIQUE_FONT_IDENTIFIER","FULL_FONT_NAME","VERSION_STRING","POSTSCRIPT_NAME",
"TRADEMARK","MANUFACTURER","DESIGNER","DESCRIPTION","VENDOR_URL",
"DESIGNER_URL","LICENSE","LICENSE_URL","PREFERRED_FAMILY",
"PREFERRED_SUBFAMILY","COMPATIBLE","SAMPLE_TEXT"};
public Name(final FontFile2 currentFontFile){
//LogWriter.writeMethod("{readMapxTable}", 0);
//move to start and check exists
final int startPointer=currentFontFile.selectTable(FontFile2.NAME);
//read 'head' table
if(startPointer!=0){
//read global details
currentFontFile.getNextUint16();//format
final int count=currentFontFile.getNextUint16();
final int offset=currentFontFile.getNextUint16();
/**
* read strings
*/
for(int i=0;i