3

I am using Lead Tool with c#. And Got error in below code. I pass this string base64String value from JS when I cropped Image and then convert it in c# in to Image with Base64ToImage function. So this is all complete code which I did.

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

Anyone please give my some solution for this.

4

1 回答 1

4

对于 LEADTOOLS 19,在使用任何 LEADTOOLS 功能之前,必须为应用程序指定许可证(评估或发布)。如果您没有提供,这就是您收到“内核已过期”消息的原因。如果您提供了许可证,请检查它是否仍然有效。如果没有,请联系 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 的位置不在开头。但是,您拥有的代码说明了这一点,因此内存流中的数据可能存在问题。

于 2015-08-21T21:00:50.790 回答