From 9c805cc9f934cd12e89014db8ad70e3191cdaf2d Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 7 Apr 2017 16:16:56 +0200 Subject: Move all examples to docs/examples directory. --- docs/mutool/examples/pdf-create.js | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 docs/mutool/examples/pdf-create.js (limited to 'docs/mutool/examples/pdf-create.js') diff --git a/docs/mutool/examples/pdf-create.js b/docs/mutool/examples/pdf-create.js deleted file mode 100644 index 290d1737..00000000 --- a/docs/mutool/examples/pdf-create.js +++ /dev/null @@ -1,35 +0,0 @@ -// Create a PDF from scratch using helper functions. - -// This example creates a new PDF file from scratch, using helper -// functions to create resources and page objects. -// This assumes a basic working knowledge of the PDF file format. - -// Create a new empty document with no pages. -var pdf = new PDFDocument() - -// Load built-in font and create WinAnsi encoded simple font resource. -var font = pdf.addSimpleFont(new Font("Times-Roman")) - -// Load PNG file and create image resource. -var image = pdf.addImage(new Image("example.png")) - -// Create resource dictionary. -var resources = pdf.addObject({ - Font: { Tm: font }, - XObject: { Im0: image }, -}) - -// Create content stream data. -var contents = - "10 10 280 330 re s\n" + - "q 200 0 0 200 50 100 cm /Im0 Do Q\n" + - "BT /Tm 16 Tf 50 50 TD (Hello, world!) Tj ET\n" - -// Create a new page object. -var page = pdf.addPage([0,0,300,350], 0, resources, contents) - -// Insert page object at the end of the document. -pdf.insertPage(-1, page) - -// Save the document to file. -pdf.save("out.pdf", "pretty,ascii,compress-images,compress-fonts") -- cgit v1.2.3