Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
pdf我想在我的项目的 net 选项卡上将我的 html 页面转换为格式。实现这一目标的最佳解决方案是什么?提前致谢。以下是我到目前为止的代码:
pdf
include_once("dompdf/dompdf_config.inc.php"); $dompdf = new DOMPDF(); $dompdf->load_html($content); $dompdf->render(); $dompdf->stream('sample.pdf');
你试过这个库吗?
jsPDF | http://parall.ax/products/jspdf
它只使用javascript,所以你不需要php。