function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
tuituituitui 

PDF出力

<apex:page>タグのrenderAs属性を使用してPDF出力を行おうとしています。

2バイト文字のPDF出力は可能なのでしょうか?

 

 

Best Answer chosen by Admin (Salesforce Developers) 
nabemarunabemaru
PDFへの2バイト文字の出力ですが、以下のようなFONT指定での出力はいかがでしょうか?
 

<apex:page renderas="pdf">

<body style="font-family: Arial Unicode MS;">

ほげほげ

</body>

</apex:page>

 


02-16-2010 07:40 AM
にnabemaruにより編集されたメッセージ

All Answers

nabemarunabemaru
PDFへの2バイト文字の出力ですが、以下のようなFONT指定での出力はいかがでしょうか?
 

<apex:page renderas="pdf">

<body style="font-family: Arial Unicode MS;">

ほげほげ

</body>

</apex:page>

 


02-16-2010 07:40 AM
にnabemaruにより編集されたメッセージ
This was selected as the best answer
tuituituitui

お答えいただきましてありがとうございます。

早速確認させていただいたところ、ちゃんと表示されました。

 

ありがとうございます。