我在iReport上做了报告,在本地它正常运行,因为我有操作系统微软,但是当我在Linux上运行我的项目时,报告显示了一个错误
HTTP Status 500 - Font 'Arial' is not available to the JVM. See the Javadoc for more details.
net.sf.jasperreports.engine.util.JRFontNotFoundException: Font 'Arial' is not available to the JVM. See the Javadoc for more
我需要一些中文的形式,但运行在Linux与Mono它失败了。有什么建议吗?示例:
// works OK in windows and Linux same text.
Console.WriteLine( "Test 中国 的" );
// works OK in windows fails in Linux (renders "Test [][][][]")
MessageBox.Show("Test 中国 的");
// works OK in windows fails in Linux (renders "Test
我们在带有MySQL的linux服务器上运行PHP自己开发的应用程序。
MYSQL -> PDF
非常复杂的输出-有英文和中文(简体)。
我们有许多“企业”客户在他们的系统上没有CHI,并且无法在他们的机器上添加字体(出于安全原因)。
我们嵌入了字体-但这使得文件很大(每个PDF 4-8M)。
我喜欢实际打印到一个图像文件,然后PDF它(这样我就不必嵌入字体)
有什么建议吗?