GdPicture image identifier.
The width of the border in pixel.
Color of the border. A suitable color value can be obtained by using the ARGBI() method.
Example





In This Topic
GdPicture14 Namespace / GdPictureImaging Class / AddBorderBottom Method / AddBorderBottom(Int32,Int32,Int32) Method

AddBorderBottom(Int32,Int32,Int32) Method

In This Topic
Adds border to the bottom of a GdPicture image.
Syntax
'Declaration

 

Public Overloads Function AddBorderBottom( _

   ByVal ImageID As Integer, _

   ByVal BorderHeight As Integer, _

   ByVal BorderColor As Integer _

) As GdPictureStatus
public GdPictureStatus AddBorderBottom( 

   int ImageID,

   int BorderHeight,

   int BorderColor

)
public function AddBorderBottom( 

    ImageID: Integer;

    BorderHeight: Integer;

    BorderColor: Integer

): GdPictureStatus; 
public function AddBorderBottom( 

   ImageID : int,

   BorderHeight : int,

   BorderColor : int

) : GdPictureStatus;
public: GdPictureStatus AddBorderBottom( 

   int ImageID,

   int BorderHeight,

   int BorderColor

) 
public:

GdPictureStatus AddBorderBottom( 

   int ImageID,

   int BorderHeight,

   int BorderColor

) 

Parameters

ImageID
GdPicture image identifier.
BorderHeight
The width of the border in pixel.
BorderColor
Color of the border. A suitable color value can be obtained by using the ARGBI() method.

Return Value

A member of the GdPictureStatus enumeration.
Remarks

This method requires the Image Documents component to run.

Example
Adding the border to the bottom of a GdPicture image.
using (GdPictureImaging gdpictureImaging = new GdPictureImaging())

{

    // LoadInMemory parameter is set to true in order to be able to update the input file.

    int imageID = gdpictureImaging.CreateGdPictureImageFromFile("image.png", true);

 

    // Add a 10 pixels green border at the bottom of the image.

    int borderHeight = 10;

    int borderColor = gdpictureImaging.ARGBI(255, 0, 255, 0);

    gdpictureImaging.AddBorderBottom(imageID, borderHeight, borderColor);

    gdpictureImaging.SaveAsPNG(imageID, "image.png");

    gdpictureImaging.ReleaseGdPictureImage(imageID);

}
See Also