private void ShowText(PdfContentByte cb, BaseFont bf , float height , int align , float posX , float posY , int rotation , byte[] buf)
{
string msg = Encoding.Default.GetString( buf );
cb.SaveState();
cb.BeginText();
cb.SetFontAndSize( bf , height );
//use string
cb.ShowTextAligned( align , msg , posX , posY , rotation );
//want to use byte array
cb.ShowTextAligned( align , buf , posX , posY , rotation );
cb.EndText();
cb.RestoreState();
}
我想用一个字节数组来显示文字 我有一个自定义字体,在不可打字区域有一些字符。
是否可以使用字节数组而不是将其转换为字符串?