PDFlib

高度なPDFアプリケーションの開発を支援する定番プログラムライブラリー Supported by インフォテック株式会社

PDFlib サンプル集(クックブック)

本サンプルプログラムは、PDF 文書生成ライブラリーの実装である PDFlib の基本的な機能を実際のプログラムで紹介したものです。

本サイトでダウンロードした PDFlib は、一部機能の制限を除き、評価版として無償でお使いいただけます。

キャラクタ参照

PDFlib で、適切なフォントを使用してキャラクタ参照の実用性をデモするサンプルプログラムです。

「g.alt」という名前のグリフの文字を含むテキストを出力します。名前または数値によって参照される文字経由でユーログリフを出力します。

必要な製品:PDFlib または PDFlib+PDI または PPS


/*
 * Character references:
 * Demonstrate the use of name-based and numerical character references.
 *
 * Required software: PDFlib/PDFlib+PDI/PPS 9
 * Required data: font file
 */
package com.pdflib.cookbook.pdflib.fonts;

import com.pdflib.pdflib;
import com.pdflib.PDFlibException;

public class character_references
{
public static void main (String argv[])
    {
        /* This is where the data files are. Adjust as necessary. */
        String searchpath = "../input";
        String outfile = "character_references.pdf";
        String title = "Character References";

        pdflib p = null;
        int font;
        int x=20, y=220, width=300, height=300;
        int exitcode = 0;

        try {
            p = new pdflib();

            p.set_option("searchpath={" + searchpath + "}");

            /* This means we must check return values of load_font() etc. */
            p.set_option("errorpolicy=return");

            if (p.begin_document(outfile, "") == -1)
            throw new Exception("Error: " + p.get_errmsg());

            p.set_info("Creator", "PDFlib Cookbook");
            p.set_info("Title", title);

            /* Load the font "NotoSerif-Regular" with unicode encoding */
            font = p.load_font("NotoSerif-Regular", "unicode", "");
            if (font == -1)
                throw new Exception("Error: " + p.get_errmsg());

            /* Start page */
            p.begin_page_ext(width, height, "");

            p.fit_textline("Input", x, y, "font=" + font + " fontsize=16");
            p.fit_textline("Output", x+160, y, "font=" + font +
                " fontsize=20");

            /* Select a glyph via a character reference which refers to the glyph
             * name. Use the "charref" option to enable the character referencing
             * feature. We set charref=false to show the character reference
             * literally.
             */

            /* Output the Euro glyph via a character reference */
            p.fit_textline("500 €", x, y-=24, "font=" + font +
                " fontsize=16 charref=false");
            p.fit_textline("500 €", x+160, y, "font=" + font +
                " fontsize=16 charref=true");

            /* Output the Euro glyph via a numerical character reference */
            p.fit_textline("500 €", x, y-=24, "font=" + font +
                " fontsize=16 charref=false");
            p.fit_textline("500 €", x+160, y, "font=" + font +
                " fontsize=16 charref=true");
            
            /* Output the zcaron glyph via a glyph name reference */
            p.fit_textline("&.zcaron;", x, y-=24, "font=" + font +
                " fontsize=16 charref=false");
            p.fit_textline("&.zcaron;", x+160, y, "font=" + font +
                " fontsize=16 charref=true");
            
            /* Output the zcaron glyph via a numerical character reference */
            p.fit_textline("ž", x, y-=24, "font=" + font +
                " fontsize=16 charref=false");
            p.fit_textline("ž", x+160, y, "font=" + font +
                " fontsize=16 charref=true");            

            /* Finish page */
            p.end_page_ext("");

            p.end_document("");

        } catch (PDFlibException e) {
            System.err.println("PDFlib exception occurred:");
            System.err.println("[" + e.get_errnum() + "] " + e.get_apiname() +
                                ": " + e.get_errmsg());
            exitcode = 1;
        } catch (Exception e) {
            System.err.println(e);
            exitcode = 1;
        } finally {
            if (p != null) {
                p.delete();
            }
            System.exit(exitcode);
        }
    }
}
(Apr 3, 2007 - Oct 25, 2022)