pdfpdf 0.2.0

A Pretty Darn Fast library for creating PDF files. Currently, only simple vector graphics and simple text are supported.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(missing_docs)]
/// Text alignment options
pub enum Alignment {
    TopLeft,
    TopRight,
    TopCenter,
    CenterLeft,
    CenterCenter,
    CenterRight,
    BottomLeft,
    BottomRight,
    BottomCenter,
}