10

FreeSpire を使用して保護された PDF を XPS に変換し、PDF に戻してから、iTextSharp を使用してそれらを結合しようとしています。以下は、さまざまなファイルを変換するための私のコード スニペットです。

char[] delimiter = { '\\' };
string WorkDir = @"C:\Users\rwong\Desktop\PDF\Test";
Directory.SetCurrentDirectory(WorkDir);
string[] SubWorkDir = Directory.GetDirectories(WorkDir);
//convert items to PDF
foreach (string subdir in SubWorkDir)
{
    string[] Loan_list = Directory.GetFiles(subdir);
    for (int f = 0; f < Loan_list.Length - 1; f++)
    {
        if (Loan_list[f].EndsWith(".doc") || Loan_list[f].EndsWith(".DOC"))
        {
            Spire.Pdf.PdfDocument doc = new Spire.Pdf.PdfDocument();
            doc.LoadFromFile(Loan_list[f], FileFormat.DOC);
            doc.SaveToFile((Path.ChangeExtension(Loan_list[f],".pdf")), FileFormat.PDF);
            doc.Close();
        }
        . //other extension cases
        .
        .
        else if (Loan_list[f].EndsWith(".pdf") || Loan_list[f].EndsWith(".PDF"))
         {
             PdfReader reader = new PdfReader(Loan_list[f]);
             bool PDFCheck = reader.IsOpenedWithFullPermissions;
             reader.Close();
             if (PDFCheck)
             {
                 Console.WriteLine("{0}\\Full Permisions", Loan_list[f]);
                 reader.Close();
             }
             else
             {
                 Console.WriteLine("{0}\\Secured", Loan_list[f]);
                 Spire.Pdf.PdfDocument doc = new Spire.Pdf.PdfDocument();
                 string path = Loan_List[f];
                 doc.LoadFromFile(Loan_list[f]);
                 doc.SaveToFile((Path.ChangeExtension(Loan_list[f], ".xps")), FileFormat.XPS);
                 doc.Close();

                 Spire.Pdf.PdfDocument doc2 = new Spire.Pdf.PdfDocument();
                 doc2.LoadFromFile((Path.ChangeExtension(Loan_list[f], ".xps")), FileFormat.XPS);
                 doc2.SaveToFile(Loan_list[f], FileFormat.PDF);
                 doc2.Close();
              }

Loan_list [f] が空かどうかを確認する必要がありますが、そうではありませんでしたValue cannot be null error。パラメータを名前付きの変数に置き換えようとしましたが、それでもうまくいきません。私はPDF変換を小規模でテストしましたが、うまくいきました(以下を参照)doc.LoadFromFile(Loan_list[f]);string path = Loan_list[f];Loan_list[f]path

string PDFDoc = @"C:\Users\rwong\Desktop\Test\Test\Test.PDF";
string XPSDoc = @"C:\Users\rwong\Desktop\Test\Test\Test.xps";

//Convert PDF file to XPS file
PdfDocument doc = new PdfDocument();
doc.LoadFromFile(PDFDoc);
doc.SaveToFile(XPSDoc, FileFormat.XPS);
doc.Close();

//Convert XPS file to PDF
PdfDocument doc2 = new PdfDocument();
doc2.LoadFromFile(XPSDoc, FileFormat.XPS);
doc2.SaveToFile(PDFDoc, FileFormat.PDF);
doc2.Close();

このエラーが発生する理由と修正方法を理解したいと思います。

4

1 に答える 1

4

あなたが直面している問題には2つの解決策があります。

  1. Documentにないオブジェクトでドキュメントを取得しPDFDocumentます。そして、おそらくSaveToFileこのようなことを試みます

    Document document = new Document();
    //Load a Document in document Object
    document.SaveToFile("Sample.pdf", FileFormat.PDF);
    
  2. このような同じものに Stream を使用できます

    PdfDocument doc = new PdfDocument();
    //Load PDF file from stream.
    FileStream from_stream = File.OpenRead(Loan_list[f]);
    //Make sure the Loan_list[f] is the complete path of the file with extension.
    doc.LoadFromStream(from_stream);
    //Save the PDF document.
    doc.SaveToFile(Loan_list[f] + ".pdf",FileFormat.PDF);
    

2 番目のアプローチは簡単な方法ですが、最初のアプローチを使用することをお勧めします。ドキュメントはストリームよりも変換可能性が高いなどの明らかな理由からです。ドキュメントにはセクション、段落、ページ設定、テキスト、フォントが含まれているため、より適切な書式設定または正確な書式設定を行うために必要なすべてのものが必要です。

于 2015-08-24T03:05:19.167 に答える