本文实例讲述了C#获取指定PDF文件页数的方法。分享给大家供大家参考。具体如下:
using System; using System.IO; using System.Text.RegularExpressions; using System.Windows.Forms; namespace RobvanderWoude { class PDFPageCount { static int Main( string[] args ) { #region Get help if ( args.Length == 0 ) { ShowHelp( ); return 0; } foreach ( string arg in args ) { if ( arg == "/?" || arg == "-?" || arg.ToLower( ) == "--help" ) { ShowHelp( ); return 0; } } #endregion int errors = 0; foreach ( string arg in args ) { try { Regex regexp = new Regex( @"^(.*)\\([^\\]+\.pdf)$", RegexOptions.IgnoreCase ); if ( regexp.IsMatch( arg ) ) { // Match means the filespec has a valid format (i.e. *.pdf) string[] matches = regexp.Split( arg ); string folder = matches[1]; string filespec = matches[2]; if ( Directory.Exists( folder ) ) { // Folder exists, check for matching files string[] fileList = Directory.GetFiles( folder, filespec ); if ( fileList.Length == 0 ) { // No matching files in this folder ShowError( "ERROR: No files matching \"{0}\" were found in \"{1}\"", filespec, folder ); errors += 1; } else { // Iterate through list of matching files foreach ( string file in fileList ) { int pagecount = PageCount( file ); if ( pagecount == -1 ) { // Just increase the error count, the PageCount( ) // procedure already wrote an error message to screen errors += 1; } else { // No pages means there is a problem with the file if ( pagecount == 0 ) { Console.ForegroundColor = ConsoleColor.Red; errors += 1; } // Display the formated result on screen Console.WriteLine( "{0,4} {1,-10} {2}", pagecount.ToString( ), ( pagecount == 1 ? "page" : "pages" ), file ); if ( pagecount == 0 ) { Console.ForegroundColor = ConsoleColor.Gray; } } } } } else { // Folder doesn't exist ShowError( "ERROR: Folder \"{0}\" not found", folder ); errors += 1; } } else { // No match for the regular expression means the filespec was invalid ShowError( "ERROR: Invalid filespec \"{0}\", please specify PDF files only", arg ); errors += 1; } } catch ( Exception e ) { // All other errors: display an error message and then continue ShowError( "ERROR: {0}", e.Message ); errors += 1; } } if ( errors != 0 ) { ShowError( " {0} finished with {1} error{2}", GetExeName( ), errors.ToString( ), ( errors == 1 ? "" : "s" ) ); } return errors; } static string GetExeName( ) { string exe = Application.ExecutablePath.ToString( ); Regex regexp = new Regex( @"\\([^\\]+)$" ); return regexp.Split( exe )[1]; } static int PageCount( string filename ) { Regex regexp = new Regex( @"\.pdf$", RegexOptions.IgnoreCase ); if ( regexp.IsMatch( filename ) ) { try { FileStream fs = new FileStream( filename, FileMode.Open, FileAccess.Read ); StreamReader sr = new StreamReader( fs ); string pdfText = sr.ReadToEnd( ); regexp = new Regex( @"/Type\s*/Page[^s]" ); MatchCollection matches = regexp.Matches( pdfText ); return matches.Count; } catch ( Exception e ) { ShowError( "ERROR: {0} ({1})", e.Message, filename ); return -1; } } else { ShowError( "ERROR: {0} is not a PDF file", filename ); return -1; } } static void ShowError( string message, string param1, string param2 = "", string param3 = "" ) { Console.Error.WriteLine( ); Console.ForegroundColor = ConsoleColor.Red; Console.Error.WriteLine( message, param1, param2, param3 ); Console.ForegroundColor = ConsoleColor.Gray; Console.Error.WriteLine( ); } #region Display help text static void ShowHelp( ) { Console.Error.WriteLine( ); Console.Error.WriteLine( "{0}, Version 1.02", GetExeName( ) ); Console.Error.WriteLine( "Return the page count for the specified PDF file(s)" ); Console.Error.WriteLine( ); Console.Error.WriteLine( "Usage: {0} filespec [ filespec [ filespec [ ... ] ] ]", GetExeName( ).ToUpper( ) ); Console.Error.WriteLine( ); Console.Error.WriteLine( "Where: \"filespec\" is a file specification for the PDF file(s) to" ); Console.Error.WriteLine( " be listed (wildcards * and ? are allowed)" ); Console.Error.WriteLine( ); Console.Error.WriteLine( "Note: The program's return code equals the number of errors encountered." ); Console.Error.WriteLine( ); Console.Error.WriteLine( "Written by Rob van der Woude" ); } #endregion } }
希望本文所述对大家的C#程序设计有所帮助。
本文向大家介绍C#获取指定文件著作权信息的方法,包括了C#获取指定文件著作权信息的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了C#获取指定文件著作权信息的方法。分享给大家供大家参考。具体分析如下: C#获得指定文件的著作权信息,通过FileVersionInfo可以获得很多关于文件的信息,包括著作权信息 希望本文所述对大家的C#程序设计有所帮助。
FPDI易于使用和安装(只需提取文件并调用PHP脚本即可),但FPDI不支持许多压缩技术。然后返回一个错误: FPDF错误:此文档(test_1.pdf)可能使用了FPDI附带的免费解析器不支持的压缩技术。 这将在流中打开PDF文件,并搜索某种类型的字符串,包含pagecount或类似的内容。 (查找)不起作用,因为只有少数文档内部有参数,所以大多数情况下它不会返回任何内容。来源。 (查找)没有得
问题内容: 如何使用免费/开源Java API确定给定PDF文件中的页数? 问题答案: 您可以使用Apache PDFBox 加载PDF文档,然后调用该方法以返回页数。
本文向大家介绍Python获取指定文件夹下的文件名的方法,包括了Python获取指定文件夹下的文件名的方法的使用技巧和注意事项,需要的朋友参考一下 本文采用os.walk()和os.listdir()两种方法,获取指定文件夹下的文件名。 一、os.walk() 模块os中的walk()函数可以遍历文件夹下所有的文件。 该函数可以得到一个三元tupple(dirpath, dirnames, fil
sp_sql_page($id) 功能: 获取指定id的页面 参数: $id:页面的id 返回: 类型数组,符合条件的页面 示例: <?php $ID=1000; // $page=sp_sql_page($ID); print_r($page);
本文向大家介绍C#通过指针读取文件的方法,包括了C#通过指针读取文件的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了C#通过指针读取文件的方法。分享给大家供大家参考。具体如下: 希望本文所述对大家的C#程序设计有所帮助。