ByteScout PDF Suite - VBScript - Hide text or vector or image layer in pdf with pdf renderer sdk - ByteScout

ByteScout PDF Suite – VBScript – Hide text or vector or image layer in pdf with pdf renderer sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout PDF Suite – VBScript – Hide text or vector or image layer in pdf with pdf renderer sdk

hide text or vector or image layer in pdf with pdf renderer sdk in VBScript using ByteScout PDF Suite

Simple tutorial on how to do hide text or vector or image layer in pdf with pdf renderer sdk in VBScript

The samples of source code documentation give a quick and simple method to apply a required functionality into your application. ByteScout PDF Suite was created to assist hide text or vector or image layer in pdf with pdf renderer sdk in VBScript. ByteScout PDF Suite is the set that includes 6 SDK products 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.

If you want to quickly learn then these fast application programming interfaces of ByteScout PDF Suite for VBScript plus the guideline and the VBScript code below will help you quickly learn hide text or vector or image layer in pdf with pdf renderer sdk. Just copy and paste this VBScript sample code to your VBScript application’s code editor, add a reference to ByteScout PDF Suite (if you haven’t added yet) and you are ready to go! Want to see how it works with your data then code testing will allow the function to be tested and work properly.

Trial version along with the source code samples for VBScript can be downloaded from our website

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

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

PDFToPNG.vbs
      
' Create Bytescout.PDFRenderer.RasterRenderer object Set renderer = CreateObject("Bytescout.PDFRenderer.RasterRenderer") renderer.RegistrationName = "demo" renderer.RegistrationKey = "demo" ' Load sample PDF document renderer.LoadDocumentFromFile "../../multipage.pdf" Set renderingOptions = CreateObject("Bytescout.PDFRenderer.RenderingOptions") ' Enable text objects rendering renderingOptions.RenderTextObjects = True ' DISABLE vector objects rendering renderingOptions.RenderVectorObjects = False ' DISABLE image objects rendering renderingOptions.RenderImageObjects = False ' Render PDF document at 96 DPI - default PC display resolution ' To get higher quality output, set 200, 300 or more Dim renderingResolution renderingResolution = 96 ' iterate through pages For i=0 To renderer.GetPageCount()-1 ' Render document page to PNG image file renderer.Save_2 "image" & i & ".png", 2, i, renderingResolution, (renderingOptions) Next

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