GetCellImage(bool,MedicalViewerCellImageFeatures) Method

Summary
Returns a printable version of the cell.
Syntax
C#
C++/CLI
public Image GetCellImage( 
   bool exploded, 
   MedicalViewerCellImageFeatures features 
) 
            public: 
Image^ GetCellImage(  
   bool exploded, 
   MedicalViewerCellImageFeatures features 
)  

Parameters

exploded
true to print the sub-cell, but after scaling it up to fit the entire cell area.

features
An Enumerated MedicalViewerCellImageFeatures value that lets you select which part of the cell besides the image to draw.

Return Value

System.Drawing.Image object which is the printable version of the cell.

Remarks
  • This method is useful whenever the user needs to save the image along with the annotations, tags, border, rulers and anything that has been drawn on the cell.
  • The user can save, print or copy the returned image.
  • For more information about the cell, refer to Medical Viewer Cells.
Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.MedicalViewer; 
using Leadtools.ImageProcessing.Core; 
 
public void MedicalViewerSaveCellExample() 
{ 
   MedicalViewerForm myForm = GetMedicalControl(); 
   MedicalViewer medicalViewer = myForm.Viewer; 
   Image myImage = ((MedicalViewerMultiCell)(medicalViewer.Cells[0])).GetCellImage(); 
   myImage.Save(Path.Combine(LEAD_VARS.ImagesDir, "FirstCell.bmp")); 
 
   myImage.Dispose(); 
   myForm.ShowDialog(); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

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

Leadtools.MedicalViewer Assembly

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