public FeatherAlphaBlendCommand(
RasterImage sourceImage,
LeadPoint sourcePoint,
LeadRect destinationRectangle,
RasterImage maskImage,
LeadPoint maskSourcePoint
)
- (instancetype)initWithSourceImage:(LTRasterImage *)sourceImage sourcePoint:(LeadPoint)sourcePoint destinationRectangle:(LeadRect)destinationRectangle maskImage:(LTRasterImage *)maskImage maskSourcePoint:(LeadPoint)maskSourcePoint NS_DESIGNATED_INITIALIZER;
public FeatherAlphaBlendCommand(
RasterImage sourceImage,
LeadPoint sourcePoint,
LeadRect destinationRectangle,
RasterImage maskImage,
LeadPoint maskSourcePoint
);
public:
FeatherAlphaBlendCommand(
RasterImage^ sourceImage,
LeadPoint sourcePoint,
LeadRect destinationRectangle,
RasterImage^ maskImage,
LeadPoint maskSourcePoint
)
__init__(self,sourceImage,sourcePoint,destinationRectangle,maskImage,maskSourcePoint) # Overloaded constructor
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.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Effects;
public void FeatherAlphaBlendConstructorExample_S2()
{
// Load an image
RasterCodecs codecs = new RasterCodecs();
codecs.ThrowExceptionsOnInvalidImages = true;
RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Master.jpg"));
// Prepare the command
try
{
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:\LEADTOOLS23\Resources\Images";
}
import java.io.File;
import java.io.IOException;
import org.junit.*;
import org.junit.runner.JUnitCore;
import org.junit.runner.Result;
import org.junit.runner.notification.Failure;
import static org.junit.Assert.assertTrue;
import leadtools.*;
import leadtools.codecs.*;
import leadtools.imageprocessing.effects.*;
public void featherAlphaBlendConstructorExample_S2() {
// Load an image
RasterCodecs codecs = new RasterCodecs();
codecs.setThrowExceptionsOnInvalidImages(true);
RasterImage image = codecs.load(combine(LEAD_VARS_IMAGES_DIR, "Master.jpg"));
// Prepare the command
try {
RasterImage maskImage;
// Loading the maskimage.
maskImage = codecs.load(combine(LEAD_VARS_IMAGES_DIR, "Image3.cmp"), 24, CodecsLoadByteOrder.BGR, 1, 1);
FeatherAlphaBlendCommand command = new FeatherAlphaBlendCommand(image,
new LeadPoint(image.getWidth() / 2, image.getHeight() / 2),
new LeadRect(0, 0, image.getWidth() / 2, image.getHeight() / 2), maskImage,
new LeadPoint(image.getWidth() / 2, image.getHeight() / 2));
int change = command.run(image);
assertTrue(change != RasterImageChangedFlags.NONE);
codecs.save(image, combine(LEAD_VARS_IMAGES_DIR, "Result.jpg"), RasterImageFormat.JPEG, 24);
} catch (Exception exception) {
System.out.println(exception.getMessage());
}
}
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