类 TiffConverter
信息
表示 Documentize.TiffConverter 插件。用于将 PDF 文档转换为 TIFF 格式。
public sealed class TiffConverter
继承
继承的成员
- object.GetType(),
- object.ToString(),
- object.Equals(object?),
- object.Equals(object?, object?),
- object.ReferenceEquals(object?, object?),
- object.GetHashCode()
示例
该示例演示如何将 PDF 文档转换为 TIFF 格式。
// 创建 TiffConverter
var plugin = new TiffConverter();
// 创建 PdfToTiffOptions 对象以设置指令
var opt = new PdfToTiffOptions();
// 添加输入文件路径
opt.AddInput(new FileDataSource(inputPath));
// 设置输出文件路径
opt.AddOutput(new DirectoryDataSource(outputPath));
// 执行处理
plugin.Process(opt);
构造函数
TiffConverter()
public TiffConverter()
方法
Process(PdfToTiffOptions)
使用指定的参数开始 Documentize.TiffConverter 的处理。
public ResultContainer Process(PdfToTiffOptions options)
参数
options
PdfToTiffOptions: 一个选项对象,包含 Documentize.TiffConverter 的指令。
返回
ResultContainer : 一个包含操作结果的 ResultContainer 对象。
命名空间: Documentize 程序集: Documentize.dll