Initializes a new FeatherAlphaBlendCommand class object with explicit parameters.
public FeatherAlphaBlendCommand(Leadtools.RasterImage sourceImage,Leadtools.LeadPoint sourcePoint,Leadtools.LeadRect destinationRectangle,Leadtools.RasterImage maskImage,Leadtools.LeadPoint maskSourcePoint)
Public Function New( _ByVal sourceImage As Leadtools.RasterImage, _ByVal sourcePoint As Leadtools.LeadPoint, _ByVal destinationRectangle As Leadtools.LeadRect, _ByVal maskImage As Leadtools.RasterImage, _ByVal maskSourcePoint As Leadtools.LeadPoint _)
public FeatherAlphaBlendCommand(Leadtools.RasterImage sourceImage,Leadtools.LeadPoint sourcePoint,Leadtools.LeadRect destinationRectangle,Leadtools.RasterImage maskImage,Leadtools.LeadPoint maskSourcePoint)
- (instancetype)initWithSourceImage:(LTRasterImage *)sourceImagesourcePoint:(LeadPoint)sourcePointdestinationRectangle:(LeadRect)destinationRectanglemaskImage:(LTRasterImage *)maskImagemaskSourcePoint:(LeadPoint)maskSourcePoint
public FeatherAlphaBlendCommand(RasterImage sourceImage,LeadPoint sourcePoint,LeadRect destinationRectangle,RasterImage maskImage,LeadPoint maskSourcePoint)
function FeatherAlphaBlendCommand(sourceImage ,sourcePoint ,destinationRectangle ,maskImage ,maskSourcePoint)
public:FeatherAlphaBlendCommand(Leadtools.RasterImage^ sourceImage,Leadtools.LeadPoint sourcePoint,Leadtools.LeadRect destinationRectangle,Leadtools.RasterImage^ maskImage,Leadtools.LeadPoint maskSourcePoint)
sourceImage
RasterImage object that references the source image.
sourcePoint
LeadPoint structure that contains the origin of the source rectangle. The width and height are the same width and height for the destination rectangle.
destinationRectangle
LeadRect structure that contains the destination rectangle.
maskImage
RasterImage object that references the fade mask. If you want to combine the two images just with opacity set this property to null.
maskSourcePoint
LeadPoint structure that contains the origin of the mask rectangle. The width and height for the mask rectangle are the same width and height for the destination rectangle.
Run the FeatherAlphaBlendCommand on an image.
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessing.EffectsPublic Sub FeatherAlphaBlendConstructorExample_S2()Dim codecs As New RasterCodecs()codecs.ThrowExceptionsOnInvalidImages = TrueDim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Master.jpg"))' Prepare the commandTryDim maskImage As RasterImage' Loading the maskimage.maskImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ImageProcessingDemo\image3.cmp"), 24, CodecsLoadByteOrder.Bgr, 1, 1)Dim command As FeatherAlphaBlendCommand = New FeatherAlphaBlendCommand(leadImage, New LeadPoint(leadImage.Width \ 2, leadImage.Height \ 2), New LeadRect(0, 0, leadImage.Width \ 2, leadImage.Height \ 2), maskImage, New _LeadPoint(leadImage.Width \ 2, leadImage.Height \ 2))command.Run(leadImage)codecs.Save(leadImage, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24)Catch ex As ExceptionMessageBox.Show(ex.Message)End TryEnd SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Effects;public void FeatherAlphaBlendConstructorExample_S2(){// Load an imageRasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Master.jpg"));// Prepare the commandtry{RasterImage maskImage;// Loading the maskimage.maskImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, @"ImageProcessingDemo\Image3.cmp"), 24, CodecsLoadByteOrder.Bgr, 1, 1);FeatherAlphaBlendCommand command = new FeatherAlphaBlendCommand(image, new LeadPoint(image.Width / 2, image.Height / 2), new LeadRect(0, 0, image.Width / 2, image.Height / 2), maskImage, new LeadPoint(image.Width / 2, image.Height / 2));command.Run(image);codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24);}catch (Exception exception){MessageBox.Show(exception.Message);}}static class LEAD_VARS{public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";}
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Effects;using Leadtools.ImageProcessing;public async Task FeatherAlphaBlendConstructorExample_S2(){// Load an imageRasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;// Load the imagestring srcFileName = @"Assets\Master.jpg";StorageFile loadFile = await Tools.AppInstallFolder.GetFileAsync(srcFileName);RasterImage image = await codecs.LoadAsync(LeadStreamFactory.Create(loadFile));// Prepare the commandtry{RasterImage maskImage;// Loading the maskimage.srcFileName = @"Assets\Image3.cmp";loadFile = await Tools.AppInstallFolder.GetFileAsync(srcFileName);maskImage = await codecs.LoadAsync(LeadStreamFactory.Create(loadFile));FeatherAlphaBlendCommand command = new FeatherAlphaBlendCommand(image, LeadPointHelper.Create(image.Width / 2, image.Height / 2), LeadRectHelper.Create(0, 0, image.Width / 2, image.Height / 2), maskImage,LeadPointHelper.Create(image.Width / 2, image.Height / 2));command.Run(image);//Save as BMPstring destFileName = @"result.bmp";StorageFile saveFile = await Tools.AppLocalFolder.CreateFileAsync(destFileName);await codecs.SaveAsync(image, LeadStreamFactory.Create(saveFile), RasterImageFormat.Bmp, 24);}catch (Exception exception){Debug.WriteLine(exception.Message);}}
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Effects;using Leadtools.Examples;public void FeatherAlphaBlendConstructorExample_S2(RasterImage image, RasterImage maskImage, Stream outStream){// Prepare the commandFeatherAlphaBlendCommand command = new FeatherAlphaBlendCommand(image, new LeadPoint(image.Width / 2, image.Height / 2), new LeadRect(0, 0, image.Width / 2, image.Height / 2), maskImage, new LeadPoint(image.Width / 2, image.Height / 2));command.Run(image);// Save result imageRasterCodecs codecs = new RasterCodecs();codecs.Save(image, outStream, RasterImageFormat.Jpeg, 24);image.Dispose();maskImage.Dispose();}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessing.EffectsPublic Sub FeatherAlphaBlendConstructorExample_S2(ByVal image As RasterImage, ByVal maskImage As RasterImage, ByVal outStream As Stream)' Prepare the commandDim command As FeatherAlphaBlendCommand = _New FeatherAlphaBlendCommand(image, New LeadPoint(image.Width / 2, image.Height / 2), New LeadRect(0, 0, image.Width / 2, image.Height / 2), maskImage, _New LeadPoint(image.Width / 2, image.Height / 2))command.Run(image)' Save result imageDim codecs As RasterCodecs = New RasterCodecs()codecs.Save(image, outStream, RasterImageFormat.Jpeg, 24)image.Dispose()maskImage.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
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.