Krantikiran Ответов: 1

Как получить высоту, ширину и размер pdf-файла с помощью itextsharp


с помощью pdfcopy файл копируется в папку назначения

Что я уже пробовал:

sourceDocument = new Document();
pdfCopyProvider = new PdfCopy(sourceDocument, new System.IO.FileStream(outputPdfPath, System.IO.FileMode.Create));

//Open the output file
sourceDocument.Open();

//  for(int f = 0; f < lstFiles.Count - 1; f++)
// {
reader = new PdfReader(lstFiles[0]);
var pages = reader.NumberOfPages;
importedPage = pdfCopyProvider.GetImportedPage(reader,pages);

var height = Math.Ceiling(Convert.ToDecimal(importedPage.Height));
var width = Math.Ceiling(Convert.ToDecimal(importedPage.Width));
var size = reader.FileLength;

Richard MacCutchan

У вас есть вопрос?

Karthik_Mahalingam

я надеюсь, что название :)

1 Ответов

Рейтинг:
0