Пошаговое руководство по преобразованию текста в PDF-документе на C# и .NET

Обработка текста является основополагающим аспектом работы с PDF-документами. Преобразование текста в PDF-документ может придать вашим файлам динамичный и визуально привлекательный вид. С помощью мощной библиотеки SautinSoft.Pdf вы можете легко применять различные преобразования, такие как поворот и масштабирование, к тексту, отображаемому на странице PDF, с помощью C# и .NET. В этой статье вы познакомитесь с этим процессом и увидите практические примеры.

Масштабирование текста предполагает изменение матрицы преобразования для масштабирования текста по горизонтали, вертикали или в обоих направлениях.

Следующий пример кода показывает, как применять различные преобразования, такие как поворот и масштабирование, к тексту, нарисованному на странице PDF:

  1. Добавить SautinSoft.PDF из NuGet.
  2. Создать новую страницу.
  3. Заполнить объект PdfFormattedText многоязычным текстом.
  4. Нарисовать текст.
  5. Выполнить итерацию по оставшимся позициям.
  6. Сохранить документ.

Выходной результат:

Полный код

using System;
using SautinSoft.Pdf;
using System.IO;
using SautinSoft.Pdf.Content;

class Program
{
    /// <summary>
    /// Text transformation and rotation.
    /// </summary>
    /// <remarks>
    /// Details: https://sautinsoft.com/products/pdf/help/net/developer-guide/text-transformations.php
    /// </remarks>
    static void Main()
    {
        // Before starting this example, please get a free trial key:
        // https://sautinsoft.com/start-for-free/

        // Apply the key here:
        // PdfDocument.SetLicense("...");

        using (var document = new PdfDocument())
        {
            //Create a new page.
            var page = document.Pages.Add();

            using (var formattedText = new PdfFormattedText())
            {
                // Set up and fill the PdfFormattedText object.
                var text = "Rotated by 30 degrees around origin.";
                formattedText.Opacity = 0.2;
                formattedText.Append(text);
                var origin = new PdfPoint(50, 650);
                // Draw this text.
                page.Content.DrawText(formattedText, origin);
                // Clear the PdfFormattedText object.
                formattedText.Clear();
                // Set up and fill the PdfFormattedText object.
                formattedText.Opacity = 1;
                formattedText.Append(text);
                // Create a trasformation matrix.
                var transform = PdfMatrix.Identity;
                transform.Translate(origin.X, origin.Y);
                transform.Rotate(30);
                // Draw this text using a transformation matrix.
                page.Content.DrawText(formattedText, transform);
                // Clear the PdfFormattedText object.
                formattedText.Clear();
                // Set up and fill the PdfFormattedText object.
                text = "Rotated by 30 degrees around center.";
                formattedText.Opacity = 0.2;
                formattedText.Append(text);
                origin = new PdfPoint(300, 650);
                // Draw this text.
                page.Content.DrawText(formattedText, origin);
                // Clear the PdfFormattedText object.
                formattedText.Clear();
                // Set up and fill the PdfFormattedText object.
                formattedText.Opacity = 1;
                formattedText.Append(text);
                // Create a trasformation matrix.
                transform = PdfMatrix.Identity;
                transform.Translate(origin.X, origin.Y);
                transform.Rotate(30, formattedText.Width / 2, formattedText.Height / 2);
                // Draw this text using a transformation matrix.
                page.Content.DrawText(formattedText, transform);
                // Clear the PdfFormattedText object.
                formattedText.Clear();
                // Set up and fill the PdfFormattedText object.
                text = "Scaled horizontally by 0.5 around origin.";
                formattedText.Opacity = 0.2;
                formattedText.Append(text);
                origin = new PdfPoint(50, 500);
                // Draw this text.
                page.Content.DrawText(formattedText, origin);
                // Clear the PdfFormattedText object.
                formattedText.Clear();
                // Set up and fill the PdfFormattedText object.
                formattedText.Opacity = 1;
                formattedText.Append(text);
                // Create a trasformation matrix.
                transform = PdfMatrix.Identity;
                transform.Translate(origin.X, origin.Y);
                transform.Scale(0.5, 1);
                // Draw this text using a transformation matrix.
                page.Content.DrawText(formattedText, transform);
                // Clear the PdfFormattedText object.
                formattedText.Clear();
                // Set up and fill the PdfFormattedText object.
                text = "Scaled horizontally by 0.5 around center.";
                formattedText.Opacity = 0.2;
                formattedText.Append(text);
                origin = new PdfPoint(300, 500);
                // Draw this text.
                page.Content.DrawText(formattedText, origin);
                // Clear the PdfFormattedText object.
                formattedText.Clear();
                // Set up and fill the PdfFormattedText object.
                formattedText.Opacity = 1;
                formattedText.Append(text);
                // Create a trasformation matrix.
                transform = PdfMatrix.Identity;
                transform.Translate(origin.X, origin.Y);
                transform.Scale(0.5, 1, formattedText.Width / 2, formattedText.Height / 2);
                // Draw this text using a transformation matrix.
                page.Content.DrawText(formattedText, transform);
                // Clear the PdfFormattedText object.
                formattedText.Clear();
                // Set up and fill the PdfFormattedText object.
                text = "Scaled vertically by 2 around origin.";
                formattedText.Opacity = 0.2;
                formattedText.Append(text);
                origin = new PdfPoint(50, 400);
                // Draw this text.
                page.Content.DrawText(formattedText, origin);
                // Clear the PdfFormattedText object.
                formattedText.Clear();
                // Set up and fill the PdfFormattedText object.
                formattedText.Opacity = 1;
                formattedText.Append(text);
                // Create a trasformation matrix.
                transform = PdfMatrix.Identity;
                transform.Translate(origin.X, origin.Y);
                transform.Scale(1, 2);
                // Draw this text using a transformation matrix.
                page.Content.DrawText(formattedText, transform);
                // Clear the PdfFormattedText object.
                formattedText.Clear();
                // Set up and fill the PdfFormattedText object.
                text = "Scaled vertically by 2 around center.";
                formattedText.Opacity = 0.2;
                formattedText.Append(text);
                origin = new PdfPoint(300, 400);
                // Draw this text.
                page.Content.DrawText(formattedText, origin);
                // Clear the PdfFormattedText object.
                formattedText.Clear();
                // Set up and fill the PdfFormattedText object.
                formattedText.Opacity = 1;
                formattedText.Append(text);
                // Create a trasformation matrix.
                transform = PdfMatrix.Identity;
                transform.Translate(origin.X, origin.Y);
                transform.Scale(1, 2, formattedText.Width / 2, formattedText.Height / 2);
                // Draw this text using a transformation matrix.
                page.Content.DrawText(formattedText, transform);
                // Clear the PdfFormattedText object.
                formattedText.Clear();
                // Set up and fill the PdfFormattedText object.
                text = "Rotated by 30 degrees around origin and ";
                var text2 = "scaled horizontally by 0.5 and ";
                var text3 = "vertically by 2 around origin.";
                formattedText.Opacity = 0.2;
                formattedText.AppendLine(text).AppendLine(text2).Append(text3);
                origin = new PdfPoint(50, 200);
                // Draw this text.
                page.Content.DrawText(formattedText, origin);
                // Clear the PdfFormattedText object.
                formattedText.Clear();
                // Set up and fill the PdfFormattedText object.
                formattedText.Opacity = 1;
                formattedText.AppendLine(text).AppendLine(text2).Append(text3);
                // Create a trasformation matrix.
                transform = PdfMatrix.Identity;
                transform.Translate(origin.X, origin.Y);
                transform.Rotate(30);
                transform.Scale(0.5, 2);
                // Draw this text using a transformation matrix.
                page.Content.DrawText(formattedText, transform);
                // Clear the PdfFormattedText object.
                formattedText.Clear();
                // Set up and fill the PdfFormattedText object.
                text = "Rotated by 30 degrees around center and ";
                text2 = "scaled horizontally by 0.5 and ";
                text3 = "vertically by 2 around center.";
                formattedText.Opacity = 0.2;
                formattedText.AppendLine(text).AppendLine(text2).Append(text3);
                origin = new PdfPoint(300, 200);
                // Draw this text.
                page.Content.DrawText(formattedText, origin);
                // Clear the PdfFormattedText object.
                formattedText.Clear();
                // Set up and fill the PdfFormattedText object.
                formattedText.Opacity = 1;
                formattedText.AppendLine(text).AppendLine(text2).Append(text3);
                // Create a trasformation matrix.
                transform = PdfMatrix.Identity;
                transform.Translate(origin.X, origin.Y);
                transform.Rotate(30, formattedText.Width / 2, formattedText.Height / 2);
                transform.Scale(0.5, 2, formattedText.Width / 2, formattedText.Height / 2);
                // Draw this text using a transformation matrix.
                page.Content.DrawText(formattedText, transform);
            }
            // Save PDF Document.
            document.Save("Transformations.pdf");
        }
    }
}

Download

Option Infer On

Imports System
Imports SautinSoft.Pdf
Imports System.IO
Imports SautinSoft.Pdf.Content

Friend Class Program
	''' <summary>
	''' Text transformation and rotation.
	''' </summary>
	''' <remarks>
	''' Details: https://sautinsoft.com/products/pdf/help/net/developer-guide/text-transformations.php
	''' </remarks>
	Shared Sub Main()
		' Before starting this example, please get a free trial key:
		' https://sautinsoft.com/start-for-free/

		' Apply the key here:
		' PdfDocument.SetLicense("...")

		Using document = New PdfDocument()
			'Create a new page.
			Dim page = document.Pages.Add()

			Using formattedText = New PdfFormattedText()
				' Set up and fill the PdfFormattedText object.
				Dim text = "Rotated by 30 degrees around origin."
				formattedText.Opacity = 0.2
				formattedText.Append(text)
				Dim origin = New PdfPoint(50, 650)
				' Draw this text.
				page.Content.DrawText(formattedText, origin)
				' Clear the PdfFormattedText object.
				formattedText.Clear()
				' Set up and fill the PdfFormattedText object.
				formattedText.Opacity = 1
				formattedText.Append(text)
				' Create a trasformation matrix.
				Dim transform = PdfMatrix.Identity
				transform.Translate(origin.X, origin.Y)
				transform.Rotate(30)
				' Draw this text using a transformation matrix.
				page.Content.DrawText(formattedText, transform)
				' Clear the PdfFormattedText object.
				formattedText.Clear()
				' Set up and fill the PdfFormattedText object.
				text = "Rotated by 30 degrees around center."
				formattedText.Opacity = 0.2
				formattedText.Append(text)
				origin = New PdfPoint(300, 650)
				' Draw this text.
				page.Content.DrawText(formattedText, origin)
				' Clear the PdfFormattedText object.
				formattedText.Clear()
				' Set up and fill the PdfFormattedText object.
				formattedText.Opacity = 1
				formattedText.Append(text)
				' Create a trasformation matrix.
				transform = PdfMatrix.Identity
				transform.Translate(origin.X, origin.Y)
				transform.Rotate(30, formattedText.Width / 2, formattedText.Height / 2)
				' Draw this text using a transformation matrix.
				page.Content.DrawText(formattedText, transform)
				' Clear the PdfFormattedText object.
				formattedText.Clear()
				' Set up and fill the PdfFormattedText object.
				text = "Scaled horizontally by 0.5 around origin."
				formattedText.Opacity = 0.2
				formattedText.Append(text)
				origin = New PdfPoint(50, 500)
				' Draw this text.
				page.Content.DrawText(formattedText, origin)
				' Clear the PdfFormattedText object.
				formattedText.Clear()
				' Set up and fill the PdfFormattedText object.
				formattedText.Opacity = 1
				formattedText.Append(text)
				' Create a trasformation matrix.
				transform = PdfMatrix.Identity
				transform.Translate(origin.X, origin.Y)
				transform.Scale(0.5, 1)
				' Draw this text using a transformation matrix.
				page.Content.DrawText(formattedText, transform)
				' Clear the PdfFormattedText object.
				formattedText.Clear()
				' Set up and fill the PdfFormattedText object.
				text = "Scaled horizontally by 0.5 around center."
				formattedText.Opacity = 0.2
				formattedText.Append(text)
				origin = New PdfPoint(300, 500)
				' Draw this text.
				page.Content.DrawText(formattedText, origin)
				' Clear the PdfFormattedText object.
				formattedText.Clear()
				' Set up and fill the PdfFormattedText object.
				formattedText.Opacity = 1
				formattedText.Append(text)
				' Create a trasformation matrix.
				transform = PdfMatrix.Identity
				transform.Translate(origin.X, origin.Y)
				transform.Scale(0.5, 1, formattedText.Width / 2, formattedText.Height / 2)
				' Draw this text using a transformation matrix.
				page.Content.DrawText(formattedText, transform)
				' Clear the PdfFormattedText object.
				formattedText.Clear()
				' Set up and fill the PdfFormattedText object.
				text = "Scaled vertically by 2 around origin."
				formattedText.Opacity = 0.2
				formattedText.Append(text)
				origin = New PdfPoint(50, 400)
				' Draw this text.
				page.Content.DrawText(formattedText, origin)
				' Clear the PdfFormattedText object.
				formattedText.Clear()
				' Set up and fill the PdfFormattedText object.
				formattedText.Opacity = 1
				formattedText.Append(text)
				' Create a trasformation matrix.
				transform = PdfMatrix.Identity
				transform.Translate(origin.X, origin.Y)
				transform.Scale(1, 2)
				' Draw this text using a transformation matrix.
				page.Content.DrawText(formattedText, transform)
				' Clear the PdfFormattedText object.
				formattedText.Clear()
				' Set up and fill the PdfFormattedText object.
				text = "Scaled vertically by 2 around center."
				formattedText.Opacity = 0.2
				formattedText.Append(text)
				origin = New PdfPoint(300, 400)
				' Draw this text.
				page.Content.DrawText(formattedText, origin)
				' Clear the PdfFormattedText object.
				formattedText.Clear()
				' Set up and fill the PdfFormattedText object.
				formattedText.Opacity = 1
				formattedText.Append(text)
				' Create a trasformation matrix.
				transform = PdfMatrix.Identity
				transform.Translate(origin.X, origin.Y)
				transform.Scale(1, 2, formattedText.Width / 2, formattedText.Height / 2)
				' Draw this text using a transformation matrix.
				page.Content.DrawText(formattedText, transform)
				' Clear the PdfFormattedText object.
				formattedText.Clear()
				' Set up and fill the PdfFormattedText object.
				text = "Rotated by 30 degrees around origin and "
				Dim text2 = "scaled horizontally by 0.5 and "
				Dim text3 = "vertically by 2 around origin."
				formattedText.Opacity = 0.2
				formattedText.AppendLine(text).AppendLine(text2).Append(text3)
				origin = New PdfPoint(50, 200)
				' Draw this text.
				page.Content.DrawText(formattedText, origin)
				' Clear the PdfFormattedText object.
				formattedText.Clear()
				' Set up and fill the PdfFormattedText object.
				formattedText.Opacity = 1
				formattedText.AppendLine(text).AppendLine(text2).Append(text3)
				' Create a trasformation matrix.
				transform = PdfMatrix.Identity
				transform.Translate(origin.X, origin.Y)
				transform.Rotate(30)
				transform.Scale(0.5, 2)
				' Draw this text using a transformation matrix.
				page.Content.DrawText(formattedText, transform)
				' Clear the PdfFormattedText object.
				formattedText.Clear()
				' Set up and fill the PdfFormattedText object.
				text = "Rotated by 30 degrees around center and "
				text2 = "scaled horizontally by 0.5 and "
				text3 = "vertically by 2 around center."
				formattedText.Opacity = 0.2
				formattedText.AppendLine(text).AppendLine(text2).Append(text3)
				origin = New PdfPoint(300, 200)
				' Draw this text.
				page.Content.DrawText(formattedText, origin)
				' Clear the PdfFormattedText object.
				formattedText.Clear()
				' Set up and fill the PdfFormattedText object.
				formattedText.Opacity = 1
				formattedText.AppendLine(text).AppendLine(text2).Append(text3)
				' Create a trasformation matrix.
				transform = PdfMatrix.Identity
				transform.Translate(origin.X, origin.Y)
				transform.Rotate(30, formattedText.Width / 2, formattedText.Height / 2)
				transform.Scale(0.5, 2, formattedText.Width / 2, formattedText.Height / 2)
				' Draw this text using a transformation matrix.
				page.Content.DrawText(formattedText, transform)
			End Using
			' Save PDF Document.
			document.Save("Transformations.pdf")
			System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo("Transformations.pdf") With {.UseShellExecute = True})
		End Using
	End Sub
End Class

Download


Если вам нужен пример кода или у вас есть вопрос: напишите нам по адресу support@sautinsoft.ru или спросите в онлайн-чате (правый нижний угол этой страницы) или используйте форму ниже:



Вопросы и предложения всегда приветствуются!

Мы разрабатываем компоненты .Net с 2002 года. Мы знаем форматы PDF, DOCX, RTF, HTML, XLSX и Images. Если вам нужна помощь в создании, изменении или преобразовании документов в различных форматах, мы можем вам помочь. Мы напишем для вас любой пример кода абсолютно бесплатно.