PdfExtractor.BindPdf
BindPdf(string)
Bind input PDF file.
public override void BindPdf(string inputFile)
Parameter | Type | Description |
---|---|---|
inputFile | String | PDF file to bind |
Examples
PdfExtractor ext = new PdfExtractor();
ext.BindPdf("sample.pdf");
See Also
- class PdfExtractor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
BindPdf(Stream)
Binds PDF document from stream.
public override void BindPdf(Stream inputStream)
Parameter | Type | Description |
---|---|---|
inputStream | Stream | Stream containing PDF document data |
Examples
PdfExtractor ext = new PdfExtractor();
Stream stream = new FileStream("sample.pdf", FileMode.Open, FileAccess.Read);
ext.BindPdf(stream);
See Also
- class PdfExtractor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF