ByteScout PDF SDK - C# - Set Tiling Patterns for Drawings in PDF - ByteScout

ByteScout PDF SDK – C# – Set Tiling Patterns for Drawings in PDF

  • Home
  • /
  • Articles
  • /
  • ByteScout PDF SDK – C# – Set Tiling Patterns for Drawings in PDF

How to set tiling patterns for drawings in PDF in C# and ByteScout PDF SDK

Write code in C# to set tiling patterns for drawings in PDF with this step-by-step tutorial

The sample source codes on this page shows how to set tiling patterns for drawings in PDF in C#. Want to set tiling patterns for drawings in PDF in your C# app? ByteScout PDF SDK is designed for it. ByteScout PDF SDK is the component to help programmers in generating new pdf files, modifying and updating existing pdf documents or pdf forms. Provides support for auto-filling pdf forms, adding text with adjustable font, style, size, font family, new form fields, vector and raster drawings.

This code snippet below for ByteScout PDF SDK works best when you need to quickly set tiling patterns for drawings in PDF in your C# application. In your C# project or application you may simply copy & paste the code and then run your app! You can use these C# sample examples in one or many applications.

ByteScout PDF SDK free trial version is available on our website. C# 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)

Program.cs
      
using System.Diagnostics; using Bytescout.PDF; namespace TilingPatterns { /// <summary> /// This example demonstrates how to use tiling patterns. /// </summary> class Program { static void Main() { // Create new document Document pdfDocument = new Document(); pdfDocument.RegistrationName = "demo"; pdfDocument.RegistrationKey = "demo"; // Add page Page page = new Page(PaperFormat.A4); pdfDocument.Pages.Add(page); ColorRGB blueColor = new ColorRGB(0, 0, 255); ColorRGB grayColor = new ColorRGB(128, 128, 128); // Create tiling brush and paint on it UncoloredTilingBrush tilingBrush1 = new UncoloredTilingBrush(10, 12); Canvas brushCanvas = tilingBrush1.Canvas; brushCanvas.DrawCircle(new SolidPen(blueColor), 0, 6, 6); tilingBrush1.Color = blueColor; // Create second tiling brush and paint on it using the first brush ColoredTilingBrush tilingBrush2 = new ColoredTilingBrush(70, 50); brushCanvas = tilingBrush2.Canvas; brushCanvas.DrawEllipse(new SolidPen(grayColor), tilingBrush1, 0, 0, 60, 20); // Draw rectangle and fill it with combined tiling brush page.Canvas.DrawRectangle(new SolidPen(), tilingBrush2, 100, 100, 400, 400); // Save document to file pdfDocument.Save("result.pdf"); // Cleanup pdfDocument.Dispose(); // Open result document in default associated application (for demo purpose) ProcessStartInfo processStartInfo = new ProcessStartInfo("result.pdf"); processStartInfo.UseShellExecute = true; Process.Start(processStartInfo); } } }

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout PDF SDK Home Page

Explore ByteScout PDF SDK Documentation

Explore Samples

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

Explore ByteScout PDF SDK Documentation

Explore Samples

Sign Up for ByteScout PDF SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next