CreateExtractor

CreateExtractor(string, int, bool)

创建 IdfTypeExtractor 对象。

public IPdfTypeExtractor CreateExtractor(string pdfDocumentPath, int bufferSize, 
    bool allowAsyncInitialization)
范围类型描述
pdfDocumentPathStringpdf 文档的路径。
bufferSizeInt32可以保存在内存中的最大内容大小(以字节为单位)。
allowAsyncInitializationBoolean允许资源的异步初始化。

返回值

IpdfTypeExtractor 的对象

也可以看看


CreateExtractor(Stream, int, bool)

创建 IdfTypeExtractor 对象。

public IPdfTypeExtractor CreateExtractor(Stream pdfDocumentStream, int bufferSize, 
    bool allowAsyncInitialization)
范围类型描述
pdfDocumentStreamStream包含 pdf 文档的流。
bufferSizeInt32可以保存在内存中的最大内容大小(以字节为单位)。
allowAsyncInitializationBoolean允许资源的异步初始化。

返回值

IpdfTypeExtractor 的对象

也可以看看


CreateExtractor(string, string, int, bool)

创建 IdfTypeExtractor 对象。

public IPdfTypeExtractor CreateExtractor(string pdfDocumentPath, string password, int bufferSize, 
    bool allowAsyncInitialization)
范围类型描述
pdfDocumentPathStringpdf 文档的路径。
passwordString文件密码。
bufferSizeInt32可以保存在内存中的最大内容大小(以字节为单位)。
allowAsyncInitializationBoolean允许资源的异步初始化。

返回值

IpdfTypeExtractor 的对象

也可以看看


CreateExtractor(Stream, string, int, bool)

创建 IdfTypeExtractor 对象。

public IPdfTypeExtractor CreateExtractor(Stream pdfDocumentStream, string password, int bufferSize, 
    bool allowAsyncInitialization)
范围类型描述
pdfDocumentStreamStream包含 pdf 文档的流。
passwordString文件密码。
bufferSizeInt32可以保存在内存中的最大内容大小(以字节为单位)。
allowAsyncInitializationBoolean允许资源的异步初始化。

返回值

IpdfTypeExtractor 的对象

也可以看看