This method rounds the corners of the image and fills them with a specified color.
Syntax
'Declaration
Public Shared Sub RoundCorners( _
ByVal As ImGearRasterPage, _
ByVal As Integer, _
ByVal As ImGearPixel _
)
'Usage
Dim page As ImGearRasterPage
Dim radius As Integer
Dim fillColor As ImGearPixel
ImGearEffects.RoundCorners(page, radius, fillColor)
public static void RoundCorners(
ImGearRasterPage ,
int ,
ImGearPixel
)
public: static void RoundCorners(
ImGearRasterPage* ,
int ,
ImGearPixel*
)
public:
static void RoundCorners(
ImGearRasterPage^ ,
int ,
ImGearPixel^
)
Parameters
- page
- Page to round the corners of.
- radius
- Specifies the radius for rounding.
- fillColor
- Specifies the fill color for the corners.
See Also