PdfImporter.Import
Contenuti
[
Nascondere
]Import(Stream, PdfImportOptions)
Importa il contenuto del documento PDF da un flusso fornito.
public static List<Page> Import(Stream stream, PdfImportOptions options = null)
Parametro | Tipo | Descrizione |
---|---|---|
stream | Stream | Il flusso. |
options | PdfImportOptions | Le opzioni. |
Valore di ritorno
IlPdfImporter
.
Guarda anche
- class Page
- class PdfImportOptions
- class PdfImporter
- spazio dei nomi Aspose.Note.Importing
- assemblea Aspose.Note
Import(string, PdfImportOptions)
Importa il contenuto del documento PDF da un file specificato.
public static List<Page> Import(string file, PdfImportOptions options = null)
Parametro | Tipo | Descrizione |
---|---|---|
file | String | Il file PDF. |
options | PdfImportOptions | Le opzioni. |
Valore di ritorno
IlPdfImporter
.
Esempi
Mostra come importare tutte le pagine dal documento PDF raggruppando ogni 5 pagine in una singola pagina di OneNote.
string dataDir = RunExamples.GetDataDir_Import();
var d = new Document();
var mergeOptions = new MergeOptions() { ImportAsSinglePage = true, PageSpacing = 100 };
IEnumerable<Page> pages = PdfImporter.Import(Path.Combine(dataDir, "SampleGrouping.pdf"));
while (pages.Any())
{
d.Merge(pages.Take(5), mergeOptions);
pages = pages.Skip(5);
}
d.Save(Path.Combine(dataDir, "sample_CustomMerge.one"));
Guarda anche
- class Page
- class PdfImportOptions
- class PdfImporter
- spazio dei nomi Aspose.Note.Importing
- assemblea Aspose.Note