它位于Tesseract
命名空间中,更多信息可以在这里找到https://github.com/charlesw/tesseract
namespace Tesseract
{
/// <summary>
/// Handles converting between different image formats supported by DotNet.
/// </summary>
public static class PixConverter
{
private static readonly BitmapToPixConverter bitmapConverter = new BitmapToPixConverter();
private static readonly PixToBitmapConverter pixConverter = new PixToBitmapConverter();
/// <summary>
/// Converts the specified <paramref name="pix"/> to a Bitmap.
/// </summary>
/// <param name="pix">The source image to be converted.</param>
/// <returns>The converted pix as a <see cref="Bitmap"/>.</returns>
public static Bitmap ToBitmap(Pix pix)
{
return pixConverter.Convert(pix);
}
/// <summary>
/// Converts the specified <paramref name="img"/> to a Pix.
/// </summary>
/// <param name="img">The source image to be converted.</param>
/// <returns>The converted bitmap image as a <see cref="Pix"/>.</returns>
public static Pix ToPix(Bitmap img)
{
return bitmapConverter.Convert(img);
}
}
}
根据网站登陆页面
通过从包管理器控制台运行 Install-Package Tesseract 添加 Tesseract NuGet 包。
此外,它值得彻底阅读该网站。
免责声明,我以前从未使用过这个库,只是查找了信息
更新
只是为了确保我没有给你坏信息,我创建了一个新项目,下载了最新的 Tesseract nuget。并且能够做到以下几点。
using Tesseract;
...
PixConverter.ToPix()
更新2
您注意到的问题是因为您正在使用
https://www.nuget.org/packages/tesseract.net/
相对于
https://www.nuget.org/packages/Tesseract/
现在我不确定你真正想要的是什么。但是,该方法在前者中不存在