Vector Graphics in PDFKit
Creating basic shapes
Shapes are defined by a series of lines and curves. , bezierCurveTo
and quadraticCurveTo
all draw from the current point (which you can set withmoveTo
) to the specified point (always the last two arguments). Beziercurves use two control points and quadratic curves use just one. Here is anexample that illustrates defining a path.
The output of this example looks like this:
One thing to notice about this example is the use of method chaining. Allmethods in PDFKit are chainable, meaning that you can call one method rightafter the other without referencing the doc
variable again. Of course, thisis an option, so if you don't like how the code looks when chained, you don'thave to write it that way.
SVG paths
PDFKit includes an SVG path parser, so you can include paths written in theSVG path syntax in your PDF documents. This makes it simple to include vectorgraphics elements produced in many popular editors such as Inkscape or AdobeIllustrator. The previous example could also be written using the SVG pathsyntax like this.
doc.path('M 0,20 L 100,160 Q 130,200 150,120 C 190,-40 200,200 300,150 L 400,90')
.stroke()
The PDFKit SVG parser supports all of the command types supported by SVG, soany valid SVG path you throw at it should work as expected.
Shape helpers
PDFKit also includes some helpers that make defining common shapes mucheasier. Here is a list of the helpers.
- rect(x, y, width, height)
- roundedRect(x, y, width, height, cornerRadius)
- ellipse(centerX, centerY, radiusX, radiusY = radiusX)
- polygon(points…)
The last one,polygon
, allows you to pass in a list of points (arrays of x,ypairs), and it will create the shape by moving to the first point, and thendrawing lines to each consecutive point. Here is how you'd draw a trianglewith the polygon helper.
doc.polygon [100, 0], [50, 100], [150, 100]
doc.stroke()
The output of this example looks like this:
So far we have only been stroking our paths, but you can also fill them withthe fill
method, and both fill and stroke the same path with thefillAndStroke
method. Note that calling fill
and then stroke
consecutively will not work because of a limitation in the PDF spec. Use thefillAndStroke
method if you want to accomplish both operations on the samepath.
In order to make our drawings interesting, we really need to give them somestyle. PDFKit has many methods designed to do just that.
- lineWidth
- lineCap
- lineJoin
- miterLimit
- dash
- fillColor
- strokeColor
- opacity
- fillOpacity
- strokeOpacity
Some of these are pretty self explanatory, but let's go through a few of them.
Line cap and line join
The lineCap
and lineJoin
properties accept constants describing what theyshould do. This is best illustrated by an example.
The output of this example looks like this.
Dashed lines
The space
option defines the length of the space between each dash, and the phase
optiondefines the starting point of the sequence of dashes. By default the space
attribute is equal to the length
and the phase
attribute is set to 0
.You can use the undash
method to make the line solid again.
The following example draws a circle with a dashed line where the spacebetween the dashes is double the length of each dash.
doc.circle(100, 50, 50)
.dash(5, space: 10)
The output of this example looks like this:
Color
What is a drawing without color? PDFKit makes it simple to set the fill andstroke color and opacity. You can pass an array specifying an RGB or CMYKcolor, a hex color string, or use any of the named CSS colors.
The fillColor
and strokeColor
methods accept an optional second argument as a shortcut forsetting the fillOpacity
and strokeOpacity
. Finally, the opacity
methodis a convenience method that sets both the fill and stroke opacity to the samevalue.
The fill
and stroke
methods also accept a color as an argument sothat you don't have to call fillColor
or strokeColor
beforehand. ThefillAndStroke
method accepts both fill and stroke colors as arguments.
doc.circle(100, 50, 50)
.lineWidth(3)
.fillAndStroke("red", "#900")
This example produces the following output:
PDFKit also supports gradient fills. Gradients can be used just like color fills,and are applied with the same methods (e.g. fillColor
, or just fill
). Beforeyou can apply a gradient with these methods, however, you must create a gradient object.
There are two types of gradients: linear and radial. They are created by the linearGradient
and radialGradient
methods. Their function signatures are listed below:
- linearGradient(x1, y1, x2, y2) - x1,y1 is the start point, x2,y2 is the end point
- radialGradient(x1, y2, r1, x2, y2, r2) - r1 is the inner radius, r2 is the outer radius
Once you have a gradient object, you need to create color stops at points along that gradient.Stops are defined at percentage values (0 to 1), and take a color value (any usable by the fillColor method), and an optional opacity.
You can see both linear and radial gradients in the following example:
Here is the output from the this example:
Winding rules
Winding rules define how a path is filled and are best illustrated by anexample. The winding rule is an optional attribute to the fill
andfillAndStroke
methods, and there are two values to choose from: non-zero
and even-odd
.
# Initial setup
doc.fillColor('red')
.translate(-100, -50)
.scale(0.8)
# Draw the path with the non-zero winding rule
.fill('non-zero')
# Draw the path with the even-odd winding rule
doc.translate(280, 0)
.path('M 250,75 L 323,301 131,161 369,161 177,301 z')
.fill('even-odd')
Saving and restoring the graphics stack
Once you start producing more complex vector drawings, you will want to beable to save and restore the state of the graphics context. The graphics stateis basically a snapshot of all the styles and transformations (see below) thathave been applied, and many states can be created and stored on a stack. Everytime the save
method is called, the current graphics state is pushed ontothe stack, and when you call restore
, the last state on the stack is appliedto the context again. This way, you can save the state, change some styles,and then restore it to how it was before you made those changes.
Transformations
Transformations allow you to modify the look of a drawing without modifyingthe drawing itself. There are three types of transformations available, aswell as a method for setting the transformation matrix yourself. They aretranslate
, rotate
and scale
.
The translate
transformation takes two arguments, x and y, and effectivelymoves the origin of the document which is (0, 0) by default, to the left andright x and y units.
The rotate
transformation takes an angle and optionally, an object with anorigin
property. It rotates the document angle
degrees around the passedorigin
or by default, the center of the page.
The scale
transformation takes a scale factor and an optional origin
passed in an options hash as with the rotate
transformation. It is used toincrease or decrease the size of the units in the drawing, or change it'ssize. For example, applying a scale of 0.5
would make the drawing appear athalf size, and a scale of 2
would make it appear twice as large.
If you are feeling particularly smart, you can modify the transformationmatrix yourself using the transform
method.
We used the scale
and translate
transformations above, so here is anexample of using the rotate
transformation. We'll set the origin of therotation to the center of the rectangle.
doc.rotate(20, origin: [150, 70])
This example produces the following effect.
A clipping path is a path defined using the normal path creation methods, butinstead of being filled or stroked, it becomes a mask that hides unwantedparts of the drawing. Everything falling inside the clipping path after it iscreated is visible, and everything outside the path is invisible. Here is anexample that clips a checkerboard pattern to the shape of a circle.
The result of this example is the following:
That's it for vector graphics in PDFKit. Now let's move on to learning aboutPDFKit's text support!