Leadtools.Codecs.dll中发生了未处理的“Leadtools.RasterException”类型异常

时间:2015-08-21 11:05:05

标签: c# leadtools-sdk

我正在使用带有c#的Lead Tool。以下代码中出现错误。 我在裁剪Image时从JS传递此字符串base64String值,然后将其转换为带有Base64ToImage函数的C#in。所以这就是我所做的完整代码。

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);
                }
            } 
        }
    }
  

发生了'Leadtools.RasterException'类型的未处理异常   Leadtools.Codecs.dll

任何人都可以为此提供一些解决方案。

1 个答案:

答案 0 :(得分:4)

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

我无法让你的代码完全正常工作,因为我不知道你的Base64ToImage()方法如何返回一个Image。代替这一点,我采取了更直接的方法,只是将文件从磁盘加载到内存。加载没有任何问题。

   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的位置不在起点。但是你已经解释了这个代码,所以它很可能是内存流中数据的问题。