PluginProbe
Welcart e-Commerce / 2.12.3
Welcart e-Commerce v2.12.3
2.12.3 2.11.35 2.12.2 2.12.1 2.11.34 2.11.33 2.11.32 2.11.31 2.11.30 1.3.16 1.3.17 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 1.4.13 All 291 releases
usc-e-shop / classes / fpdf / exja.php

exja.php in Welcart e-Commerce 2.12.3, at classes/fpdf/exja.php

29 lines 991 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 require(USCES_PLUGIN_DIR.'/classes/fpdf/mbfpdf.php');
3
4 // EUC-JP->SJIS 変換を自動的に行なわせる場合に mbfpdf.php �
5 $EUC2SJIS
6 // true に修正するか、このように実行時に true に設定しても変換してくます。
7 $GLOBALS['EUC2SJIS'] = true;
8
9 $pdf=new MBFPDF();
10 $pdf->AddMBFont(GOTHIC ,'SJIS');
11 $pdf->AddMBFont(PGOTHIC,'SJIS');
12 $pdf->AddMBFont(MINCHO ,'SJIS');
13 $pdf->AddMBFont(PMINCHO,'SJIS');
14 $pdf->AddMBFont(KOZMIN ,'SJIS');
15 $pdf->Open();
16 $pdf->AddPage();
17 $pdf->SetFont(GOTHIC,'U',20);
18 $pdf->Write(10,"MSゴシック 摂氏 18 C 湿度 83 %\n");
19 $pdf->SetFont(PGOTHIC,'U',20);
20 $pdf->Write(10,"MSPゴシック 摂氏 18 C 湿度 83 %\n");
21 $pdf->SetFont(MINCHO,'U',20);
22 $pdf->Write(10,"MS明朝 摂氏 18 C 湿度 83 %\n");
23 $pdf->SetFont(PMINCHO,'U',20);
24 $pdf->Write(10,"MSP明朝 摂氏 18 C 湿度 83 %\n");
25 $pdf->SetFont(KOZMIN,'U',20);
26 $pdf->Write(10,"小塚明朝 摂氏 18 C 湿度 83 %\n");
27 $pdf->Output();
28 ?>
29