Android下生成和读取PDF文件的工程demo, ttf的使用:
简要介绍的用法,里面包含上面工程的Url:
需要下载 xmlworkhelper 5.5.3: 不然找不到xmlworkhlper这个类
然后就是把字体指定为:
DroidSansFallback.ttf
private static final String
FONT_PATH =
"/system/fonts/DroidSansFallback.ttf";
这样才会显示出中文
有关PDF图片旋转的,参考这个博客:
源码中的html2pdf(htmlContent,filePath,
this)
改成 createPDF(htmlContent,filePath,
this);
然后说一下.ttf文件在Android中的使用:( .ttf文件是放在 assets/fonts 文件夹下的 )
ypeface face = Typeface.createFromAsset(getAssets(),"fonts/SIMFANG.TTF");
tv_title = (TextView) findViewById(R.id.tv_title);
tv_title.setTypeface(face);