Rotation

Stamp.Rotation property

Obtiene o establece la rotación del sello en grados.

public float Rotation { get; set; }

Ejemplos

PdfFileStamp fileStamp = new PdfFileStamp("input.pdf", "output.pdf");
Stamp stamp = new Stamp();
stamp.BindLogo(new FormattedText("STAMP"));
stamp.Rotation = 90;
fileStamp.AddStamp(stamp);
fileStamp.Close();

Ver también