LEADTOOLS Medical (Leadtools.MedicalWebViewer.DICOMObjectRetrieve assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.25
MergeImage Method
See Also 
Leadtools.Dicom.Services.MedicalWebViewer Namespace > MedicalWebViewerObjectRetrieve Class : MergeImage Method



returnImage
The Leadtools.RasterImage which will contains the merge result.
originalImage
The Leadtools.RasterImage to be merged with the returnImage

The MergeImage Method is available as an add-on to the LEADTOOLS Medical Imaging toolkits.

returnImage
The Leadtools.RasterImage which will contains the merge result.
originalImage
The Leadtools.RasterImage to be merged with the returnImage
Inserts all pages of the specified Leadtools.RasterImage into another Leadtools.RasterImage.

Syntax

Visual Basic (Declaration) 
Protected Sub MergeImage( _
   ByRef returnImage As RasterImage, _
   ByVal originalImage As RasterImage _
) 
Visual Basic (Usage)Copy Code
Dim instance As MedicalWebViewerObjectRetrieve
Dim returnImage As RasterImage
Dim originalImage As RasterImage
 
instance.MergeImage(returnImage, originalImage)
C# 
protected void MergeImage( 
   ref RasterImage returnImage,
   RasterImage originalImage
)
C++/CLI 
protected:
void MergeImage( 
   % RasterImage^ returnImage,
   RasterImage^ originalImage
) 

Parameters

returnImage
The Leadtools.RasterImage which will contains the merge result.
originalImage
The Leadtools.RasterImage to be merged with the returnImage

Remarks

If the returnImage is NULL it will be initialized with the originalImage.

After this method returns the originalImage will be invalid and disposed.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also