ZendFramworkライブラリ「Zend_Pdf」チュートリアル
2007年09月09日
スポンサード リンク
Zend_Pdf tutorial
The Zend_Pdf component of the Zend Framework is intended to allow you to create or manipulate PDF documents from within your applications.
ZendFramworkライブラリ「Zend_Pdf」チュートリアル。
Zend_PdfによってPDFを作成するコード等が紹介されています。
// Create new PDF
$pdf = new Zend_Pdf();
// Add new page to the document
$page = $pdf->newPage(Zend_Pdf_Page::SIZE_A4);
$pdf->pages[] = $page;
// Set font
$page->setFont(Zend_Pdf_Font::fontWithName(Zend_Pdf_Font::FONT_HELVETICA), 20);
// Draw text
$page->drawText('Hello world!', 100, 510);
ZendFramework利用の際は使えるので覚えておきましょう。
スポンサード リンク
投稿者 KJ : 2007年09月09日 12:05
|
![]()
間違いの指摘をしていただける方はメールでお願いします
最新のブログ記事
- 2008年8月29日 管理人のブックマーク
- 全キャリア対応のデコメールの作成・変換が可能なPHPライブラリ「Qdmail」
- プロフェッショナルなノートパソコンの広告風画像を作る流れ
- 歯車や雲、人型など実用的なPhotoshopブラシ集
- 2008年8月28日 管理人のブックマーク
- オープンソースの便利PHPスクリプトまとめサイト「Open Source PHP」
- 表示法が新しくセクシーなLightBox「SexyLightBox」
- 背景画像やテクスチャ画像のリソース13サイト
- 2008年8月27日 管理人のブックマーク
- Ajaxベースのクールなショッピングカート作成
- WEBで好きな曲を共有可能な音楽共有オープンソース「Opentape」


















