using org.pdfclown.documents;
using org.pdfclown.documents.contents.colorSpaces;
using org.pdfclown.documents.contents.composition;
using org.pdfclown.documents.contents.fonts;
using org.pdfclown.files;
using org.pdfclown.tools;
using System;
using System.Collections.Generic;
using System.Drawing;
namespace org.pdfclown.samples.cli
{
/**
This sample demonstrates how to stamp the page number on alternated corners
of an existing PDF document's pages.
Stamping is just one of the several ways PDF contents can be manipulated using PDF Clown:
contents can be inserted as (raw) data chunks, mid-level content objects, external forms, etc.
*/
public class PageNumberingSample
: Sample
{
public override bool Run(
)
{
string filePath = PromptPdfFileChoice("Please select a PDF file");
// 1. Open the PDF file!
File file = new File(filePath);
// Get the PDF document!
Document document = file.Document;
// 2. Stamp the document!
Stamp(document);
// (boilerplate metadata insertion -- ignore it)
BuildAccessories(document,"Page numbering","numbering a document's pages");
// 3. Serialize the PDF file!
Serialize(file);
return true;
}
private void Stamp(
Document document
)
{
// 1. Instantiate the stamper!
/* NOTE: The PageStamper is optimized for dealing with pages. */
PageStamper stamper = new PageStamper();
// 2. Numbering each page...
StandardType1Font font = new StandardType1Font(
document,
StandardType1Font.FamilyEnum.Courier,
true,
false
);
DeviceRGBColor redColor = new DeviceRGBColor(1, 0, 0);
int margin = 32;
foreach(Page page in document.Pages)
{
// 2.1. Associate the page to the stamper!
stamper.Page = page;
// 2.2. Stamping the page number on the foreground...
{
PrimitiveComposer foreground = stamper.Foreground;
foreground.SetFont(font,16);
foreground.SetFillColor(redColor);
SizeF pageSize = page.Size;
int pageNumber = page.Index + 1;
bool pageIsEven = (pageNumber % 2 == 0);
foreground.ShowText(
pageNumber.ToString(),
new PointF(
(pageIsEven
? margin
: pageSize.Width - margin),
pageSize.Height - margin
),
(pageIsEven
? AlignmentXEnum.Left
: AlignmentXEnum.Right),
AlignmentYEnum.Bottom,
0
);
}
// 2.3. End the stamping!
stamper.Flush();
}
}
}
}