<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>lllnorikolll@online &#187; ZendFramework</title>
	<atom:link href="http://blog.lllnorikolll.com/archives/tag/zendframework/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.lllnorikolll.com</link>
	<description>オンライン - WEBアプリケーション開発関連のメモなど</description>
	<lastBuildDate>Sat, 15 Oct 2011 05:08:36 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>ZendFrameworkのZend_Pdfで日本語フォントを使う</title>
		<link>http://blog.lllnorikolll.com/archives/65</link>
		<comments>http://blog.lllnorikolll.com/archives/65#comments</comments>
		<pubDate>Tue, 05 Aug 2008 04:38:35 +0000</pubDate>
		<dc:creator>lllnorikolll</dc:creator>
				<category><![CDATA[ZendFramework]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.lllnorikolll.com/?p=65</guid>
		<description><![CDATA[ZendFrameworkのZend_Pdf（http://framework.zend.com/manual/ja/zend.pdf.html） を、試してみました。 ところが、日本語が表示されない。 こちらのサイト→ [...]]]></description>
			<content:encoded><![CDATA[<p>ZendFrameworkのZend_Pdf（<a href="http://framework.zend.com/manual/ja/zend.pdf.html" target="_blank">http://framework.zend.com/manual/ja/zend.pdf.html</a>）</p>
<p>を、試してみました。<br />
ところが、日本語が表示されない。</p>
<p>こちらのサイト→（<a href="http://eringi.com/weblog/archives/2008/03/zend_pdf.html" target="_blank">Zend_Pdf で日本語が使えるようになってた</a>）<br />
を教えてもらって、ここに書いているようにフォントファイルをダウンロードして配置したら、ちゃんと日本語が使えました！</p>
<p>2008/08/05現在、ZendFrameworkのZend_Pdfで利用できるデフォルトのフォント指定は、下記のもののみでした。</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">    <span style="color: #000000; font-weight: bold;">const</span> FONT_COURIER <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Courier'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">const</span> FONT_COURIER_BOLD <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Courier-Bold'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">const</span> FONT_COURIER_OBLIQUE <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Courier-Oblique'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">const</span> FONT_COURIER_ITALIC <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Courier-Oblique'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">const</span> FONT_COURIER_BOLD_OBLIQUE <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Courier-BoldOblique'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">const</span> FONT_COURIER_BOLD_ITALIC <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Courier-BoldOblique'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">const</span> FONT_HELVETICA <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Helvetica'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">const</span> FONT_HELVETICA_BOLD <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Helvetica-Bold'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">const</span> FONT_HELVETICA_OBLIQUE <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Helvetica-Oblique'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">const</span> FONT_HELVETICA_ITALIC <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Helvetica-Oblique'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">const</span> FONT_HELVETICA_BOLD_OBLIQUE <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Helvetica-BoldOblique'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">const</span> FONT_HELVETICA_BOLD_ITALIC <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Helvetica-BoldOblique'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">const</span> FONT_SYMBOL <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Symbol'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">const</span> FONT_TIMES_ROMAN <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Times-Roman'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">const</span> FONT_TIMES <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Times-Roman'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">const</span> FONT_TIMES_BOLD <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Times-Bold'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">const</span> FONT_TIMES_ITALIC <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Times-Italic'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">const</span> FONT_TIMES_BOLD_ITALIC <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Times-BoldItalic'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">const</span> FONT_ZAPFDINGBATS <span style="color: #339933;">=</span> <span style="color: #0000ff;">'ZapfDingbats'</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.lllnorikolll.com/archives/65/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

