ByteScout PDF Suite - VB.NET - Rotate text in pdf with pdf sdk - ByteScout

ByteScout PDF Suite – VB.NET – Rotate text in pdf with pdf sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout PDF Suite – VB.NET – Rotate text in pdf with pdf sdk

How to rotate text in pdf with pdf sdk in VB.NET using ByteScout PDF Suite

If you want to learn more then this tutorial will show how to rotate text in pdf with pdf sdk in VB.NET

We made thousands of pre-made source code pieces for easy implementation in your own programming projects. ByteScout PDF Suite can rotate text in pdf with pdf sdk. It can be applied from VB.NET. ByteScout PDF Suite is the bundle that provides six different SDK libraries to work with PDF from generating rich PDF reports to extracting data from PDF documents and converting them to HTML. This bundle includes PDF (Generator) SDK, PDF Renderer SDK, PDF Extractor SDK, PDF to HTML SDK, PDF Viewer SDK and PDF Generator SDK for Javascript.

The SDK samples given below describe how to quickly make your application do rotate text in pdf with pdf sdk in VB.NET with the help of ByteScout PDF Suite. IF you want to implement the functionality, just copy and paste this code for VB.NET below into your code editor with your app, compile and run your application. Complete and detailed tutorials and documentation are available along with installed ByteScout PDF Suite if you’d like to learn more about the topic and the details of the API.

ByteScout PDF Suite free trial version is available on our website. VB.NET and other programming languages are supported.

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

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

Module1.vb
      
Imports Bytescout.PDF Module Module1 Sub Main() ' Create PDF document Dim document = New Document() document.RegistrationName = "demo" document.RegistrationKey = "demo" ' Create page Dim page = New Page(PaperFormat.A4) ' Add page to document document.Pages.Add(page) Dim canvas = page.Canvas ' Prepare font and brush Dim font = New Bytescout.PDF.Font(StandardFonts.Helvetica, 24) Dim blackBrush = New Bytescout.PDF.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 PDF document in default associated application (for demo puprpose) Process.Start("result.pdf") End Sub End Module

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout PDF Suite Home Page

Explore ByteScout PDF Suite Documentation

Explore Samples

Sign Up for ByteScout PDF 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 PDF Suite Home Page

Explore ByteScout PDF Suite Documentation

Explore Samples

Sign Up for ByteScout PDF Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next