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

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

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

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

Learn to code in VBScript to draw lines and curves in pdf with pdf sdk with this step-by-step tutorial

The documentation is designed for a specific purpose to help you to apply the features on your side. Want to draw lines and curves in pdf with pdf sdk in your VBScript app? ByteScout PDF Suite is designed for it. 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.

This prolific sample source code in VBScript for ByteScout PDF Suite contains various functions and other necessary options you should do calling the API to draw lines and curves in pdf with pdf sdk. Follow the instructions from scratch to work and copy the VBScript code. Use of ByteScout PDF Suite in VBScript is also described in the documentation included along with the product.

ByteScout provides the free trial version of ByteScout PDF Suite along with the 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)

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 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