Hello All,
I am newbie to EO PDF . Actually my project supports multilingual languages like English , Spanish and Japanese. I am creating some PDF by fetching the data from database. But when i am trying to render the text(Japanese text) in the PDF it goes missing from the PDF. I am crating the block AcmBlock . Here is my Code.
AcmBlock blockObj = null;
string content = "初中級" ;
try
{
AcmText acmTextObj = new AcmText(content);
blockObj = new AcmBlock(acmTextObj);
blockObj.Style.Top = top;
blockObj.Style.Left = left;
blockObj.Style.Width = width;
blockObj.Style.Height = height;
blockObj.Style.FontName = fontName;
blockObj.Style.FontSize = fontSize;
blockObj.Style.ForegroundColor = GetColor(color);
blockObj.Style.FontStyle = GetFontStyle(fontStyle);
}
catch (Exception)
{
}
return blockObj;
First i am calling this method and after that i just render the block object by Acmrender Object.
Could anyone please help me out. is it possible to render the foreign characters in PDF.
Thanks