① 下载FPDF相关资料=>https://github.com/DCgithub21/cd_FPDF ② 查看目录文件 注:ttf2pt1.zip为字体转换程序 ③ 运行example.php即可输出中文 require 'chinese.php'; $pdf = new PDF_Chinese(); $pdf->AddGBFont('simhei', '黑体'); $pdf->AddPage(); $pdf->SetFont('simhei', '', 13); //自动换行…
摘要 在学习asp.net core的时候,尝试在控制台,或者页面上输出中文,会出现乱码的问题. 问题重现 新建控制台和站点 public class Program { public static void Main(string[] args) { Console.WriteLine("您好,北京欢迎你"); Console.Read(); } } 站点 public class Startup { // This method gets called by the runtime…