Combine pixel data of source image into this image as a base image
public DicomImage Blt(
DicomImage ,
System.Drawing.Point ,
System.Drawing.Point ,
System.Drawing.Size ,
System.float
)
public function Blt(
: DicomImage;
: System.Drawing.Point;
: System.Drawing.Point;
: System.Drawing.Size;
: System.Single
): DicomImage;
public function Blt(
: DicomImage,
: System.Drawing.Point,
: System.Drawing.Point,
: System.Drawing.Size,
: System.float
) : DicomImage;
public: DicomImage* Blt(
DicomImage* ,
System.Drawing.Point ,
System.Drawing.Point ,
System.Drawing.Size ,
System.float
)
public:
DicomImage^ Blt(
DicomImage^ ,
System.Drawing.Point ,
System.Drawing.Point ,
System.Drawing.Size ,
System.float
)
'Declaration
Public Function Blt( _
ByVal As DicomImage, _
ByVal As System.Drawing.Point, _
ByVal As System.Drawing.Point, _
ByVal As System.Drawing.Size, _
Optional ByVal As System.Single _
) As DicomImage
'Usage
Dim instance As DicomImage
Dim sourceImage As DicomImage
Dim baseAreaOffset As System.Drawing.Point
Dim bltAreaOffset As System.Drawing.Point
Dim outputSize As System.Drawing.Size
Dim opacity As System.Single
Dim value As DicomImage
value = instance.Blt(sourceImage, baseAreaOffset, bltAreaOffset, outputSize, opacity)
Parameters
- sourceImage
- Image to copy pixel data from
- baseAreaOffset
- Offset of this(base) image
- bltAreaOffset
- Offset of the source image
- outputSize
- Size of the pixel data in destination image
- opacity
- Alpha value for the source image when combined with this image. Valid values are ranging from 0 - 1, by default full opacity (1) is set
Return Value
A copy of this image combined with the source image in user defined outputSize
Exception | Description |
DicomException | Specific Exception for DICOM errors |
Target Platforms: .NET CLR 4.8 or higher