ByteScout PDF Renderer SDK - VBScript and VB6 - Hide Text or Vector or Image Layer In PDF - ByteScout

ByteScout PDF Renderer SDK – VBScript and VB6 – Hide Text or Vector or Image Layer In PDF

  • Home
  • /
  • Articles
  • /
  • ByteScout PDF Renderer SDK – VBScript and VB6 – Hide Text or Vector or Image Layer In PDF

hide text or vector or image layer in PDF in VBScript and VB6 and ByteScout PDF Renderer SDK

How to use ByteScout PDF Renderer SDK for hide text or vector or image layer in PDF in VBScript and VB6

Source code documentation samples provide quick and easy way to add a required functionality into your application. Hide text or vector or image layer in PDF in VBScript and VB6 can be implemented with ByteScout PDF Renderer SDK. ByteScout PDF Renderer SDK is the component (SDK) that renders PDF into high quality images and thumbnails. Includes various functions like page by page processing, BMP, PNG, TIFF or stream output. Can be used from web and desktop applications.

This rich sample source code in VBScript and VB6 for ByteScout PDF Renderer SDK includes the number of functions and options you should do calling the API to implement hide text or vector or image layer in PDF. To do hide text or vector or image layer in PDF in your VBScript and VB6 project or application you may simply copy & paste the code and then run your app! Further enhancement of the code will make it more vigorous.

ByteScout PDF Renderer SDK is available as free trial. You may get it from our website along with all other source code samples for VBScript and VB6 applications.

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 Renderer SDK Home Page

Explore ByteScout PDF Renderer SDK Documentation

Explore Samples

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

Explore ByteScout PDF Renderer SDK Documentation

Explore Samples

Sign Up for ByteScout PDF Renderer SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next