Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.ImageProcessing
Imports Leadtools.ImageProcessing.Core
Imports Leadtools.ImageProcessing.Color
Imports Leadtools.WinForms
Imports Leadtools.Dicom
Imports Leadtools.Drawing
Public Sub ChangeHeightExample()
Dim codecs As RasterCodecs = New RasterCodecs()
' Load the image
Dim 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 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.ImageProcessing;
using Leadtools.ImageProcessing.Core;
using Leadtools.ImageProcessing.Color;
using Leadtools.WinForms;
using Leadtools.Dicom;
using Leadtools.Drawing;
public void ChangeHeightExample()
{
RasterCodecs codecs = new RasterCodecs();
// Load the image
RasterImage 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();
}
RasterImageExamples.prototype.ChangeHeightExample = function ( )
{
Tools.SetLicense ( ) ;
with (Leadtools) {
with (Leadtools.Codecs) {
var codecs = new RasterCodecs();
// Load the image
var srcFileName = "Assets\\Image1.cmp";
var image;
return Tools.AppInstallFolder().getFileAsync(srcFileName).then(function (loadFile) {
return codecs.loadAsync(LeadStreamFactory.create(loadFile))
})
.then(function (img) {
image = img;
console.info("Height: ", image.height);
var newHeight = image.height / 2;
image.changeHeight(newHeight);
console.info("Height: ", image.height);
console.assert(image.height == newHeight, "image.height == newHeight");
image.close();
codecs.close();
});
}
}
}
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing;
using Leadtools.ImageProcessing.Core;
using Leadtools.ImageProcessing.Color;
using Leadtools.Dicom;
public async Task ChangeHeightExample()
{
RasterCodecs codecs = new RasterCodecs();
// Load the image
string srcFileName = @"Assets\Image1.cmp";
StorageFile loadFile = await Tools.AppInstallFolder.GetFileAsync(srcFileName);
RasterImage image = await codecs.LoadAsync(LeadStreamFactory.Create(loadFile));
Debug.WriteLine(string.Format("Height: {0}", image.Height));
int newHeight = image.Height / 2;
image.ChangeHeight(newHeight);
Debug.WriteLine(string.Format("Height: {0}", image.Height));
Assert.IsTrue(image.Height == newHeight);
image.Dispose();
codecs.Dispose();
}
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 Leadtools
Imports Leadtools.Codecs
Imports Leadtools.Dicom
Imports Leadtools.ImageProcessing
Imports Leadtools.ImageProcessing.Core
Imports Leadtools.ImageProcessing.Color
Imports Leadtools.Windows.Media
Public Sub ChangeHeightExample(ByVal image As RasterImage)
Debug.WriteLine(String.Format("Height: {0}", image.Height))
Dim newHeight As Integer = image.Height / 2
image.ChangeHeight(newHeight)
Debug.WriteLine(String.Format("Height: {0}", image.Height))
Debug.Assert(image.Height = newHeight)
image.Dispose()
End Sub