没有用过!
只能建议你使用Google ;)
http://www.vckbase.com/document/viewdoc/?id=1527
希望对你有帮助!

解决方案 »

  1.   

    你是不是没有include 或者requireonce
      

  2.   

    用editplus把文件拷进去 另存 选择UTF-8的文件格式....
      

  3.   

    ooooooo!!!
    这着管用么?不好意思,刚接触,就碰到这个棘手的难题.
    我应该把什么文件烤进去,可以指点一下?
      

  4.   

    <?php
    /* $Id: hello.php,v 1.5 2004/05/24 16:35:44 rjs Exp $
     *
     * PDFlib client: hello example in PHP
     */try {
        $p = new PDFlib();    /*  open new PDF file; insert a file name to create the PDF on disk */
        if ($p->begin_document("", "") == 0) {
    die("Error: " . $p->get_errmsg());
        }    /* This line is required to avoid problems on Japanese systems */
        $p->set_parameter("hypertextencoding", "winansi");    $p->set_info("Creator", "hello.php");
        $p->set_info("Author", "Rainer Schaaf");
        $p->set_info("Title", "Hello world (PHP)!");    $p->begin_page_ext(595, 842, "");    $font = $p->load_font("STSong-Light", "winansi", "");    $p->setfont($font, 24.0);
        $p->set_text_pos(50, 700);
        $p->show("Hello 中文!");
        $p->continue_text("(says PHP)");
        $p->end_page_ext("");    $p->end_document("");    $buf = $p->get_buffer();
        $len = strlen($buf);    header("Content-type: application/pdf");
        header("Content-Length: $len");
        header("Content-Disposition: inline; filename=hello.pdf");
        print $buf;}
    catch (PDFlibException $e) {
        die("PDFlib exception occurred in hello sample:\n" .
    "[" . $e->get_errnum() . "] " . $e->get_apiname() . ": " .
    $e->get_errmsg() . "\n");
    }
    catch (Exception $e) {
        die($e);
    }$p = 0;
    ?>
    这是完全的程序,请问utf8_encode应该加载在哪里
      

  5.   

    你没安装字体库吧?想在gd,pdf等等函数里,使用中文,必须得有字体库,或转成unicode才行的
    -----------------------------
    做个小广告,哈
    比ie还要方便的收藏夹,仅需点两下鼠标
    而且还能彻底解决重装系统或公共场合上网的问题
    下载地址:华军软件园  http://www.onlinedown.net/soft/42309.htm
    帮助文件:
    http://www.itxinxi.com/help.shtml如果本消息打扰了您,十分抱歉
      

  6.   

    er ... 字体库   unicode