ByteScout Premium Suite - VBScript - Draw lines and curves in pdf with pdf sdk - ByteScout

ByteScout Premium Suite – VBScript – Draw lines and curves in pdf with pdf sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Premium Suite – VBScript – Draw lines and curves in pdf with pdf sdk

How to draw lines and curves in pdf with pdf sdk in VBScript using ByteScout Premium Suite

Continuous learning is a crucial part of computer science and this tutorial shows how to draw lines and curves in pdf with pdf sdk in VBScript

The coding instructions are formulated to help you to try-out the features without the requirement to write your own code. ByteScout Premium Suite can draw lines and curves in pdf with pdf sdk. It can be applied from VBScript. ByteScout Premium Suite is the set that includes 12 SDK products from ByteScout including tools and components for PDF, barcodes, spreadsheets, screen video recording.

These VBScript code samples for VBScript guide developers to speed up coding of the application when using ByteScout Premium Suite. Simply copy and paste in your VBScript project or application you and then run your app! Check VBScript sample code samples to see if they respond to your needs and requirements for the project.

You can download free trial version of ByteScout Premium Suite from our website with this and other source code samples for VBScript.

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

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

LinesAndCurves.vbs
      
' This example demonstrates how to draw lines and curves. ' Create Bytescout.PDF.Document object Set pdfDocument = CreateObject("Bytescout.PDF.Document") pdfDocument.RegistrationName = "demo" pdfDocument.RegistrationKey = "demo" Set comHelpers = pdfDocument.ComHelpers ' Add page Set page1 = comHelpers.CreatePage(comHelpers.PAPERFORMAT_A4) pdfDocument.Pages.Add(page1) Set canvas = page1.Canvas Set blackPen = comHelpers.CreateSolidPen(comHelpers.CreateColorGray(0), 1) Set dashedPen = comHelpers.CreateSolidPen(comHelpers.CreateColorGray(0), 1) dashedPen.DashPattern = comHelpers.CreateDashPattern(Array(2.0, 2.0), 0) ' Draw dashed lines canvas.DrawLine (dashedPen), 100, 100, 200, 100 canvas.DrawLine (dashedPen), 200, 100, 200, 200 canvas.DrawLine (dashedPen), 200, 200, 100, 200 ' Draw besier curve by the same points canvas.DrawCurve (blackPen), 100, 100, 200, 100, 200, 200, 100, 200 ' Save document to file pdfDocument.Save("result.pdf") ' Open document in default PDF viewer app Set shell = CreateObject("WScript.Shell") shell.Run "result.pdf", 1, false

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