ByteScout Premium Suite - C# - Set text rotation in pdf with pdf sdk - ByteScout

ByteScout Premium Suite – C# – Set text rotation in pdf with pdf sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Premium Suite – C# – Set text rotation in pdf with pdf sdk

How to set text rotation in pdf with pdf sdk in C# and ByteScout Premium Suite

Learn to set text rotation in pdf with pdf sdk in C#

This sample source code below will display you how to set text rotation in pdf with pdf sdk in C#. ByteScout Premium Suite is the set that includes 12 SDK products from ByteScout including tools and components for PDF, barcodes, spreadsheets, screen video recording. It can set text rotation in pdf with pdf sdk in C#.

The SDK samples given below describe how to quickly make your application do set text rotation in pdf with pdf sdk in C# with the help of ByteScout Premium Suite. Simply copy and paste in your C# project or application you and then run your app! Check C# sample code samples to see if they respond to your needs and requirements for the project.

Our website gives trial version of ByteScout Premium Suite for free. It also includes documentation and source code samples.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

Program.cs
      
using System.Diagnostics; using Bytescout.PDF; namespace Text_Rotation { class Program { static void Main(string[] args) { // Create PDF document Document document = new Document(); document.RegistrationName = "demo"; document.RegistrationKey = "demo"; // Create page Page page = new Page(PaperFormat.A4); // Add page to document document.Pages.Add(page); Canvas canvas = page.Canvas; // Prepare font and brush Font font = new Font(StandardFonts.Helvetica, 24); SolidBrush blackBrush = new SolidBrush(); // Draw simple text canvas.DrawString("Simple text.", font, blackBrush, 50, 100); // Save canvas state canvas.SaveGraphicsState(); // Move canvas origin (0,0) point to (50,100) canvas.TranslateTransform(50, 100); // Rotate canvas at 45 deg around of the origin point canvas.RotateTransform(45); canvas.DrawString("Rotated 45", font, blackBrush, 0, 0); // Rotate another 45 deg canvas.RotateTransform(45); canvas.DrawString("Rotated 90", font, blackBrush, 0, 0); // Restore canvas state to reset all transformations canvas.RestoreGraphicsState(); // Save document document.Save("result.pdf"); // Open result document in default associated application (for demo purpose) ProcessStartInfo processStartInfo = new ProcessStartInfo("result.pdf"); processStartInfo.UseShellExecute = true; Process.Start(processStartInfo); } } }

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Premium Suite Home Page

Explore ByteScout Premium Suite Documentation

Explore Samples

Sign Up for ByteScout Premium Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Premium Suite Home Page

Explore ByteScout Premium Suite Documentation

Explore Samples

Sign Up for ByteScout Premium Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next