001: /*
002: * Copyright 2004 by Takenori.
003: *
004: * The contents of this file are subject to the Mozilla Public License Version 1.1
005: * (the "License"); you may not use this file except in compliance with the License.
006: * You may obtain a copy of the License at http://www.mozilla.org/MPL/
007: *
008: * Software distributed under the License is distributed on an "AS IS" basis,
009: * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
010: * for the specific language governing rights and limitations under the License.
011: *
012: * The Original Code is 'iText, a free JAVA-PDF library'.
013: *
014: * The Initial Developer of the Original Code is Bruno Lowagie. Portions created by
015: * the Initial Developer are Copyright (C) 1999, 2000, 2001, 2002 by Bruno Lowagie.
016: * All Rights Reserved.
017: * Co-Developer of the code is Paulo Soares. Portions created by the Co-Developer
018: * are Copyright (C) 2000, 2001, 2002 by Paulo Soares. All Rights Reserved.
019: *
020: * Contributor(s): all the names of the contributors are added in the source code
021: * where applicable.
022: *
023: * Alternatively, the contents of this file may be used under the terms of the
024: * LGPL license (the "GNU LIBRARY GENERAL PUBLIC LICENSE"), in which case the
025: * provisions of LGPL are applicable instead of those above. If you wish to
026: * allow use of your version of this file only under the terms of the LGPL
027: * License and not to allow others to use your version of this file under
028: * the MPL, indicate your decision by deleting the provisions above and
029: * replace them with the notice and other provisions required by the LGPL.
030: * If you do not delete the provisions above, a recipient may use your version
031: * of this file under either the MPL or the GNU LIBRARY GENERAL PUBLIC LICENSE.
032: *
033: * This library is free software; you can redistribute it and/or modify it
034: * under the terms of the MPL as stated above or under the terms of the GNU
035: * Library General Public License as published by the Free Software Foundation;
036: * either version 2 of the License, or any later version.
037: *
038: * This library is distributed in the hope that it will be useful, but WITHOUT
039: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
040: * FOR A PARTICULAR PURPOSE. See the GNU Library general Public License for more
041: * details.
042: *
043: * If you didn't download this code from the following link, you should check if
044: * you aren't using an obsolete version:
045: * http://www.lowagie.com/iText/
046: */
047: package com.lowagie.text.pdf;
048:
049: import java.awt.Font;
050:
051: public class AsianFontMapper extends DefaultFontMapper {
052:
053: public static final String ChineseSimplifiedFont = "STSong-Light";
054: public static final String ChineseSimplifiedEncoding_H = "UniGB-UCS2-H";
055: public static final String ChineseSimplifiedEncoding_V = "UniGB-UCS2-V";
056:
057: public static final String ChineseTraditionalFont_MHei = "MHei-Medium";
058: public static final String ChineseTraditionalFont_MSung = "MSung-Light";
059: public static final String ChineseTraditionalEncoding_H = "UniCNS-UCS2-H";
060: public static final String ChineseTraditionalEncoding_V = "UniCNS-UCS2-V";
061:
062: public static final String JapaneseFont_Go = "HeiseiKakuGo-W5";
063: public static final String JapaneseFont_Min = "HeiseiMin-W3";
064: public static final String JapaneseEncoding_H = "UniJIS-UCS2-H";
065: public static final String JapaneseEncoding_V = "UniJIS-UCS2-V";
066: public static final String JapaneseEncoding_HW_H = "UniJIS-UCS2-HW-H";
067: public static final String JapaneseEncoding_HW_V = "UniJIS-UCS2-HW-V";
068:
069: public static final String KoreanFont_GoThic = "HYGoThic-Medium";
070: public static final String KoreanFont_SMyeongJo = "HYSMyeongJo-Medium";
071: public static final String KoreanEncoding_H = "UniKS-UCS2-H";
072: public static final String KoreanEncoding_V = "UniKS-UCS2-V";
073:
074: private final String defaultFont;
075: private final String encoding;
076:
077: public AsianFontMapper(String font, String encoding) {
078: super ();
079:
080: this .defaultFont = font;
081: this .encoding = encoding;
082: }
083:
084: public BaseFont awtToPdf(Font font) {
085: try {
086: BaseFontParameters p = getBaseFontParameters(font
087: .getFontName());
088: if (p != null) {
089: return BaseFont.createFont(p.fontName, p.encoding,
090: p.embedded, p.cached, p.ttfAfm, p.pfb);
091: } else {
092: return BaseFont.createFont(defaultFont, encoding, true);
093: }
094: } catch (Exception e) {
095: e.printStackTrace();
096: }
097: return null;
098:
099: }
100:
101: }
|