public int ImageWidth { get; } @property (nonatomic, assign, readonly) NSInteger imageWidth public int getImageWidth(); public:property int ImageWidth {int get();}
ImageWidth # get (RasterImage)
The width of this RasterImage in pixels, taking ViewPerspective into account.
Use Width to get the actual width of the image data scanlines.
For more information refer to Accounting For View Perspective.
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 Leadtools.Svg;public void RasterImageExample(){RasterCodecs codecs = new RasterCodecs();string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "Image1.cmp");string destFileName1 = Path.Combine(LEAD_VARS.ImagesDir, "Image1_RasterImage1.bmp");string destFileName2 = Path.Combine(LEAD_VARS.ImagesDir, "Image1_RasterImage2.bmp");// Load the imageRasterImage srcImage = codecs.Load(srcFileName);// Creates a new image in memory with same dimensions as the source imageRasterImage destImage = new RasterImage(RasterMemoryFlags.Conventional,srcImage.Width,srcImage.Height,srcImage.BitsPerPixel,srcImage.Order,srcImage.ViewPerspective,srcImage.GetPalette(),IntPtr.Zero,0);// Copy the data from the source image to the destination imagesrcImage.Access();destImage.Access();byte[] buffer = new byte[srcImage.BytesPerLine];for (int y = 0; y < srcImage.Height; y++){srcImage.GetRow(y, buffer, 0, buffer.Length);destImage.SetRow(y, buffer, 0, buffer.Length);}destImage.Release();srcImage.Release();// We do not need the source image anymoresrcImage.Dispose();// save the destination imagecodecs.Save(destImage, destFileName1, RasterImageFormat.Bmp, 24);// perform image processing on the imageFlipCommand flipCmd = new FlipCommand();flipCmd.Horizontal = false;flipCmd.Run(destImage);// save itcodecs.Save(destImage, destFileName2, RasterImageFormat.Bmp, 24);// Clean updestImage.Dispose();codecs.Dispose();}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images";}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
