Вы можете добавить текстовый штамп в PDF-документы, используя Aspose.PDF для. NET. Кроме того, он позволяет указать положение штампа по X, Y. Следующий фрагмент кода можно использовать для добавления текстового штампа в PDF:
// Open document
Document pdfDocument = new Document("AddTextStamp.pdf");
// Create text stamp
TextStamp textStamp = new TextStamp("Sample Stamp");
// Set whether stamp is background
textStamp.Background = true;
// Set origin
textStamp.XIndent = 100;
textStamp.YIndent = 100;
// Rotate stamp
textStamp.Rotate = Rotation.on90;
// Set text properties
textStamp.TextState.Font = FontRepository.FindFont("Arial");
textStamp.TextState.FontSize = 14.0F;
textStamp.TextState.FontStyle = FontStyles.Bold;
textStamp.TextState.FontStyle = FontStyles.Italic;
textStamp.TextState.ForegroundColor = Aspose.Pdf.Color.FromRgb(System.Drawing.Color.Aqua);
// Add stamp to particular page
pdfDocument.Pages[1].AddStamp(textStamp);
// Save output document
pdfDocument.Save("AddTextStamp_out.pdf");
PS: Это Асад Али, и я работаю евангелистом разработчиков в Aspose.