Stamp.BindImage

BindImage(string)

Sets image as a stamp.

public void BindImage(string imageFile)
ParameterTypeDescription
imageFileStringImage file name and path.

Examples

PdfFileStamp fileStamp = new PdfFileStamp("input.pdf", "output.pdf");
Stamp stamp = new Stamp();
stamp.BindImage("image.jpg");
fileStamp.AddStamp(stamp);
fileStamp.Close();

See Also


BindImage(Stream)

Sets image which will be used as stamp.

public void BindImage(Stream image)
ParameterTypeDescription
imageStreamStream which contains image data.

See Also