web-dev-qa-db-ja.com

itextsharpを使用してPDFファイルページを画像に変換する

ItextSharp libを使用して画像のPDFページを変換したい。

画像ファイルの各ページを変換する方法を知っている

20

iText/iTextSharpは、既存のPDFを生成および/または変更できますが、探しているレンダリングは実行しません。 Ghostscript またはPDFを実際にレンダリングする方法を知っている他のライブラリをチェックアウトすることをお勧めします。

11
Chris Haas

imageMagickを使用してpdfを画像に変換できます

convert -density 300 "d:\ 1.pdf" -scale @ 1500000 "d:\ a.jpg"

分割pdfはitextsharpを使用できます

ここに他からのコードがあります。

void SplitePDF(string filepath)
    {
        iTextSharp.text.pdf.PdfReader reader = null;
        int currentPage = 1;
        int pageCount = 0;
        //string filepath_New = filepath + "\\PDFDestination\\";

        System.Text.UTF8Encoding encoding = new System.Text.UTF8Encoding();
        //byte[] arrayofPassword = encoding.GetBytes(ExistingFilePassword);
        reader = new iTextSharp.text.pdf.PdfReader(filepath);
        reader.RemoveUnusedObjects();
        pageCount = reader.NumberOfPages;
        string ext = System.IO.Path.GetExtension(filepath);
        for (int i = 1; i <= pageCount; i++)
        {
            iTextSharp.text.pdf.PdfReader reader1 = new iTextSharp.text.pdf.PdfReader(filepath);
            string outfile = filepath.Replace((System.IO.Path.GetFileName(filepath)), (System.IO.Path.GetFileName(filepath).Replace(".pdf", "") + "_" + i.ToString()) + ext);
            reader1.RemoveUnusedObjects();
            iTextSharp.text.Document doc = new iTextSharp.text.Document(reader.GetPageSizeWithRotation(currentPage));
            iTextSharp.text.pdf.PdfCopy pdfCpy = new iTextSharp.text.pdf.PdfCopy(doc, new System.IO.FileStream(outfile, System.IO.FileMode.Create));
            doc.Open();
            for (int j = 1; j <= 1; j++)
            {
                iTextSharp.text.pdf.PdfImportedPage page = pdfCpy.GetImportedPage(reader1, currentPage);
                pdfCpy.SetFullCompression();
                pdfCpy.AddPage(page);
                currentPage += 1;
            }
            doc.Close();
            pdfCpy.Close();
            reader1.Close();
            reader.Close();

        }
    }
6
changcn

Ghostscript を使用してPDFファイルを画像に変換します。次のパラメーターを使用して必要なPDFをtiff画像に変換します複数のフレームで:

gswin32c.exe   -sDEVICE=tiff12nc -dBATCH -r200 -dNOPAUSE  -sOutputFile=[Output].tiff [PDF FileName]

また、サイレントモードで-qパラメータを使用できます。出力デバイスに関する詳細情報は、 here から取得できます。

その後、次のようなTIFFフレームを簡単にロードできます

using (FileStream stream = new FileStream(@"C:\tEMP\image_$i.tiff", FileMode.Open, FileAccess.Read, FileShare.Read))
{
    BitmapDecoder dec = BitmapDecoder.Create(stream, BitmapCreateOptions.IgnoreImageCache, BitmapCacheOption.None);
    BitmapEncoder enc = BitmapEncoder.Create(dec.CodecInfo.ContainerFormat);
    enc.Frames.Add(dec.Frames[frameIndex]);
}
4
Amer Sawan