我是Kofax Capture的新手。问题是如何在Kofax Capture中以PDF或JPG导出索引字段的快照?就像文档中的导出签名一样。
我唯一想到的就是编写自定义导出模块的代码,但是也许我错过了一些“开箱即用”的功能,如果您提供了一些现有的解决方案,那就太好了。
提前谢谢
答案 0 :(得分:1)
确定可以-识别脚本可以访问区域摘要(代表正在处理的区域的图像的小切口),并且可以在自定义引擎中处理区域摘要(请参阅开发者指南)。这是一个入门的示例:
using Kofax.AscentCapture.NetScripting;
using Kofax.Capture.CaptureModule.InteropServices;
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
public class Save_Snippet : RecognitionScript {
public Save_Snippet() : base()
{
this.BatchLoading += Save_Snippet_BatchLoading;
this.BatchUnloading += Save_Snippet_BatchUnloading;
}
void Save_Snippet_BatchLoading(object sender, ref bool ImageFileRequired)
{
this.RecognitionPostProcessing += Save_Snippet_RecognitionPostProcessing;
ImageFileRequired = true;
}
void Save_Snippet_BatchUnloading(object sender)
{
this.BatchLoading -= Save_Snippet_BatchLoading;
this.RecognitionPostProcessing -= Save_Snippet_RecognitionPostProcessing;
this.BatchUnloading -= Save_Snippet_BatchUnloading;
}
void Save_Snippet_RecognitionPostProcessing(object sender, PostRecognitionEventArgs e)
{
File.Copy(e.ImageFile, @"C:\temp\test.tiff");
}
}