'Declaration Public Function Blt( _ ByVal sourceImage As DicomImage, _ ByVal baseAreaOffset As Point, _ ByVal bltAreaOffset As Point, _ ByVal outputSize As Size, _ Optional ByVal opacity As Single _ ) As DicomImage
'Usage Dim instance As DicomImage Dim sourceImage As DicomImage Dim baseAreaOffset As Point Dim bltAreaOffset As Point Dim outputSize As Size Dim opacity As Single Dim value As DicomImage value = instance.Blt(sourceImage, baseAreaOffset, bltAreaOffset, outputSize, opacity)
public DicomImage Blt( DicomImage sourceImage, Point baseAreaOffset, Point bltAreaOffset, Size outputSize, float opacity )
public: DicomImage^ Blt( DicomImage^ sourceImage, Point baseAreaOffset, Point bltAreaOffset, Size outputSize, float 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