gpt4 book ai didi

c# - Leadtools.Codecs.dll 中发生类型为 'Leadtools.RasterException' 的未处理异常

转载 作者:行者123 更新时间:2023-11-30 15:24:54 26 4
gpt4 key购买 nike

我在 C# 中使用 Lead Tool。并在下面的代码中出错。当我裁剪图像时,我从 JS 传递这个字符串 base64String 值,然后使用 Base64ToImage 函数将它在 c# 中转换为图像。这就是我所做的所有完整代码。

private static Image Base64ToImage(string base64String)
{
Image img = null;
// Convert Base64 String to byte[]
byte[] imageBytes = Convert.FromBase64String(base64String);
using (MemoryStream ms = new MemoryStream(imageBytes, 0, imageBytes.Length))
{

// Convert byte[] to Image
ms.Write(imageBytes, 0, imageBytes.Length);
img = System.Drawing.Image.FromStream(ms);
}
return img;
}


public static void CropImage(string base64String)
{
Image img = Base64ToImage(base64String);
using (MemoryStream ms = new MemoryStream())
{
img.Save(ms, ImageFormat.Bmp);
ms.Seek(0, System.IO.SeekOrigin.Begin);
using (RasterCodecs codecs = new RasterCodecs())
{
// Load the source image from disk
using (RasterImage image = codecs.Load(ms))
{
// Crop 100 pixels from each side of the image
CropCommand command = new CropCommand();
command.Rectangle = new LeadRect(
left,
top,
width,
height);
command.Run(image);
// Save it to disk
codecs.Save(image, output, RasterImageFormat.Bmp, 24);
}
}
}
}

An unhandled exception of type 'Leadtools.RasterException' occurred in Leadtools.Codecs.dll

任何人请给我一些解决方案。

最佳答案

对于 LEADTOOLS 19,在使用任何 LEADTOOLS 功能之前,必须在应用程序中指定许可证(eval 或 release)。如果您没有提供,这就是您收到“内核已过期”消息的原因。如果您提供了许可证,请检查它是否仍然有效。如果没有,请联系 LEADTOOLS 销售团队以获得有效的许可证。

我无法让您的代码完全按原样工作,因为我不知道您的 Base64ToImage() 方法是如何返回图像的。取而代之的是,我采用了更直接的方法,将文件从磁盘加载到内存。这加载没有任何问题。

   class Program
{
static void Main(string[] args)
{
RasterSupport.SetLicense(@"C:\LEADTOOLS 19\Common\License\LEADTOOLS.LIC",
File.ReadAllText(@"C:\LEADTOOLS 19\Common\License\LEADTOOLS.LIC.KEY"));

Byte[] imageData = File.ReadAllBytes(@"C:\Users\Public\Documents\LEADTOOLS Images\cannon.jpg");

using (MemoryStream ms = new MemoryStream(imageData))
{
// Put the pointer back to the beginning
ms.Seek(0, System.IO.SeekOrigin.Begin);

using( RasterCodecs codecs = new RasterCodecs())
{
// Load the source image from disk
using (RasterImage image = codecs.Load(ms)) // on this line I got error...
{
//do something with the image
}
}
}
}
}

既然这行得通,问题可能在于您如何创建内存流或内存流中的内容。我建议在创建内存流后使用 File.WriteAllBytes() 方法,然后从磁盘读取文件。如果这有效,那么问题出在读取内存流上。通常这意味着 MemoryStream 的位置不在开头。不过,您拥有的代码说明了这一点,因此内存流中的数据可能存在问题。

关于c# - Leadtools.Codecs.dll 中发生类型为 'Leadtools.RasterException' 的未处理异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32138725/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com