org.freehep.graphicsio.FontConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of freehep-graphicsio Show documentation
Show all versions of freehep-graphicsio Show documentation
FreeHEP GraphicsIO Base Library
// Copyright 2003, FreeHEP.
package org.freehep.graphicsio;
/**
*
* @author Mark Donszelmann
* @version $Id: freehep-graphicsio/src/main/java/org/freehep/graphicsio/FontConstants.java 9d9f8caaff82 2007/01/09 18:20:50 duns $
*/
public class FontConstants {
private FontConstants() {
}
// Font Embedding
public static final String EMBED_FONTS = "EmbedFonts";
public static final String EMBED_FONTS_AS = "EmbedFontsAs";
public static final String EMBED_FONTS_TYPE1 = "Type1";
public static final String EMBED_FONTS_TYPE3 = "Type3";
public static final String TEXT_AS_SHAPES = "TEXT_AS_SHAPES";
public static final String[] getEmbedFontsAsList() {
return new String[] { EMBED_FONTS_TYPE1, EMBED_FONTS_TYPE3 };
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy