Saves page to specified format.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Overloads Shared Sub SavePage( _
   ByVal  As ImGearPage, _
   ByVal  As Stream, _
   ByVal  As ImGearSavingFormats _
) 
             
        
            
            'Usage
 
Dim page As ImGearPage
Dim stream As Stream
Dim saveFormat As ImGearSavingFormats
 
ImGearFileFormats.SavePage(page, stream, saveFormat)
             
        
            
            public static void SavePage( 
   ImGearPage ,
   Stream ,
   ImGearSavingFormats 
)
             
        
            
            public: static void SavePage( 
   ImGearPage* ,
   Stream* ,
   ImGearSavingFormats 
) 
             
        
            
            public:
static void SavePage( 
   ImGearPage^ ,
   Stream^ ,
   ImGearSavingFormats 
) 
             
        
             
        
            Parameters
- page
- ImageGear page to save.
- stream
- NET stream to write an image to.
- saveFormat
- The format to save new pages in. This is a combination of a file format and
            a compression (e.g., TIFF-G4).
 
            
            
            
            
            
            
            
            
            
            
            
            See Also