原創|其它|編輯:郝浩|2013-01-21 10:08:52.000|閱讀 594 次
概述:activePDF Toolkit的強大之處在于對PDF文件的處理和生成功能,使用activePDF Toolkit不僅能實現PDF文件的合并,還能從PDF文件中提取單頁的PDF內容。
# 界面/圖表報表/文檔/IDE等千款熱門軟控件火熱銷售中 >>
相關鏈接:
activePDF Toolkit的強大之處在于對PDF文件的處理和生成功能,使用activePDF Toolkit不僅能實現PDF文件的合并,還能從PDF文件中提取單頁的PDF內容。
示例代碼如下:
// Copyright (c) 2013 activePDF, Inc. // Example created 01/20/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 intOpenOutputFile; int intMergeFile; strPath = AppDomain.CurrentDomain.BaseDirectory; // Instantiate Object APToolkitNET.Toolkit oTK = new APToolkitNET.Toolkit(); // Create the new PDF file intOpenOutputFile = oTK.OpenOutputFile(strPath + "new.pdf"); if (intOpenOutputFile != 0) { ErrorHandler("OpenOutputFile", intOpenOutputFile); } // MergeFile is the equivalent of OpenInputFile and CopyForm // Extract pages 3-4 from the PDF intMergeFile = oTK.MergeFile(strPath + "10pages.pdf", 3, 4); if (intMergeFile != 1) { ErrorHandler("MergeFile", intMergeFile); } // Close the new file to complete PDF creation oTK.CloseOutputFile(); // Release Object oTK = null; // Process Complete System.Diagnostics.Debug.WriteLine("Done!"); } // Error Handling public static void ErrorHandler(string strMethod, object rtnCode) { System.Diagnostics.Debug.WriteLine(strMethod + " error: " + rtnCode.ToString()); } }
本站文章除注明轉載外,均為本站原創或翻譯。歡迎任何形式的轉載,但請務必注明出處、不得修改原文相關鏈接,如果存在內容上的異議請郵件反饋至chenjj@fc6vip.cn
文章轉載自:慧都控件網