- 1、本文档共3页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
如何使用activePDF Toolkit将图片转换为PDF
来源:慧都控件网
如何使用activePDF Toolkit将图片转换为PDF
作为2012读者选择奖PDF和打印/预览类的金奖得主,activePDF的主打产品activePDF Toolkit
能够通过简单的代码设置,实现图片的转换功能,将图片转换为PDF格式。
代码示例如下:
// Copyright (c) 2013 activePDF, Inc.
// Example created 01/09/13
// Make sure to add the activePDF product .NET DLL(s) to your application.
// .NET DLL(s) are typically found in the products bin folder.
class Examples
{
public void main()
{
string strPath;
int intJPEGToPDF;
int intTIFFToPDF;
int intImageToPDF;
strPath = AppDomain.CurrentDomain.BaseDirectory;
// Instantiate Object
APToolkitNET.Toolkit oTK = new APToolkitNET.Toolkit();
// Toolkit can directly convert an image to a PDF file
慧都咨询——为您提供贴近企业应用的方案,帮助您获得成功! 1
// If the image is a JPEG file use JPEGToPDF
intJPEGToPDF = oTK.JPEGToPDF(strPath + IMG.jpg, strPath + JPEG.pdf);
if (intJPEGToPDF 1)
{
ErrorHandler(JPEGToPDF, intJPEGToPDF);
}
// If the image file is a TIFF file use TIFFToPDF
intTIFFToPDF = oTK.TIFFToPDF(strPath + IMG.tif, strPath + TIFF.pdf);
if (intTIFFToPDF != 1)
{
ErrorHandler(TIFFToPDF, intTIFFToPDF);
}
// Any supported image file can be converted to PDF with ImageToPDF
intImageToPDF = oTK.ImageToPDF(strPath + IMG.jpg, strPath + IMG.pdf);
if (intImageToPDF != 1)
{
ErrorHandler(ImageToPDF, intImageToPDF);
}
// Release Object
oTK = null;
// Process Complete
慧都咨询——为您提供贴近企业应用的方案,帮助您获得成功! 2
System.Diagnostics.Debug.WriteLine(Done!);
}
// Error Handling
public static void ErrorHandler(string strMethod,
您可能关注的文档
- pascal算法讲义第十讲.pdf
- PLC可编程控制器在VC443A牵伸加捻机中的应用.pdf
- Public Finance II (耶鲁大学, Philippe De Donder).pdf
- Pré-Publicaes do Departamento de Matemática Universidade de Coimbra Preprint Number 03–0.pdf
- 第二讲 产业组织(三进入退出壁垒).ppt
- 《产业经济学》(4进入和退出).ppt
- PowerFlex系列变频器介绍.pdf
- QuickDesign在组合测试中的应用.pdf
- 保险经济学·li.doc
- 第二篇 战略管理1.ppt
最近下载
- 新人教版英语九年级全册教案教学设计.docx
- 地下空间规划与设计(地下停车场课程设计).pdf VIP
- AI助力英语高效课堂教学与个性化学习课件.pptx VIP
- 2025年北京市朝阳区中考生物试卷(含答案解析).docx
- 国家能源集团电力产业技术监督实施细则-第1部分 火电产业绝缘技术监督.pdf VIP
- 2025年人教版六年级下册语文期末考试题(5套)及答案.docx VIP
- 地下停车场课程设计.pdf VIP
- 2024年职业院校技能大赛(新能源汽车维修赛项)考试题库(院校下发版) .docx VIP
- 建筑工程施工全过程跟踪审计实施方案.pdf
- 中国血脂管理指南(2023+年).pdf VIP
文档评论(0)