Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.12.8
|
Leadtools.MedicalViewer Namespace > MedicalViewerCell Class > GetCellImage Method : GetCellImage(Boolean,MedicalViewerCellImageFeatures) Method |
Imports Leadtools Imports Leadtools.Codecs Imports Leadtools.MedicalViewer Imports Leadtools.ImageProcessing.Core <TestMethod()> _ Public Sub MedicalViewerSaveCellExample() Dim myForm As MedicalViewerForm = GetMedicalControl() Dim medicalViewer As MedicalViewer = myForm.Viewer Dim myImage As Image = (CType(medicalViewer.Cells(0), MedicalViewerMultiCell)).GetCellImage() myImage.Save(Path.Combine(LEAD_VARS.ImagesDir, "FirstCell.bmp")) myImage.Dispose() myForm.ShowDialog() End Sub Public NotInheritable Class LEAD_VARS Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images" End Class
using Leadtools; using Leadtools.Codecs; using Leadtools.MedicalViewer; using Leadtools.ImageProcessing.Core; [TestMethod] 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:\Users\Public\Documents\LEADTOOLS Images"; }