C#
VB
Java
Objective-C
WinRT C#
C++
Fills the image alpha values, while preserving the other image components.
public class SetAlphaValuesCommand : RasterCommand Public Class SetAlphaValuesCommandInherits Leadtools.Imageprocessing.RasterCommandImplements Leadtools.Imageprocessing.IRasterCommand
public sealed class SetAlphaValuesCommand : Leadtools.Imageprocessing.IRasterCommand @interface LTSetAlphaValuesCommand : LTRasterCommand public class SetAlphaValuesCommand extends RasterCommand function Leadtools.ImageProcessing.SetAlphaValuesCommand() public ref class SetAlphaValuesCommand : public Leadtools.Imageprocessing.RasterCommand, Leadtools.Imageprocessing.IRasterCommand This command only works with images that are 32 or 64-bit bits per pixel.
This example will load an image, convert it to 32-bit/pixel and then set the alpha values to half the maximum allowed
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing;using LeadtoolsExamples.Common;public void SetAlphaValuesCommandExample(){RasterCodecs codecs = new RasterCodecs();string srcFileName = Path.Combine(ImagesPath.Path, "Image1.cmp");string destFileName = Path.Combine(ImagesPath.Path, "SetAlphaValuesCommand.bmp");// Load the source image from diskRasterImage image = codecs.Load(srcFileName);// Convert the image to 32-bits/pixelColorResolutionCommand colorResolution = new ColorResolutionCommand(ColorResolutionCommandMode.InPlace,32,RasterByteOrder.Bgr,RasterDitheringMethod.None,ColorResolutionCommandPaletteFlags.None,null);colorResolution.Run(image);Assert.IsTrue(image.BitsPerPixel == 32);// Set the alpha valuesSetAlphaValuesCommand setAlphaValues = new SetAlphaValuesCommand();setAlphaValues.Alpha = 128;setAlphaValues.Run(image);// Save the image back to diskcodecs.Save(image, destFileName, RasterImageFormat.Bmp, 32);// Clean Upimage.Dispose();codecs.Dispose();}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessingPublic Sub SetAlphaValuesCommandExample()Dim codecs As RasterCodecs = New RasterCodecs()Dim srcFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "Image1.cmp")Dim destFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "SetAlphaValuesCommand.bmp")' Load the source image from diskDim image As RasterImage = codecs.Load(srcFileName)' Convert the image to 32-bits/pixelDim colorResolution As ColorResolutionCommand = New ColorResolutionCommand(ColorResolutionCommandMode.InPlace, 32,RasterByteOrder.Bgr, RasterDitheringMethod.None,ColorResolutionCommandPaletteFlags.None, Nothing)colorResolution.Run(image)Debug.Assert(image.BitsPerPixel = 32)' Set the alpha valuesDim setAlphaValues As SetAlphaValuesCommand = New SetAlphaValuesCommand()setAlphaValues.Alpha = 128setAlphaValues.Run(image)' Save the image back to diskcodecs.Save(image, destFileName, RasterImageFormat.Bmp, 32)' Clean Upimage.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.Examples;using Leadtools.ImageProcessing;using Leadtools.Windows.Media;public void SetAlphaValuesCommandExample(RasterImage image, Stream destStream){RasterCodecs codecs = new RasterCodecs();// Convert the image to 32-bits/pixelColorResolutionCommand colorResolution = new ColorResolutionCommand(ColorResolutionCommandMode.InPlace,32,RasterByteOrder.Bgr,RasterDitheringMethod.None,ColorResolutionCommandPaletteFlags.None,null);colorResolution.Run(image);Debug.Assert(image.BitsPerPixel == 32);// Set the alpha valuesSetAlphaValuesCommand setAlphaValues = new SetAlphaValuesCommand();setAlphaValues.Alpha = 128;setAlphaValues.Run(image);// Save the image back to diskcodecs.Save(image, destStream, RasterImageFormat.Bmp, 32);// Clean Upimage.Dispose();}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessingImports Leadtools.Windows.MediaPublic Sub SetAlphaValuesCommandExample(ByVal image As RasterImage, ByVal destStream As Stream)Dim codecs As RasterCodecs = New RasterCodecs()' Convert the image to 32-bits/pixelDim colorResolution As ColorResolutionCommand = New ColorResolutionCommand(ColorResolutionCommandMode.InPlace, 32, RasterByteOrder.Bgr, RasterDitheringMethod.None, ColorResolutionCommandPaletteFlags.None, Nothing)colorResolution.Run(image)Debug.Assert(image.BitsPerPixel = 32)' Set the alpha valuesDim setAlphaValues As SetAlphaValuesCommand = New SetAlphaValuesCommand()setAlphaValues.Alpha = 128setAlphaValues.Run(image)' Save the image back to diskcodecs.Save(image, destStream, RasterImageFormat.Bmp, 32)' Clean Upimage.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
