←Select platform

IsFeedLoadDone Property

Summary
Determines if the feed-load process is done.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public bool IsFeedLoadDone { get; } 
@property (nonatomic, assign, readonly) BOOL isFeedLoadDone 
public boolean isFeedLoadDone() 
public: 
property bool IsFeedLoadDone { 
   bool get(); 
} 
IsFeedLoadDone # get  (RasterCodecs) 

Property Value

true if the feed-load process is done; false, otherwise. The default value is true.

Remarks

Checking the value of IsFeedLoadDone is useful to exit out of the feed-load process when sufficient data has been collected to load all the pages requested.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing; 
using Leadtools.ImageProcessing.Color; 
using Leadtools.Svg; 
 
 
public void FeedLoadMultiExample() 
{ 
   RasterCodecs codecs = new RasterCodecs(); 
 
   string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "Eye.gif"); 
   string destFileName = Path.Combine(LEAD_VARS.ImagesDir, "FeedLoadMulti.tif"); 
 
   // Load pages 2 through 5 from the file by reading chunks from the stream 
   codecs.StartFeedLoad(0, CodecsLoadByteOrder.BgrOrGray, 2, 5); 
 
   using (FileStream fs = File.OpenRead(srcFileName)) 
   { 
      const int bufferSize = 1024; 
      byte[] buffer = new byte[bufferSize]; 
 
      int read; 
 
      do 
      { 
         System.Windows.Forms.Application.DoEvents(); 
 
         read = fs.Read(buffer, 0, bufferSize); 
         Debug.WriteLine("Feeding {0} bytes", read); 
         if (read > 0) 
            codecs.FeedLoad(buffer, 0, read); 
      } 
      while (read > 0 && !codecs.IsFeedLoadDone); 
   } 
 
   RasterImage image = codecs.StopFeedLoad(); 
   Debug.WriteLine("{0} pages loaded", image.PageCount); 
 
   // Save the image to disk 
   codecs.Save(image, destFileName, RasterImageFormat.Tif, 1, 1, -1, 1, CodecsSavePageMode.Overwrite); 
   image.Dispose(); 
 
   // Clean up 
   codecs.Dispose(); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.5.5
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Codecs Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.