Rotation

Stamp.Rotation property

Hämtar eller ställer in stämpelns rotation i grader.

public float Rotation { get; set; }

Exempel

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();

Se även