C#
VB
Java
Objective-C
WinRT C#
C++
Increases or decreases the allocated height of an image.
public void ChangeHeight(int height)
Public Sub ChangeHeight( _ByVal height As Integer _)
public void ChangeHeight(int height)
- (BOOL)changeHeight:(NSInteger)newHeight error:(NSError **)error public void changeHeight(int height) function Leadtools.RasterImage.ChangeHeight(height)
public:void ChangeHeight(int height)
height
New height in pixels.
You can use this method in a callback routine to adjust the allocation when loading an image of unknown height.
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing;using Leadtools.ImageProcessing.Core;using Leadtools.ImageProcessing.Color;using Leadtools.Dicom;using Leadtools.Drawing;using Leadtools.Controls;using LeadtoolsExamples.Common;using Leadtools.Svg;public void ChangeHeightExample(){RasterCodecs codecs = new RasterCodecs();// Load the imageRasterImage image = codecs.Load(Path.Combine(ImagesPath.Path, "IMAGE1.CMP"));Console.WriteLine(string.Format("Height: {0}", image.Height));image.ChangeHeight(image.Height / 2);Console.WriteLine(string.Format("Height: {0}", image.Height));image.Dispose();codecs.Dispose();}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessingImports Leadtools.ImageProcessing.CoreImports Leadtools.ImageProcessing.ColorImports Leadtools.ControlsImports Leadtools.DicomImports Leadtools.DrawingImports Leadtools.SvgPublic Sub ChangeHeightExample()Dim codecs As RasterCodecs = New RasterCodecs()' Load the imageDim image As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE1.CMP"))Console.WriteLine(String.Format("Height: {0}", image.Height))image.ChangeHeight(image.Height \ 2)Console.WriteLine(String.Format("Height: {0}", image.Height))image.Dispose()codecs.Dispose()End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
using Leadtools;using Leadtools.Codecs;using Leadtools.Dicom;using Leadtools.ImageProcessing;using Leadtools.ImageProcessing.Core;using Leadtools.ImageProcessing.Color;using Leadtools.Examples;using Leadtools.Windows.Media;public void ChangeHeightExample(RasterImage image){Debug.WriteLine(string.Format("Height: {0}", image.Height));int newHeight = image.Height / 2;image.ChangeHeight(newHeight);Debug.WriteLine(string.Format("Height: {0}", image.Height));Debug.Assert(image.Height == newHeight);image.Dispose();}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.DicomImports Leadtools.ImageProcessingImports Leadtools.ImageProcessing.CoreImports Leadtools.ImageProcessing.ColorImports Leadtools.Windows.MediaPublic Sub ChangeHeightExample(ByVal image As RasterImage)Debug.WriteLine(String.Format("Height: {0}", image.Height))Dim newHeight As Integer = image.Height / 2image.ChangeHeight(newHeight)Debug.WriteLine(String.Format("Height: {0}", image.Height))Debug.Assert(image.Height = newHeight)image.Dispose()End Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
