- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 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/
我遇到了这个问题: native 库 Ltkrnx.dll 已加载到另一个类加载器中 在重新部署应用程序期间(tomcat 8 服务器)。 我还添加了检查,但这对我没有帮助。 private void
我在 C# 中使用 Lead Tool。并在下面的代码中出错。当我裁剪图像时,我从 JS 传递这个字符串 base64String 值,然后使用 Base64ToImage 函数将它在 c# 中转换为
我是一名优秀的程序员,十分优秀!