Aspose.Words让你在几个步骤内将Word DOC或DOCX转换为PDF,如下所述: 加载Word文档。 将其作为PDF保存到所需的位置。 将Word DOC转换为PDF的C#代码 要将Word文档转换为PDF,你必须调用Document.Save()方法,并指定输出文件的扩展名为".pdf"。以下是实现这一目的的步骤。 使用Document类从所需位置加载Word文档。 使...
将图像转换为PDF 转换为PDF不受Microsoft Word文档格式的限制。Aspose.Words支持的任何格式,包括以编程方式创建的格式,都可以转换为PDF。例如,我们可以将单页图像(例如JPEG,PNG,BMP,EMF或WMF)以及多页图像(例如TIFF和GIF)转换为PDF。 下面的代码示例演示如何将JPEG和TIFF图像转换为PDF: //将指定格式的图像转换为PDF。
public static void wordToPdf(String wordPath, String pdfPath) { getLicense(); File file = new File(pdfPath); try (FileOutputStream os = new FileOutputStream(file)) { Document doc = new Document(wordPath); doc.save(os, SaveFormat.PDF); } } } 1. 2. 3. 4. 5. 6. 7. 8. 9. ...
publicstaticvoidmain(String[] args)throwsException {//加载要转换的Word文档。Document doc =newDocument("C:\\Temp\\input.doc");//要保存输出的PDF文件的位置。String outputFilename = "C:\\Temp\\output.pdf";//导出到PDF。document.save(Files.newOutputStream(Paths.get(outputFilename)), SaveFormat...
5: 读取word生成PDF并上传 publicFileinformation(){File f=newFile();Map<String,String>map=newTreeMap<>(); //需要替换的字段 map.put("one", "123"); map.put("two", "234"); //word的文件名称 String templateFileName = "push.docx"; AsposeUtil asposeUtil = new AsposeUtil(); try{ByteArr...
os.close();//转化用时System.out.println("Word 转 Pdf 共耗时:" + ((now - old) / 1000.0) + "秒"); }catch(Exception e) { System.out.println("Word 转 Pdf 失败..."); e.printStackTrace(); } } } 该段代码如果想要在Linux服务器上完美运行,需要给Linux服务器安装中文字体库,否则所有中文...
为了实现Word到PDF的转换,首先需要添加Aspose.Words for .NET DLL引用至项目,或通过NuGet进行安装。使用`Install-Package Aspose.Words`命令即可完成安装。转换步骤如下:调用`Document.Save()`方法,并指定输出文件扩展名为".pdf"。以下示例展示了如何使用C#将Word DOC转换为PDF:以下是实现Word到PDF...
Aspose.Words将word转成pdf Aspose.Words将word转成pdf /// /// word转pdf /// ///⽂件地址 ///转换后的⽂件地址 ///<returns></returns> public static void WordToPdf(string path, string newFilePath){ var dir = newFilePath.Substring(0, newFilePath.LastIndexOf("/") + 1);if (!Direc...
Aspose.Words 是一种高级Word文档处理API,它能够执行文档管理和操作任务,如生成、修改、转换、展示和打印文档,无需在跨平台应用程序中直接使用Microsoft Word。此外,Aspose API支持处理流行文件格式,并允许将文档导出或转换为固定布局文件格式及最常用的图像/多媒体格式。将Word文档转换为PDF是广泛使用的...
在Java中,使用Aspose.Words,可以从简单的单个文件转换开始,如以下代码所示,加载DOCX文档并保存为PDF:// Load Word document and convert to PDF Document doc = new Document("word.docx");doc.save("output.pdf");对于更复杂的需求,如选择性页面转换、PDF标准定制、文本和图像压缩,API同样提供...