Documentation ¶
Overview ¶
Package gopdf is a PDF Library for Go
[![GoDoc](https://godoc.org/github.com/openharambe/gopdf?status.svg)](https://godoc.org/github.com/openharambe/gopdf)
gopdf implements the adobe open source PDF spec [ISO32000-1:2008](https://opensource.adobe.com/dc-acrobat-sdk-docs/pdfstandards/PDF32000_2008.pdf) with high level support for text, drawing and images.
It is initially planned to complete all of PDF 1.7 features aka ISO32000-2:2008
## Features
- Choice of measurement unit, page format and margins
- Page header and footer management
- Automatic page breaks, line breaks, and text justification
- Inclusion of JPEG, PNG, GIF, TIFF and basic path-only SVG images
- Colors, gradients and alpha channel transparency
- Outline bookmarks
- Internal and external links
- TrueType, Type1 and UTF-8 font encoding support
- Page compression
- Lines, Bézier curves, arcs, and ellipses
- Rotation, scaling, skewing, translation, and mirroring
- Clipping
- Document protection
- Layers
- Templates
- Charting facility
## Installation
To install the package on your system, run ¶
``` shell go get github.com/openharambe/gopdf ```
## Quick Start
The following Go code creates a simple PDF file.
```go pdf := gopdf.New("P", "mm", "A4", "") pdf.AddPage() pdf.SetFont("Arial", "B", 16) pdf.Cell(40, 10, "Hello, world") err := pdf.OutputFileAndClose("hello.pdf") // don't forget to handle your error!!! ```
See the functions in the [pdf\_test.go](https://github.com/openharambe/gofpdf/blob/main/pdf_test.go) file (shown as examples in this documentation) for more advanced PDF examples.
## Nonstandard Fonts
Nothing special is required to use the standard PDF fonts (courier, helvetica, times, zapfdingbats) in your documents other than calling `SetFont()`.
You should use `AddUTF8Font()` or `AddUTF8FontFromBytes()` to add a TrueType UTF-8 encoded font. Use `RTL()` and `LTR()` methods switch between “right-to-left” and “left-to-right” mode.
In order to use a different non-UTF-8 TrueType or Type1 font, you will need to generate a font definition file and, if the font will be embedded into PDFs, a compressed version of the font file. This is done by calling the MakeFont function or using the included makefont command line utility. To create the utility, cd into the makefont subdirectory and run “go build”. This will produce a standalone executable named makefont. Select the appropriate encoding file from the font subdirectory and run the command as in the following example.
``` shell cd makefont go build ./makefont --embed --dst=../testdata/font --enc=../testdata/font/cp1252.map ../testdata/font/calligra.ttf ```
In your PDF generation code, call `AddFont()` to load the font and, as with the standard fonts, SetFont() to begin using it. Most examples, including the package example, demonstrate this method. Good sources of free, open-source fonts include [Google Fonts](https://fonts.google.com/) and [DejaVu Fonts](http://dejavu-fonts.org/).
## Contribution
gopdf was born by the actual need, we are not a charity, we don't accept donations.
any fixes/bugs/features are welcome on issues section, any PRs that are opened without an issue will be rejected.
we strictly follow [Google Style Guide](https://google.github.io/styleguide/go/best-practices), bad style of code will not be accepted.
anything that doesn't have enough test coverage(at least 80%) will not be accepted.
## Roadmap - Remove the bloat and use a single constructor for creating PDF - Add govet/staticcheck/revive/gocritic - Add the coverage step for CI - Remove all legacy code page font support; use UTF-8 exclusively - Bar codes/QR codes - Support all the functionality of [PDF 1.7](https://opensource.adobe.com/dc-acrobat-sdk-docs/pdfstandards/PDF32000_2008.pdf) spec
## License
gopdf is released under the GPLv2 License.
Index ¶
- Constants
- func MakeFont(fontFileStr, encodingFileStr, dstDirStr string, msgWriter io.Writer, ...) error
- func SetDefaultCatalogSort(flag bool)
- func SetDefaultCompression(compress bool)
- func SetDefaultCreationDate(tm time.Time)
- func SetDefaultModificationDate(tm time.Time)
- func TickmarkPrecision(div float64) int
- func Tickmarks(min, max float64) (list []float64, precision int)
- func UTF8CutFont(inBuf []byte, cutset string) (outBuf []byte)
- func UnicodeTranslator(r io.Reader) (f func(string) string, err error)
- func UnicodeTranslatorFromFile(fileStr string) (f func(string) string, err error)
- type Attachment
- type FontDescType
- type FpdfTpl
- func (t *FpdfTpl) Bytes() []byte
- func (t *FpdfTpl) FromPage(page int) (Template, error)
- func (t *FpdfTpl) FromPages() []Template
- func (t *FpdfTpl) GobDecode(buf []byte) error
- func (t *FpdfTpl) GobEncode() ([]byte, error)
- func (t *FpdfTpl) ID() string
- func (t *FpdfTpl) Images() map[string]*ImageInfoType
- func (t *FpdfTpl) NumPages() int
- func (t *FpdfTpl) Serialize() ([]byte, error)
- func (t *FpdfTpl) Size() (corner Point, size Size)
- func (t *FpdfTpl) Templates() []Template
- type GridType
- func (g GridType) Grid(pdf *Pdf)
- func (g GridType) Ht(dataHt float64) float64
- func (g GridType) HtAbs(dataHt float64) float64
- func (g GridType) Plot(pdf *Pdf, xMin, xMax float64, count int, fnc func(x float64) (y float64))
- func (g GridType) Pos(xRel, yRel float64) (x, y float64)
- func (g *GridType) TickmarksContainX(min, max float64)
- func (g *GridType) TickmarksContainY(min, max float64)
- func (g *GridType) TickmarksExtentX(min, div float64, count int)
- func (g *GridType) TickmarksExtentY(min, div float64, count int)
- func (g GridType) Wd(dataWd float64) float64
- func (g GridType) WdAbs(dataWd float64) float64
- func (g GridType) X(dataX float64) float64
- func (g GridType) XRange() (min, max float64)
- func (g GridType) XY(dataX, dataY float64) (x, y float64)
- func (g GridType) Y(dataY float64) float64
- func (g GridType) YRange() (min, max float64)
- type HTMLBasicSegmentType
- type HTMLBasicType
- type ImageInfoType
- func (info *ImageInfoType) Extent() (wd, ht float64)
- func (info *ImageInfoType) GobDecode(buf []byte) (err error)
- func (info *ImageInfoType) GobEncode() (buf []byte, err error)
- func (info *ImageInfoType) Height() float64
- func (info *ImageInfoType) SetDpi(dpi float64)
- func (info *ImageInfoType) Width() float64
- type ImageOptions
- type InitType
- type PageBox
- type Pdf
- func (f *Pdf) AddAttachmentAnnotation(a *Attachment, x, y, w, h float64)
- func (f *Pdf) AddFont(familyStr, styleStr, fileStr string)
- func (f *Pdf) AddFontFromBytes(familyStr, styleStr string, jsonFileBytes, zFileBytes []byte)
- func (f *Pdf) AddFontFromReader(familyStr, styleStr string, r io.Reader)
- func (f *Pdf) AddLayer(name string, visible bool) (layerID int)
- func (f *Pdf) AddLink() int
- func (f *Pdf) AddPage()
- func (f *Pdf) AddPageFormat(orientationStr string, size Size)
- func (f *Pdf) AddSpotColor(nameStr string, c, m, y, k byte)
- func (f *Pdf) AddUTF8Font(familyStr, styleStr, fileStr string)
- func (f *Pdf) AddUTF8FontFromBytes(familyStr, styleStr string, utf8Bytes []byte)
- func (f *Pdf) AliasNbPages(aliasStr string)
- func (f *Pdf) Arc(x, y, rx, ry, degRotate, degStart, degEnd float64, styleStr string)
- func (f *Pdf) ArcTo(x, y, rx, ry, degRotate, degStart, degEnd float64)
- func (f *Pdf) BeginLayer(id int)
- func (f *Pdf) Beziergon(points []Point, styleStr string)
- func (f *Pdf) Bookmark(txtStr string, level int, y float64)
- func (f *Pdf) Cell(w, h float64, txtStr string)
- func (f *Pdf) CellFormat(w, h float64, txtStr, borderStr string, ln int, alignStr string, fill bool, ...)
- func (f *Pdf) Cellf(w, h float64, fmtStr string, args ...interface{})
- func (f *Pdf) Circle(x, y, r float64, styleStr string)
- func (f *Pdf) ClearError()
- func (f *Pdf) ClipCircle(x, y, r float64, outline bool)
- func (f *Pdf) ClipEllipse(x, y, rx, ry float64, outline bool)
- func (f *Pdf) ClipEnd()
- func (f *Pdf) ClipPolygon(points []Point, outline bool)
- func (f *Pdf) ClipRect(x, y, w, h float64, outline bool)
- func (f *Pdf) ClipRoundedRect(x, y, w, h, r float64, outline bool)
- func (f *Pdf) ClipRoundedRectExt(x, y, w, h, rTL, rTR, rBR, rBL float64, outline bool)
- func (f *Pdf) ClipText(x, y float64, txtStr string, outline bool)
- func (f *Pdf) Close()
- func (f *Pdf) ClosePath()
- func (f *Pdf) CreateTemplate(fn func(*Tpl)) Template
- func (f *Pdf) CreateTemplateCustom(corner Point, size Size, fn func(*Tpl)) Template
- func (f *Pdf) Curve(x0, y0, cx, cy, x1, y1 float64, styleStr string)
- func (f *Pdf) CurveBezierCubic(x0, y0, cx0, cy0, cx1, cy1, x1, y1 float64, styleStr string)
- func (f *Pdf) CurveBezierCubicTo(cx0, cy0, cx1, cy1, x, y float64)
- func (f *Pdf) CurveCubic(x0, y0, cx0, cy0, x1, y1, cx1, cy1 float64, styleStr string)
- func (f *Pdf) CurveTo(cx, cy, x, y float64)
- func (f *Pdf) DrawPath(styleStr string)
- func (f *Pdf) Ellipse(x, y, rx, ry, degRotate float64, styleStr string)
- func (f *Pdf) EndLayer()
- func (f *Pdf) Err() bool
- func (f *Pdf) Error() error
- func (f *Pdf) GetAlpha() (alpha float64, blendModeStr string)
- func (f *Pdf) GetAutoPageBreak() (auto bool, margin float64)
- func (f *Pdf) GetCellMargin() float64
- func (f *Pdf) GetConversionRatio() float64
- func (f *Pdf) GetDrawColor() (int, int, int)
- func (f *Pdf) GetDrawSpotColor() (name string, c, m, y, k byte)
- func (f *Pdf) GetFillColor() (int, int, int)
- func (f *Pdf) GetFillSpotColor() (name string, c, m, y, k byte)
- func (f *Pdf) GetFontDesc(familyStr, styleStr string) FontDescType
- func (f *Pdf) GetFontSize() (ptSize, unitSize float64)
- func (f *Pdf) GetImageInfo(imageStr string) (info *ImageInfoType)
- func (f *Pdf) GetLineWidth() float64
- func (f *Pdf) GetMargins() (left, top, right, bottom float64)
- func (f *Pdf) GetPageSize() (width, height float64)
- func (f *Pdf) GetPageSizeStr(sizeStr string) (size Size)
- func (f *Pdf) GetStringSymbolWidth(s string) int
- func (f *Pdf) GetStringWidth(s string) float64
- func (f *Pdf) GetTextColor() (int, int, int)
- func (f *Pdf) GetTextSpotColor() (name string, c, m, y, k byte)
- func (f *Pdf) GetX() float64
- func (f *Pdf) GetXY() (float64, float64)
- func (f *Pdf) GetY() float64
- func (f *Pdf) HTMLBasicNew() (html HTMLBasicType)
- func (f *Pdf) Image(imageNameStr string, x, y, w, h float64, flow bool, tp string, link int, ...)
- func (f *Pdf) ImageOptions(imageNameStr string, x, y, w, h float64, flow bool, options ImageOptions, ...)
- func (f *Pdf) ImageTypeFromMime(mimeStr string) string
- func (f *Pdf) ImportObjPos(objPos map[string]map[int]string)
- func (f *Pdf) ImportObjects(objs map[string][]byte)
- func (f *Pdf) ImportTemplates(tpls map[string]string)
- func (f *Pdf) LTR()
- func (f *Pdf) Line(x1, y1, x2, y2 float64)
- func (f *Pdf) LineTo(x, y float64)
- func (f *Pdf) LinearGradient(x, y, w, h float64, r1, g1, b1, r2, g2, b2 int, x1, y1, x2, y2 float64)
- func (f *Pdf) Link(x, y, w, h float64, link int)
- func (f *Pdf) LinkString(x, y, w, h float64, linkStr string)
- func (f *Pdf) Ln(h float64)
- func (f *Pdf) MoveTo(x, y float64)
- func (f *Pdf) MultiCell(w, h float64, txtStr, borderStr, alignStr string, fill bool)
- func (f *Pdf) Ok() bool
- func (f *Pdf) OpenLayerPane()
- func (f *Pdf) Output(w io.Writer) error
- func (f *Pdf) OutputAndClose(w io.WriteCloser) error
- func (f *Pdf) OutputFileAndClose(fileStr string) error
- func (f *Pdf) PageCount() int
- func (f *Pdf) PageNo() int
- func (f *Pdf) PageSize(pageNum int) (wd, ht float64, unitStr string)
- func (f *Pdf) PointConvert(pt float64) (u float64)
- func (f *Pdf) PointToUnitConvert(pt float64) (u float64)
- func (f *Pdf) Polygon(points []Point, styleStr string)
- func (f *Pdf) RTL()
- func (f *Pdf) RadialGradient(x, y, w, h float64, r1, g1, b1, r2, g2, b2 int, x1, y1, x2, y2, r float64)
- func (f *Pdf) RawWriteBuf(r io.Reader)
- func (f *Pdf) RawWriteStr(str string)
- func (f *Pdf) Rect(x, y, w, h float64, styleStr string)
- func (f *Pdf) RegisterAlias(alias, replacement string)
- func (f *Pdf) RegisterImage(fileStr, tp string) (info *ImageInfoType)
- func (f *Pdf) RegisterImageOptions(fileStr string, options ImageOptions) (info *ImageInfoType)
- func (f *Pdf) RegisterImageOptionsReader(imgName string, options ImageOptions, r io.Reader) (info *ImageInfoType)
- func (f *Pdf) RegisterImageReader(imgName, tp string, r io.Reader) (info *ImageInfoType)
- func (f *Pdf) RoundedRect(x, y, w, h, r float64, corners string, stylestr string)
- func (f *Pdf) RoundedRectExt(x, y, w, h, rTL, rTR, rBR, rBL float64, stylestr string)
- func (f *Pdf) SVGBasicWrite(sb *SVGBasicType, scale float64)
- func (f *Pdf) SetAcceptPageBreakFunc(fnc func() bool)
- func (f *Pdf) SetAlpha(alpha float64, blendModeStr string)
- func (f *Pdf) SetAttachments(as []Attachment)
- func (f *Pdf) SetAuthor(authorStr string, isUTF8 bool)
- func (f *Pdf) SetAutoPageBreak(auto bool, margin float64)
- func (f *Pdf) SetCatalogSort(flag bool)
- func (f *Pdf) SetCellMargin(margin float64)
- func (f *Pdf) SetCompression(compress bool)
- func (f *Pdf) SetCreationDate(tm time.Time)
- func (f *Pdf) SetCreator(creatorStr string, isUTF8 bool)
- func (f *Pdf) SetDashPattern(dashArray []float64, dashPhase float64)
- func (f *Pdf) SetDisplayMode(zoomStr, layoutStr string)
- func (f *Pdf) SetDrawColor(r, g, b int)
- func (f *Pdf) SetDrawSpotColor(nameStr string, tint byte)
- func (f *Pdf) SetError(err error)
- func (f *Pdf) SetErrorf(fmtStr string, args ...interface{})
- func (f *Pdf) SetFillColor(r, g, b int)
- func (f *Pdf) SetFillSpotColor(nameStr string, tint byte)
- func (f *Pdf) SetFont(familyStr, styleStr string, size float64)
- func (f *Pdf) SetFontLocation(fontDirStr string)
- func (f *Pdf) SetFontSize(size float64)
- func (f *Pdf) SetFontStyle(styleStr string)
- func (f *Pdf) SetFontUnitSize(size float64)
- func (f *Pdf) SetFooterFunc(fnc func())
- func (f *Pdf) SetFooterFuncLpi(fnc func(lastPage bool))
- func (f *Pdf) SetHeaderFunc(fnc func())
- func (f *Pdf) SetHeaderFuncMode(fnc func(), homeMode bool)
- func (f *Pdf) SetHomeXY()
- func (f *Pdf) SetJavascript(script string)
- func (f *Pdf) SetKeywords(keywordsStr string, isUTF8 bool)
- func (f *Pdf) SetLeftMargin(margin float64)
- func (f *Pdf) SetLineCapStyle(styleStr string)
- func (f *Pdf) SetLineJoinStyle(styleStr string)
- func (f *Pdf) SetLineWidth(width float64)
- func (f *Pdf) SetLink(link int, y float64, page int)
- func (f *Pdf) SetMargins(left, top, right float64)
- func (f *Pdf) SetModificationDate(tm time.Time)
- func (f *Pdf) SetPage(pageNum int)
- func (f *Pdf) SetPageBox(t string, x, y, wd, ht float64)
- func (f *Pdf) SetPageBoxRec(t string, pb PageBox)
- func (f *Pdf) SetProducer(producerStr string, isUTF8 bool)
- func (f *Pdf) SetProtection(actionFlag byte, userPassStr, ownerPassStr string)
- func (f *Pdf) SetRightMargin(margin float64)
- func (f *Pdf) SetSubject(subjectStr string, isUTF8 bool)
- func (f *Pdf) SetTextColor(r, g, b int)
- func (f *Pdf) SetTextRenderingMode(mode int)
- func (f *Pdf) SetTextSpotColor(nameStr string, tint byte)
- func (f *Pdf) SetTitle(titleStr string, isUTF8 bool)
- func (f *Pdf) SetTopMargin(margin float64)
- func (f *Pdf) SetUnderlineThickness(thickness float64)
- func (f *Pdf) SetWordSpacing(space float64)
- func (f *Pdf) SetX(x float64)
- func (f *Pdf) SetXY(x, y float64)
- func (f *Pdf) SetXmpMetadata(xmpStream []byte)
- func (f *Pdf) SetY(y float64)
- func (f *Pdf) SplitLines(txt []byte, w float64) [][]byte
- func (f *Pdf) SplitText(txt string, w float64) (lines []string)
- func (f *Pdf) String() string
- func (f *Pdf) SubWrite(ht float64, str string, subFontSize, subOffset float64, link int, ...)
- func (f *Pdf) Text(x, y float64, txtStr string)
- func (f *Pdf) Transform(tm TransformMatrix)
- func (f *Pdf) TransformBegin()
- func (f *Pdf) TransformEnd()
- func (f *Pdf) TransformMirrorHorizontal(x float64)
- func (f *Pdf) TransformMirrorLine(angle, x, y float64)
- func (f *Pdf) TransformMirrorPoint(x, y float64)
- func (f *Pdf) TransformMirrorVertical(y float64)
- func (f *Pdf) TransformRotate(angle, x, y float64)
- func (f *Pdf) TransformScale(scaleWd, scaleHt, x, y float64)
- func (f *Pdf) TransformScaleX(scaleWd, x, y float64)
- func (f *Pdf) TransformScaleXY(s, x, y float64)
- func (f *Pdf) TransformScaleY(scaleHt, x, y float64)
- func (f *Pdf) TransformSkew(angleX, angleY, x, y float64)
- func (f *Pdf) TransformSkewX(angleX, x, y float64)
- func (f *Pdf) TransformSkewY(angleY, x, y float64)
- func (f *Pdf) TransformTranslate(tx, ty float64)
- func (f *Pdf) TransformTranslateX(tx float64)
- func (f *Pdf) TransformTranslateY(ty float64)
- func (f *Pdf) UnicodeTranslatorFromDescriptor(cpStr string) (rep func(string) string)
- func (f *Pdf) UnitToPointConvert(u float64) (pt float64)
- func (f *Pdf) UseImportedTemplate(tplName string, scaleX float64, scaleY float64, tX float64, tY float64)
- func (f *Pdf) UseTemplate(t Template)
- func (f *Pdf) UseTemplateScaled(t Template, corner Point, size Size)
- func (f *Pdf) Write(h float64, txtStr string)
- func (f *Pdf) WriteAligned(width, lineHeight float64, textStr, alignStr string)
- func (f *Pdf) WriteLinkID(h float64, displayStr string, linkID int)
- func (f *Pdf) WriteLinkString(h float64, displayStr, targetStr string)
- func (f *Pdf) Writef(h float64, fmtStr string, args ...interface{})
- type Point
- type RGBAType
- type RGBType
- type SVGBasicSegmentType
- type SVGBasicType
- type Size
- type StateType
- type Template
- type TextRenderMode
- type TickFormatFncType
- type Tpl
- type TransformMatrix
- type TtfType
Constants ¶
const ( // OrientationPortrait represents the portrait orientation. OrientationPortrait = "portrait" // OrientationLandscape represents the landscape orientation. OrientationLandscape = "landscape" )
const ( // UnitPoint represents the size unit point UnitPoint = "pt" // UnitMillimeter represents the size unit millimeter UnitMillimeter = "mm" // UnitCentimeter represents the size unit centimeter UnitCentimeter = "cm" // UnitInch represents the size unit inch UnitInch = "inch" )
const ( // PageSizeA3 represents DIN/ISO A3 page size PageSizeA3 = "A3" // PageSizeA4 represents DIN/ISO A4 page size PageSizeA4 = "A4" // PageSizeA5 represents DIN/ISO A5 page size PageSizeA5 = "A5" // PageSizeLetter represents US Letter page size PageSizeLetter = "Letter" // PageSizeLegal represents US Legal page size PageSizeLegal = "Legal" )
const ( // BorderNone set no border BorderNone = "" // BorderFull sets a full border BorderFull = "1" // BorderLeft sets the border on the left side BorderLeft = "L" // BorderTop sets the border at the top BorderTop = "T" // BorderRight sets the border on the right side BorderRight = "R" // BorderBottom sets the border on the bottom BorderBottom = "B" )
const ( // LineBreakNone disables linebreak LineBreakNone = 0 // LineBreakNormal enables normal linebreak LineBreakNormal = 1 // LineBreakBelow enables linebreak below LineBreakBelow = 2 )
const ( // AlignLeft left aligns the cell AlignLeft = "L" // AlignRight right aligns the cell AlignRight = "R" // AlignCenter centers the cell AlignCenter = "C" // AlignTop aligns the cell to the top AlignTop = "T" // AlignBottom aligns the cell to the bottom AlignBottom = "B" // AlignMiddle aligns the cell to the middle AlignMiddle = "M" // AlignBaseline aligns the cell to the baseline AlignBaseline = "B" )
const ( // FontFlagFixedPitch is set if all glyphs have the same width (as // opposed to proportional or variable-pitch fonts, which have // different widths). FontFlagFixedPitch = 1 << 0 // FontFlagSerif is set if glyphs have serifs, which are short // strokes drawn at an angle on the top and bottom of glyph stems. // (Sans serif fonts do not have serifs.) FontFlagSerif = 1 << 1 // FontFlagSymbolic is set if font contains glyphs outside the // Adobe standard Latin character set. This flag and the // Nonsymbolic flag shall not both be set or both be clear. FontFlagSymbolic = 1 << 2 // FontFlagScript is set if glyphs resemble cursive handwriting. FontFlagScript = 1 << 3 // FontFlagNonsymbolic is set if font uses the Adobe standard // Latin character set or a subset of it. FontFlagNonsymbolic = 1 << 5 // FontFlagItalic is set if glyphs have dominant vertical strokes // that are slanted. FontFlagItalic = 1 << 6 // FontFlagAllCap is set if font contains no lowercase letters; // typically used for display purposes, such as for titles or // headlines. FontFlagAllCap = 1 << 16 // SmallCap is set if font contains both uppercase and lowercase // letters. The uppercase letters are similar to those in the // regular version of the same typeface family. The glyphs for the // lowercase letters have the same shapes as the corresponding // uppercase letters, but they are sized and their proportions // adjusted so that they have the same size and stroke weight as // lowercase glyphs in the same typeface family. SmallCap = 1 << 18 // ForceBold determines whether bold glyphs shall be painted with // extra pixels even at very small text sizes by a conforming // reader. If the ForceBold flag is set, features of bold glyphs // may be thickened at small text sizes. ForceBold = 1 << 18 )
Font flags for FontDescType.Flags as defined in the pdf specification.
const ( CnProtectPrint = 4 CnProtectModify = 8 CnProtectCopy = 16 CnProtectAnnotForms = 32 )
Advisory bitflag constants that control document activities
Variables ¶
This section is empty.
Functions ¶
func MakeFont ¶
func MakeFont(fontFileStr, encodingFileStr, dstDirStr string, msgWriter io.Writer, embed bool) error
MakeFont generates a font definition file in JSON format. A definition file of this type is required to use non-core fonts in the PDF documents that gopdf generates. See the makefont utility in the gopdf package for a command line interface to this function.
fontFileStr is the name of the TrueType file (extension .ttf), OpenType file (extension .otf) or binary Type1 file (extension .pfb) from which to generate a definition file. If an OpenType file is specified, it must be one that is based on TrueType outlines, not PostScript outlines; this cannot be determined from the file extension alone. If a Type1 file is specified, a metric file with the same pathname except with the extension .afm must be present.
encodingFileStr is the name of the encoding file that corresponds to the font.
dstDirStr is the name of the directory in which to save the definition file and, if embed is true, the compressed font file.
msgWriter is the writer that is called to display messages throughout the process. Use nil to turn off messages.
embed is true if the font is to be embedded in the PDF files.
func SetDefaultCatalogSort ¶
func SetDefaultCatalogSort(flag bool)
SetDefaultCatalogSort sets the default value of the catalog sort flag that will be used when initializing a new Pdf instance. See SetCatalogSort() for more details.
func SetDefaultCompression ¶
func SetDefaultCompression(compress bool)
SetDefaultCompression controls the default setting of the internal compression flag. See SetCompression() for more details. Compression is on by default.
func SetDefaultCreationDate ¶
SetDefaultCreationDate sets the default value of the document creation date that will be used when initializing a new Pdf instance. See SetCreationDate() for more details.
func SetDefaultModificationDate ¶
SetDefaultModificationDate sets the default value of the document modification date that will be used when initializing a new Pdf instance. See SetCreationDate() for more details.
func TickmarkPrecision ¶
TickmarkPrecision returns an appropriate precision value for label formatting.
func Tickmarks ¶
Tickmarks returns a slice of tickmarks appropriate for a chart axis and an appropriate precision for formatting purposes. The values min and max will be contained within the tickmark range.
func UTF8CutFont ¶
UTF8CutFont is a utility function that generates a TrueType font composed only of the runes included in cutset. The rune glyphs are copied from This function is demonstrated in ExampleUTF8CutFont().
func UnicodeTranslator ¶
UnicodeTranslator returns a function that can be used to translate, where possible, utf-8 strings to a form that is compatible with the specified code page. The returned function accepts a string and returns a string.
r is a reader that should read a buffer made up of content lines that pertain to the code page of interest. Each line is made up of three whitespace separated fields. The first begins with "!" and is followed by two hexadecimal digits that identify the glyph position in the code page of interest. The second field begins with "U+" and is followed by the unicode code point value. The third is the glyph name. A number of these code page map files are packaged with the gfpdf library in the font directory.
An error occurs only if a line is read that does not conform to the expected format. In this case, the returned function is valid but does not perform any rune translation.
func UnicodeTranslatorFromFile ¶
UnicodeTranslatorFromFile returns a function that can be used to translate, where possible, utf-8 strings to a form that is compatible with the specified code page. See UnicodeTranslator for more details.
fileStr identifies a font descriptor file that maps glyph positions to names.
If an error occurs reading the file, the returned function is valid but does not perform any rune translation.
Types ¶
type Attachment ¶
type Attachment struct { Content []byte // Filename is the displayed name of the attachment Filename string // Description is only displayed when using AddAttachmentAnnotation(), // and might be modified by the pdf reader. Description string // contains filtered or unexported fields }
Attachment defines a content to be included in the pdf, in one of the following ways :
- associated with the document as a whole : see SetAttachments()
- accessible via a link localized on a page : see AddAttachmentAnnotation()
type FontDescType ¶
type FontDescType struct { // The maximum height above the baseline reached by glyphs in this // font (for example for "S"). The height of glyphs for accented // characters shall be excluded. Ascent int // The maximum depth below the baseline reached by glyphs in this // font. The value shall be a negative number. Descent int // The vertical coordinate of the top of flat capital letters, // measured from the baseline (for example "H"). CapHeight int // A collection of flags defining various characteristics of the // font. (See the FontFlag* constants.) Flags int // A rectangle, expressed in the glyph coordinate system, that // shall specify the font bounding box. This should be the smallest // rectangle enclosing the shape that would result if all of the // glyphs of the font were placed with their origins coincident // and then filled. FontBBox fontBoxType // The angle, expressed in degrees counterclockwise from the // vertical, of the dominant vertical strokes of the font. (The // 9-o’clock position is 90 degrees, and the 3-o’clock position // is –90 degrees.) The value shall be negative for fonts that // slope to the right, as almost all italic fonts do. ItalicAngle int // The thickness, measured horizontally, of the dominant vertical // stems of glyphs in the font. StemV int // The width to use for character codes whose widths are not // specified in a font dictionary’s Widths array. This shall have // a predictable effect only if all such codes map to glyphs whose // actual widths are the same as the value of the MissingWidth // entry. (Default value: 0.) MissingWidth int }
FontDescType (font descriptor) specifies metrics and other attributes of a font, as distinct from the metrics of individual glyphs (as defined in the pdf specification).
type FpdfTpl ¶
type FpdfTpl struct {
// contains filtered or unexported fields
}
FpdfTpl is a concrete implementation of the Template interface.
func (*FpdfTpl) FromPages ¶
FromPages creates a template slice with all the pages within a template.
func (*FpdfTpl) GobDecode ¶
GobDecode decodes the specified byte buffer into the receiving template.
func (*FpdfTpl) GobEncode ¶
GobEncode encodes the receiving template into a byte buffer. Use GobDecode to decode the byte buffer back to a template.
func (*FpdfTpl) Images ¶
func (t *FpdfTpl) Images() map[string]*ImageInfoType
Images returns a list of the images used in this template
func (*FpdfTpl) NumPages ¶
NumPages returns the number of available pages within the template. Look at FromPage and FromPages on access to that content.
type GridType ¶
type GridType struct {
// Labels are inside of graph boundary
XLabelIn, YLabelIn bool
// Labels on X-axis should be rotated
XLabelRotate bool
// Formatters; use nil to eliminate labels
XTickStr, YTickStr TickFormatFncType
// Subdivisions between tickmarks
XDiv, YDiv int
// Line and label colors
ClrText, ClrMain, ClrSub RGBAType
// Line thickness
WdMain, WdSub float64
// Label height in points
TextSize float64
// contains filtered or unexported fields
}
GridType assists with the generation of graphs. It allows the application to work with logical data coordinates rather than page coordinates and assists with the drawing of a background grid.
func NewGrid ¶
NewGrid returns a variable of type GridType that is initialized to draw on a rectangle of width w and height h with the upper left corner positioned at point (x, y). The coordinates are in page units, that is, the same as those specified in New().
The returned variable is initialized with a very simple default tickmark layout that ranges from 0 to 1 in both axes. Prior to calling Grid(), the application may establish a more suitable tickmark layout by calling the methods TickmarksContainX() and TickmarksContainY(). These methods bound the data range with appropriate boundaries and divisions. Alternatively, if the exact extent and divisions of the tickmark layout are known, the methods TickmarksExtentX() and TickmarksExtentY may be called instead.
func (GridType) Ht ¶
Ht converts dataHt, specified in logical data units, to the unit of measure specified in New().
func (GridType) HtAbs ¶
HtAbs returns the absolute value of dataHt, specified in logical data units, that has been converted to the unit of measure specified in New().
func (GridType) Plot ¶
Plot plots a series of count line segments from xMin to xMax. It repeatedly calls fnc(x) to retrieve the y value associate with x. The currently selected line drawing attributes are used.
func (GridType) Pos ¶
Pos returns the point, in page units, indicated by the relative positions xRel and yRel. These are values between 0 and 1. xRel specifies the relative position between the grid's left and right edges. yRel specifies the relative position between the grid's bottom and top edges.
func (*GridType) TickmarksContainX ¶
TickmarksContainX sets the tickmarks to be shown by Grid() in the horizontal dimension. The argument min and max specify the minimum and maximum values to be contained within the grid. The tickmark values that are generated are suitable for general purpose graphs.
See TickmarkExtentX() for an alternative to this method to be used when the exact values of the tickmarks are to be set by the application.
func (*GridType) TickmarksContainY ¶
TickmarksContainY sets the tickmarks to be shown by Grid() in the vertical dimension. The argument min and max specify the minimum and maximum values to be contained within the grid. The tickmark values that are generated are suitable for general purpose graphs.
See TickmarkExtentY() for an alternative to this method to be used when the exact values of the tickmarks are to be set by the application.
func (*GridType) TickmarksExtentX ¶
TickmarksExtentX sets the tickmarks to be shown by Grid() in the horizontal dimension. count specifies number of major tickmark subdivisions to be graphed. min specifies the leftmost data value. div specifies, in data units, the extent of each major tickmark subdivision.
See TickmarkContainX() for an alternative to this method to be used when viewer-friendly tickmarks are to be determined automatically.
func (*GridType) TickmarksExtentY ¶
TickmarksExtentY sets the tickmarks to be shown by Grid() in the vertical dimension. count specifies number of major tickmark subdivisions to be graphed. min specifies the bottommost data value. div specifies, in data units, the extent of each major tickmark subdivision.
See TickmarkContainY() for an alternative to this method to be used when viewer-friendly tickmarks are to be determined automatically.
func (GridType) Wd ¶
Wd converts dataWd, specified in logical data units, to the unit of measure specified in New().
func (GridType) WdAbs ¶
WdAbs returns the absolute value of dataWd, specified in logical data units, that has been converted to the unit of measure specified in New().
func (GridType) X ¶
X converts dataX, specified in logical data units, to the X position on the current page.
func (GridType) XRange ¶
XRange returns the minimum and maximum values for the current tickmark sequence. These correspond to the data values of the graph's left and right edges.
func (GridType) XY ¶
XY converts dataX and dataY, specified in logical data units, to the X and Y position on the current page.
type HTMLBasicSegmentType ¶
type HTMLBasicSegmentType struct { Cat byte // 'O' open tag, 'C' close tag, 'T' text Str string // Literal text unchanged, tags are lower case Attr map[string]string // Attribute keys are lower case }
HTMLBasicSegmentType defines a segment of literal text in which the current attributes do not vary, or an open tag or a close tag.
func HTMLBasicTokenize ¶
func HTMLBasicTokenize(htmlStr string) (list []HTMLBasicSegmentType)
HTMLBasicTokenize returns a list of HTML tags and literal elements. This is done with regular expressions, so the result is only marginally better than useless.
type HTMLBasicType ¶
type HTMLBasicType struct { Link struct { ClrR, ClrG, ClrB int Bold, Italic, Underscore bool } // contains filtered or unexported fields }
HTMLBasicType is used for rendering a very basic subset of HTML. It supports only hyperlinks and bold, italic and underscore attributes. In the Link structure, the ClrR, ClrG and ClrB fields (0 through 255) define the color of hyperlinks. The Bold, Italic and Underscore values define the hyperlink style.
func (*HTMLBasicType) Write ¶
func (html *HTMLBasicType) Write(lineHt float64, htmlStr string)
Write prints text from the current position using the currently selected font. See HTMLBasicNew() to create a receiver that is associated with the PDF document instance. The text can be encoded with a basic subset of HTML that includes hyperlinks and tags for italic (I), bold (B), underscore (U) and center (CENTER) attributes. When the right margin is reached a line break occurs and text continues from the left margin. Upon method exit, the current position is left at the end of the text.
lineHt indicates the line height in the unit of measure specified in New().
type ImageInfoType ¶
type ImageInfoType struct {
// contains filtered or unexported fields
}
ImageInfoType contains size, color and other information about an image. Changes to this structure should be reflected in its GobEncode and GobDecode methods.
func (*ImageInfoType) Extent ¶
func (info *ImageInfoType) Extent() (wd, ht float64)
Extent returns the width and height of the image in the units of the Pdf object.
func (*ImageInfoType) GobDecode ¶
func (info *ImageInfoType) GobDecode(buf []byte) (err error)
GobDecode decodes the specified byte buffer (generated by GobEncode) into the receiving image.
func (*ImageInfoType) GobEncode ¶
func (info *ImageInfoType) GobEncode() (buf []byte, err error)
GobEncode encodes the receiving image to a byte slice.
func (*ImageInfoType) Height ¶
func (info *ImageInfoType) Height() float64
Height returns the height of the image in the units of the Pdf object.
func (*ImageInfoType) SetDpi ¶
func (info *ImageInfoType) SetDpi(dpi float64)
SetDpi sets the dots per inch for an image. PNG images MAY have their dpi set automatically, if the image specifies it. DPI information is not currently available automatically for JPG and GIF images, so if it's important to you, you can set it here. It defaults to 72 dpi.
func (*ImageInfoType) Width ¶
func (info *ImageInfoType) Width() float64
Width returns the width of the image in the units of the Pdf object.
type ImageOptions ¶
ImageOptions provides a place to hang any options we want to use while parsing an image.
ImageType's possible values are (case insensitive): "JPG", "JPEG", "PNG" and "GIF". If empty, the type is inferred from the file extension.
ReadDpi defines whether to attempt to automatically read the image dpi information from the image file. Normally, this should be set to true (understanding that not all images will have this info available). However, for backwards compatibility with previous versions of the API, it defaults to false.
AllowNegativePosition can be set to true in order to prevent the default coercion of negative x values to the current x position.
type InitType ¶
type InitType struct { OrientationStr string UnitStr string SizeStr string Size Size FontDirStr string }
InitType is used with NewCustom() to customize an Pdf instance. OrientationStr, UnitStr, SizeStr and FontDirStr correspond to the arguments accepted by New(). If the Wd and Ht fields of Size are each greater than zero, Size will be used to set the default page size rather than SizeStr. Wd and Ht are specified in the units of measure indicated by UnitStr.
type Pdf ¶
type Pdf struct {
// contains filtered or unexported fields
}
Pdf is the principal structure for creating a single PDF document
func New ¶
New returns a pointer to a new Pdf instance. Its methods are subsequently called to produce a single PDF document.
orientationStr specifies the default page orientation. For portrait mode, specify "P" or "Portrait". For landscape mode, specify "L" or "Landscape". An empty string will be replaced with "P".
unitStr specifies the unit of length used in size parameters for elements other than fonts, which are always measured in points. Specify "pt" for point, "mm" for millimeter, "cm" for centimeter, or "in" for inch. An empty string will be replaced with "mm".
sizeStr specifies the page size. Acceptable values are "A3", "A4", "A5", "Letter", "Legal", or "Tabloid". An empty string will be replaced with "A4".
fontDirStr specifies the file system location in which font resources will be found. An empty string is replaced with ".". This argument only needs to reference an actual directory if a font other than one of the core fonts is used. The core fonts are "courier", "helvetica" (also called "arial"), "times", and "zapfdingbats" (also called "symbol").
func NewCustom ¶
NewCustom returns a pointer to a new Pdf instance. Its methods are subsequently called to produce a single PDF document. NewCustom() is an alternative to New() that provides additional customization. The PageSize() example demonstrates this method.
func (*Pdf) AddAttachmentAnnotation ¶
func (f *Pdf) AddAttachmentAnnotation(a *Attachment, x, y, w, h float64)
AddAttachmentAnnotation puts a link on the current page, on the rectangle defined by `x`, `y`, `w`, `h`. This link points towards the content defined in `a`, which is embedded in the document. Note than no drawing is done by this method : a method like `Cell()` or `Rect()` should be called to indicate to the reader that there is a link here. Requiring a pointer to an Attachment avoids useless copies in the resulting pdf: attachment pointing to the same data will have their content only be included once, and be shared amongst all links. Be aware that not all PDF readers support annotated attachments. See the AddAttachmentAnnotation example for a demonstration of this method.
func (*Pdf) AddFont ¶
AddFont imports a TrueType, OpenType or Type1 font and makes it available. It is necessary to generate a font definition file first with the makefont utility. It is not necessary to call this function for the core PDF fonts (courier, helvetica, times, zapfdingbats).
The JSON definition file (and the font file itself when embedding) must be present in the font directory. If it is not found, the error "Could not include font definition file" is set.
family specifies the font family. The name can be chosen arbitrarily. If it is a standard family name, it will override the corresponding font. This string is used to subsequently set the font with the SetFont method.
style specifies the font style. Acceptable values are (case insensitive) the empty string for regular style, "B" for bold, "I" for italic, or "BI" or "IB" for bold and italic combined.
fileStr specifies the base name with ".json" extension of the font definition file to be added. The file will be loaded from the font directory specified in the call to New() or SetFontLocation().
func (*Pdf) AddFontFromBytes ¶
AddFontFromBytes imports a TrueType, OpenType or Type1 font from static bytes within the executable and makes it available for use in the generated document.
family specifies the font family. The name can be chosen arbitrarily. If it is a standard family name, it will override the corresponding font. This string is used to subsequently set the font with the SetFont method.
style specifies the font style. Acceptable values are (case insensitive) the empty string for regular style, "B" for bold, "I" for italic, or "BI" or "IB" for bold and italic combined.
jsonFileBytes contain all bytes of JSON file.
zFileBytes contain all bytes of Z file.
func (*Pdf) AddFontFromReader ¶
AddFontFromReader imports a TrueType, OpenType or Type1 font and makes it available using a reader that satisifies the io.Reader interface. See AddFont for details about familyStr and styleStr.
func (*Pdf) AddLayer ¶
AddLayer defines a layer that can be shown or hidden when the document is displayed. name specifies the layer name that the document reader will display in the layer list. visible specifies whether the layer will be initially visible. The return value is an integer ID that is used in a call to BeginLayer().
func (*Pdf) AddLink ¶
AddLink creates a new internal link and returns its identifier. An internal link is a clickable area which directs to another place within the document. The identifier can then be passed to Cell(), Write(), Image() or Link(). The destination is defined with SetLink().
func (*Pdf) AddPage ¶
func (f *Pdf) AddPage()
AddPage adds a new page to the document. If a page is already present, the Footer() method is called first to output the footer. Then the page is added, the current position set to the top-left corner according to the left and top margins, and Header() is called to display the header.
The font which was set before calling is automatically restored. There is no need to call SetFont() again if you want to continue with the same font. The same is true for colors and line width.
The origin of the coordinate system is at the top-left corner and increasing ordinates go downwards.
See AddPageFormat() for a version of this method that allows the page size and orientation to be different than the default.
func (*Pdf) AddPageFormat ¶
AddPageFormat adds a new page with non-default orientation or size. See AddPage() for more details.
See New() for a description of orientationStr.
size specifies the size of the new page in the units established in New().
The PageSize() example demonstrates this method.
func (*Pdf) AddSpotColor ¶
AddSpotColor adds an ink-based CMYK color to the gopdf instance and associates it with the specified name. The individual components specify percentages ranging from 0 to 100. Values above this are quietly capped to 100. An error occurs if the specified name is already associated with a color.
func (*Pdf) AddUTF8Font ¶
AddUTF8Font imports a TrueType font with utf-8 symbols and makes it available. It is necessary to generate a font definition file first with the makefont utility. It is not necessary to call this function for the core PDF fonts (courier, helvetica, times, zapfdingbats).
The JSON definition file (and the font file itself when embedding) must be present in the font directory. If it is not found, the error "Could not include font definition file" is set.
family specifies the font family. The name can be chosen arbitrarily. If it is a standard family name, it will override the corresponding font. This string is used to subsequently set the font with the SetFont method.
style specifies the font style. Acceptable values are (case insensitive) the empty string for regular style, "B" for bold, "I" for italic, or "BI" or "IB" for bold and italic combined.
fileStr specifies the base name with ".json" extension of the font definition file to be added. The file will be loaded from the font directory specified in the call to New() or SetFontLocation().
func (*Pdf) AddUTF8FontFromBytes ¶
AddUTF8FontFromBytes imports a TrueType font with utf-8 symbols from static bytes within the executable and makes it available for use in the generated document.
family specifies the font family. The name can be chosen arbitrarily. If it is a standard family name, it will override the corresponding font. This string is used to subsequently set the font with the SetFont method.
style specifies the font style. Acceptable values are (case insensitive) the empty string for regular style, "B" for bold, "I" for italic, or "BI" or "IB" for bold and italic combined.
jsonFileBytes contain all bytes of JSON file.
zFileBytes contain all bytes of Z file.
func (*Pdf) AliasNbPages ¶
AliasNbPages defines an alias for the total number of pages. It will be substituted as the document is closed. An empty string is replaced with the string "{nb}".
See the example for AddPage() for a demonstration of this method.
func (*Pdf) Arc ¶
Arc draws an elliptical arc centered at point (x, y). rx and ry specify its horizontal and vertical radii.
degRotate specifies the angle that the arc will be rotated. degStart and degEnd specify the starting and ending angle of the arc. All angles are specified in degrees and measured counter-clockwise from the 3 o'clock position.
styleStr can be "F" for filled, "D" for outlined only, or "DF" or "FD" for outlined and filled. An empty string will be replaced with "D". Drawing uses the current draw color, line width, and cap style centered on the arc's path. Filling uses the current fill color.
The Circle() example demonstrates this method.
func (*Pdf) ArcTo ¶
ArcTo draws an elliptical arc centered at point (x, y). rx and ry specify its horizontal and vertical radii. If the start of the arc is not at the current position, a connecting line will be drawn.
degRotate specifies the angle that the arc will be rotated. degStart and degEnd specify the starting and ending angle of the arc. All angles are specified in degrees and measured counter-clockwise from the 3 o'clock position.
styleStr can be "F" for filled, "D" for outlined only, or "DF" or "FD" for outlined and filled. An empty string will be replaced with "D". Drawing uses the current draw color, line width, and cap style centered on the arc's path. Filling uses the current fill color.
The MoveTo() example demonstrates this method.
func (*Pdf) BeginLayer ¶
BeginLayer is called to begin adding content to the specified layer. All content added to the page between a call to BeginLayer and a call to EndLayer is added to the layer specified by id. See AddLayer for more details.
func (*Pdf) Beziergon ¶
Beziergon draws a closed figure defined by a series of cubic Bézier curve segments. The first point in the slice defines the starting point of the figure. Each three following points p1, p2, p3 represent a curve segment to the point p3 using p1 and p2 as the Bézier control points.
The x and y fields of the points use the units established in New().
styleStr can be "F" for filled, "D" for outlined only, or "DF" or "FD" for outlined and filled. An empty string will be replaced with "D". Drawing uses the current draw color and line width centered on the ellipse's perimeter. Filling uses the current fill color.
func (*Pdf) Bookmark ¶
Bookmark sets a bookmark that will be displayed in a sidebar outline. txtStr is the title of the bookmark. level specifies the level of the bookmark in the outline; 0 is the top level, 1 is just below, and so on. y specifies the vertical position of the bookmark destination in the current page; -1 indicates the current position.
func (*Pdf) Cell ¶
Cell is a simpler version of CellFormat with no fill, border, links or special alignment. The Cell_strikeout() example demonstrates this method.
func (*Pdf) CellFormat ¶
func (f *Pdf) CellFormat(w, h float64, txtStr, borderStr string, ln int, alignStr string, fill bool, link int, linkStr string)
CellFormat prints a rectangular cell with optional borders, background color and character string. The upper-left corner of the cell corresponds to the current position. The text can be aligned or centered. After the call, the current position moves to the right or to the next line. It is possible to put a link on the text.
An error will be returned if a call to SetFont() has not already taken place before this method is called.
If automatic page breaking is enabled and the cell goes beyond the limit, a page break is done before outputting.
w and h specify the width and height of the cell. If w is 0, the cell extends up to the right margin. Specifying 0 for h will result in no output, but the current position will be advanced by w.
txtStr specifies the text to display.
borderStr specifies how the cell border will be drawn. An empty string indicates no border, "1" indicates a full border, and one or more of "L", "T", "R" and "B" indicate the left, top, right and bottom sides of the border.
ln indicates where the current position should go after the call. Possible values are 0 (to the right), 1 (to the beginning of the next line), and 2 (below). Putting 1 is equivalent to putting 0 and calling Ln() just after.
alignStr specifies how the text is to be positioned within the cell. Horizontal alignment is controlled by including "L", "C" or "R" (left, center, right) in alignStr. Vertical alignment is controlled by including "T", "M", "B" or "A" (top, middle, bottom, baseline) in alignStr. The default alignment is left middle.
fill is true to paint the cell background or false to leave it transparent.
link is the identifier returned by AddLink() or 0 for no internal link.
linkStr is a target URL or empty for no external link. A non--zero value for link takes precedence over linkStr.
func (*Pdf) Cellf ¶
Cellf is a simpler printf-style version of CellFormat with no fill, border, links or special alignment. See documentation for the fmt package for details on fmtStr and args.
func (*Pdf) Circle ¶
Circle draws a circle centered on point (x, y) with radius r.
styleStr can be "F" for filled, "D" for outlined only, or "DF" or "FD" for outlined and filled. An empty string will be replaced with "D". Drawing uses the current draw color and line width centered on the circle's perimeter. Filling uses the current fill color.
func (*Pdf) ClearError ¶
func (f *Pdf) ClearError()
ClearError unsets the internal Pdf error. This method should be used with care, as an internal error condition usually indicates an unrecoverable problem with the generation of a document. It is intended to deal with cases in which an error is used to select an alternate form of the document.
func (*Pdf) ClipCircle ¶
ClipCircle begins a circular clipping operation. The circle is centered at (x, y) and has radius r. outline is true to draw a border with the current draw color and line width centered on the circle's perimeter. Only the outer half of the border will be shown. After calling this method, all rendering operations (for example, Image(), LinearGradient(), etc) will be clipped by the specified circle. Call ClipEnd() to restore unclipped operations.
The ClipText() example demonstrates this method.
func (*Pdf) ClipEllipse ¶
ClipEllipse begins an elliptical clipping operation. The ellipse is centered at (x, y). Its horizontal and vertical radii are specified by rx and ry. outline is true to draw a border with the current draw color and line width centered on the ellipse's perimeter. Only the outer half of the border will be shown. After calling this method, all rendering operations (for example, Image(), LinearGradient(), etc) will be clipped by the specified ellipse. Call ClipEnd() to restore unclipped operations.
This ClipText() example demonstrates this method.
func (*Pdf) ClipEnd ¶
func (f *Pdf) ClipEnd()
ClipEnd ends a clipping operation that was started with a call to ClipRect(), ClipRoundedRect(), ClipText(), ClipEllipse(), ClipCircle() or ClipPolygon(). Clipping operations can be nested. The document cannot be successfully output while a clipping operation is active.
The ClipText() example demonstrates this method.
func (*Pdf) ClipPolygon ¶
ClipPolygon begins a clipping operation within a polygon. The figure is defined by a series of vertices specified by points. The x and y fields of the points use the units established in New(). The last point in the slice will be implicitly joined to the first to close the polygon. outline is true to draw a border with the current draw color and line width centered on the polygon's perimeter. Only the outer half of the border will be shown. After calling this method, all rendering operations (for example, Image(), LinearGradient(), etc) will be clipped by the specified polygon. Call ClipEnd() to restore unclipped operations.
The ClipText() example demonstrates this method.
func (*Pdf) ClipRect ¶
ClipRect begins a rectangular clipping operation. The rectangle is of width w and height h. Its upper left corner is positioned at point (x, y). outline is true to draw a border with the current draw color and line width centered on the rectangle's perimeter. Only the outer half of the border will be shown. After calling this method, all rendering operations (for example, Image(), LinearGradient(), etc) will be clipped by the specified rectangle. Call ClipEnd() to restore unclipped operations.
This ClipText() example demonstrates this method.
func (*Pdf) ClipRoundedRect ¶
ClipRoundedRect begins a rectangular clipping operation. The rectangle is of width w and height h. Its upper left corner is positioned at point (x, y). The rounded corners of the rectangle are specified by radius r. outline is true to draw a border with the current draw color and line width centered on the rectangle's perimeter. Only the outer half of the border will be shown. After calling this method, all rendering operations (for example, Image(), LinearGradient(), etc) will be clipped by the specified rectangle. Call ClipEnd() to restore unclipped operations.
This ClipText() example demonstrates this method.
func (*Pdf) ClipRoundedRectExt ¶
ClipRoundedRectExt behaves the same as ClipRoundedRect() but supports a different radius for each corner, given by rTL (top-left), rTR (top-right) rBR (bottom-right), rBL (bottom-left). See ClipRoundedRect() for more details. This method is demonstrated in the ClipText() example.
func (*Pdf) ClipText ¶
ClipText begins a clipping operation in which rendering is confined to the character string specified by txtStr. The origin (x, y) is on the left of the first character at the baseline. The current font is used. outline is true to draw a border with the current draw color and line width centered on the perimeters of the text characters. Only the outer half of the border will be shown. After calling this method, all rendering operations (for example, Image(), LinearGradient(), etc) will be clipped. Call ClipEnd() to restore unclipped operations.
func (*Pdf) Close ¶
func (f *Pdf) Close()
Close terminates the PDF document. It is not necessary to call this method explicitly because Output(), OutputAndClose() and OutputFileAndClose() do it automatically. If the document contains no page, AddPage() is called to prevent the generation of an invalid document.
func (*Pdf) ClosePath ¶
func (f *Pdf) ClosePath()
ClosePath creates a line from the current location to the last MoveTo point (if not the same) and mark the path as closed so the first and last lines join nicely.
The MoveTo() example demonstrates this method.
func (*Pdf) CreateTemplate ¶
CreateTemplate defines a new template using the current page size.
func (*Pdf) CreateTemplateCustom ¶
CreateTemplateCustom starts a template, using the given bounds.
func (*Pdf) Curve ¶
Curve draws a single-segment quadratic Bézier curve. The curve starts at the point (x0, y0) and ends at the point (x1, y1). The control point (cx, cy) specifies the curvature. At the start point, the curve is tangent to the straight line between the start point and the control point. At the end point, the curve is tangent to the straight line between the end point and the control point.
styleStr can be "F" for filled, "D" for outlined only, or "DF" or "FD" for outlined and filled. An empty string will be replaced with "D". Drawing uses the current draw color, line width, and cap style centered on the curve's path. Filling uses the current fill color.
The Circle() example demonstrates this method.
func (*Pdf) CurveBezierCubic ¶
CurveBezierCubic draws a single-segment cubic Bézier curve. The curve starts at the point (x0, y0) and ends at the point (x1, y1). The control points (cx0, cy0) and (cx1, cy1) specify the curvature. At the start point, the curve is tangent to the straight line between the start point and the control point (cx0, cy0). At the end point, the curve is tangent to the straight line between the end point and the control point (cx1, cy1).
styleStr can be "F" for filled, "D" for outlined only, or "DF" or "FD" for outlined and filled. An empty string will be replaced with "D". Drawing uses the current draw color, line width, and cap style centered on the curve's path. Filling uses the current fill color.
This routine performs the same function as CurveCubic() but uses standard argument order.
The Circle() example demonstrates this method.
func (*Pdf) CurveBezierCubicTo ¶
CurveBezierCubicTo creates a single-segment cubic Bézier curve. The curve starts at the current stylus location and ends at the point (x, y). The control points (cx0, cy0) and (cx1, cy1) specify the curvature. At the current stylus, the curve is tangent to the straight line between the current stylus location and the control point (cx0, cy0). At the end point, the curve is tangent to the straight line between the end point and the control point (cx1, cy1).
The MoveTo() example demonstrates this method.
func (*Pdf) CurveCubic ¶
CurveCubic draws a single-segment cubic Bézier curve. This routine performs the same function as CurveBezierCubic() but has a nonstandard argument order. It is retained to preserve backward compatibility.
func (*Pdf) CurveTo ¶
CurveTo creates a single-segment quadratic Bézier curve. The curve starts at the current stylus location and ends at the point (x, y). The control point (cx, cy) specifies the curvature. At the start point, the curve is tangent to the straight line between the current stylus location and the control point. At the end point, the curve is tangent to the straight line between the end point and the control point.
The MoveTo() example demonstrates this method.
func (*Pdf) DrawPath ¶
DrawPath actually draws the path on the page.
styleStr can be "F" for filled, "D" for outlined only, or "DF" or "FD" for outlined and filled. An empty string will be replaced with "D". Path-painting operators as defined in the PDF specification are also allowed: "S" (Stroke the path), "s" (Close and stroke the path), "f" (fill the path, using the nonzero winding number), "f*" (Fill the path, using the even-odd rule), "B" (Fill and then stroke the path, using the nonzero winding number rule), "B*" (Fill and then stroke the path, using the even-odd rule), "b" (Close, fill, and then stroke the path, using the nonzero winding number rule) and "b*" (Close, fill, and then stroke the path, using the even-odd rule). Drawing uses the current draw color, line width, and cap style centered on the path. Filling uses the current fill color.
The MoveTo() example demonstrates this method.
func (*Pdf) Ellipse ¶
Ellipse draws an ellipse centered at point (x, y). rx and ry specify its horizontal and vertical radii.
degRotate specifies the counter-clockwise angle in degrees that the ellipse will be rotated.
styleStr can be "F" for filled, "D" for outlined only, or "DF" or "FD" for outlined and filled. An empty string will be replaced with "D". Drawing uses the current draw color and line width centered on the ellipse's perimeter. Filling uses the current fill color.
The Circle() example demonstrates this method.
func (*Pdf) EndLayer ¶
func (f *Pdf) EndLayer()
EndLayer is called to stop adding content to the currently active layer. See BeginLayer for more details.
func (*Pdf) Error ¶
Error returns the internal Pdf error; this will be nil if no error has occurred.
func (*Pdf) GetAlpha ¶
GetAlpha returns the alpha blending channel, which consists of the alpha transparency value and the blend mode. See SetAlpha for more details.
func (*Pdf) GetAutoPageBreak ¶
GetAutoPageBreak returns true if automatic pages breaks are enabled, false otherwise. This is followed by the triggering limit from the bottom of the page. This value applies only if automatic page breaks are enabled.
func (*Pdf) GetCellMargin ¶
GetCellMargin returns the cell margin. This is the amount of space before and after the text within a cell that's left blank, and is in units passed to New(). It defaults to 1mm.
func (*Pdf) GetConversionRatio ¶
GetConversionRatio returns the conversion ratio based on the unit given when creating the PDF.
func (*Pdf) GetDrawColor ¶
GetDrawColor returns the most recently set draw color as RGB components (0 - 255). This will not be the current value if a draw color of some other type (for example, spot) has been more recently set.
func (*Pdf) GetDrawSpotColor ¶
GetDrawSpotColor returns the most recently used spot color information for drawing. This will not be the current drawing color if some other color type such as RGB is active. If no spot color has been set for drawing, zero values are returned.
func (*Pdf) GetFillColor ¶
GetFillColor returns the most recently set fill color as RGB components (0 - 255). This will not be the current value if a fill color of some other type (for example, spot) has been more recently set.
func (*Pdf) GetFillSpotColor ¶
GetFillSpotColor returns the most recently used spot color information for fill output. This will not be the current fill color if some other color type such as RGB is active. If no fill spot color has been set, zero values are returned.
func (*Pdf) GetFontDesc ¶
func (f *Pdf) GetFontDesc(familyStr, styleStr string) FontDescType
GetFontDesc returns the font descriptor, which can be used for example to find the baseline of a font. If familyStr is empty current font descriptor will be returned. See FontDescType for documentation about the font descriptor. See AddFont for details about familyStr and styleStr.
func (*Pdf) GetFontSize ¶
GetFontSize returns the size of the current font in points followed by the size in the unit of measure specified in New(). The second value can be used as a line height value in drawing operations.
func (*Pdf) GetImageInfo ¶
func (f *Pdf) GetImageInfo(imageStr string) (info *ImageInfoType)
GetImageInfo returns information about the registered image specified by imageStr. If the image has not been registered, nil is returned. The internal error is not modified by this method.
func (*Pdf) GetLineWidth ¶
GetLineWidth returns the current line thickness.
func (*Pdf) GetMargins ¶
GetMargins returns the left, top, right, and bottom margins. The first three are set with the SetMargins() method. The bottom margin is set with the SetAutoPageBreak() method.
func (*Pdf) GetPageSize ¶
GetPageSize returns the current page's width and height. This is the paper's size. To compute the size of the area being used, subtract the margins (see GetMargins()).
func (*Pdf) GetPageSizeStr ¶
GetPageSizeStr returns the Size for the given sizeStr (that is A4, A3, etc..)
func (*Pdf) GetStringSymbolWidth ¶
GetStringSymbolWidth returns the length of a string in glyf units. A font must be currently selected.
func (*Pdf) GetStringWidth ¶
GetStringWidth returns the length of a string in user units. A font must be currently selected.
func (*Pdf) GetTextColor ¶
GetTextColor returns the most recently set text color as RGB components (0 - 255). This will not be the current value if a text color of some other type (for example, spot) has been more recently set.
func (*Pdf) GetTextSpotColor ¶
GetTextSpotColor returns the most recently used spot color information for text output. This will not be the current text color if some other color type such as RGB is active. If no spot color has been set for text, zero values are returned.
func (*Pdf) GetX ¶
GetX returns the abscissa of the current position.
Note: the value returned will be affected by the current cell margin. To account for this, you may need to either add the value returned by GetCellMargin() to it or call SetCellMargin(0) to remove the cell margin.
func (*Pdf) GetXY ¶
GetXY returns the abscissa and ordinate of the current position.
Note: the value returned for the abscissa will be affected by the current cell margin. To account for this, you may need to either add the value returned by GetCellMargin() to it or call SetCellMargin(0) to remove the cell margin.
func (*Pdf) HTMLBasicNew ¶
func (f *Pdf) HTMLBasicNew() (html HTMLBasicType)
HTMLBasicNew returns an instance that facilitates writing basic HTML in the specified PDF file.
func (*Pdf) Image ¶
func (f *Pdf) Image(imageNameStr string, x, y, w, h float64, flow bool, tp string, link int, linkStr string)
Image puts a JPEG, PNG or GIF image in the current page.
Deprecated in favor of ImageOptions -- see that function for details on the behavior of arguments
func (*Pdf) ImageOptions ¶
func (f *Pdf) ImageOptions(imageNameStr string, x, y, w, h float64, flow bool, options ImageOptions, link int, linkStr string)
ImageOptions puts a JPEG, PNG or GIF image in the current page. The size it will take on the page can be specified in different ways. If both w and h are 0, the image is rendered at 96 dpi. If either w or h is zero, it will be calculated from the other dimension so that the aspect ratio is maintained. If w and/or h are -1, the dpi for that dimension will be read from the ImageInfoType object. PNG files can contain dpi information, and if present, this information will be populated in the ImageInfoType object and used in Width, Height, and Extent calculations. Otherwise, the SetDpi function can be used to change the dpi from the default of 72.
If w and h are any other negative value, their absolute values indicate their dpi extents.
Supported JPEG formats are 24 bit, 32 bit and gray scale. Supported PNG formats are 24 bit, indexed color, and 8 bit indexed gray scale. If a GIF image is animated, only the first frame is rendered. Transparency is supported. It is possible to put a link on the image.
imageNameStr may be the name of an image as registered with a call to either RegisterImageReader() or RegisterImage(). In the first case, the image is loaded using an io.Reader. This is generally useful when the image is obtained from some other means than as a disk-based file. In the second case, the image is loaded as a file. Alternatively, imageNameStr may directly specify a sufficiently qualified filename.
However the image is loaded, if it is used more than once only one copy is embedded in the file.
If x is negative, the current abscissa is used.
If flow is true, the current y value is advanced after placing the image and a page break may be made if necessary.
If link refers to an internal page anchor (that is, it is non-zero; see AddLink()), the image will be a clickable internal link. Otherwise, if linkStr specifies a URL, the image will be a clickable external link.
func (*Pdf) ImageTypeFromMime ¶
ImageTypeFromMime returns the image type used in various image-related functions (for example, Image()) that is associated with the specified MIME type. For example, "jpg" is returned if mimeStr is "image/jpeg". An error is set if the specified MIME type is not supported.
func (*Pdf) ImportObjPos ¶
ImportObjPos imports object hash positions from gofpdi
func (*Pdf) ImportObjects ¶
ImportObjects imports objects from gofpdi into current document
func (*Pdf) ImportTemplates ¶
ImportTemplates imports gofpdi template names into importedTplObjs for inclusion in the procset dictionary
func (*Pdf) Line ¶
Line draws a line between points (x1, y1) and (x2, y2) using the current draw color, line width and cap style.
func (*Pdf) LineTo ¶
LineTo creates a line from the current stylus location to (x, y), which becomes the new stylus location. Note that this only creates the line in the path; it does not actually draw the line on the page.
The MoveTo() example demonstrates this method.
func (*Pdf) LinearGradient ¶
func (f *Pdf) LinearGradient(x, y, w, h float64, r1, g1, b1, r2, g2, b2 int, x1, y1, x2, y2 float64)
LinearGradient draws a rectangular area with a blending of one color to another. The rectangle is of width w and height h. Its upper left corner is positioned at point (x, y).
Each color is specified with three component values, one each for red, green and blue. The values range from 0 to 255. The first color is specified by (r1, g1, b1) and the second color by (r2, g2, b2).
The blending is controlled with a gradient vector that uses normalized coordinates in which the lower left corner is position (0, 0) and the upper right corner is (1, 1). The vector's origin and destination are specified by the points (x1, y1) and (x2, y2). In a linear gradient, blending occurs perpendicularly to the vector. The vector does not necessarily need to be anchored on the rectangle edge. Color 1 is used up to the origin of the vector and color 2 is used beyond the vector's end point. Between the points the colors are gradually blended.
func (*Pdf) Link ¶
Link puts a link on a rectangular area of the page. Text or image links are generally put via Cell(), Write() or Image(), but this method can be useful for instance to define a clickable area inside an image. link is the value returned by AddLink().
func (*Pdf) LinkString ¶
LinkString puts a link on a rectangular area of the page. Text or image links are generally put via Cell(), Write() or Image(), but this method can be useful for instance to define a clickable area inside an image. linkStr is the target URL.
func (*Pdf) Ln ¶
Ln performs a line break. The current abscissa goes back to the left margin and the ordinate increases by the amount passed in parameter. A negative value of h indicates the height of the last printed cell.
This method is demonstrated in the example for MultiCell.
func (*Pdf) MoveTo ¶
MoveTo moves the stylus to (x, y) without drawing the path from the previous point. Paths must start with a MoveTo to set the original stylus location or the result is undefined.
Create a "path" by moving a virtual stylus around the page (with MoveTo, LineTo, CurveTo, CurveBezierCubicTo, ArcTo & ClosePath) then draw it or fill it in (with DrawPath). The main advantage of using the path drawing routines rather than multiple Pdf.Line is that PDF creates nice line joins at the angles, rather than just overlaying the lines.
func (*Pdf) MultiCell ¶
MultiCell supports printing text with line breaks. They can be automatic (as soon as the text reaches the right border of the cell) or explicit (via the \n character). As many cells as necessary are output, one below the other.
Text can be aligned, centered or justified. The cell block can be framed and the background painted. See CellFormat() for more details.
The current position after calling MultiCell() is the beginning of the next line, equivalent to calling CellFormat with ln equal to 1.
w is the width of the cells. A value of zero indicates cells that reach to the right margin.
h indicates the line height of each cell in the unit of measure specified in New().
Note: this method has a known bug that treats UTF-8 fonts differently than non-UTF-8 fonts. With UTF-8 fonts, all trailing newlines in txtStr are removed. With a non-UTF-8 font, if txtStr has one or more trailing newlines, only the last is removed. In the next major module version, the UTF-8 logic will be changed to match the non-UTF-8 logic. To prepare for that change, applications that use UTF-8 fonts and depend on having all trailing newlines removed should call strings.TrimRight(txtStr, "\r\n") before calling this method.
func (*Pdf) OpenLayerPane ¶
func (f *Pdf) OpenLayerPane()
OpenLayerPane advises the document reader to open the layer pane when the document is initially displayed.
func (*Pdf) Output ¶
Output sends the PDF document to the writer specified by w. No output will take place if an error has occurred in the document generation process. w remains open after this function returns. After returning, f is in a closed state and its methods should not be called.
func (*Pdf) OutputAndClose ¶
func (f *Pdf) OutputAndClose(w io.WriteCloser) error
OutputAndClose sends the PDF document to the writer specified by w. This method will close both f and w, even if an error is detected and no document is produced.
func (*Pdf) OutputFileAndClose ¶
OutputFileAndClose creates or truncates the file specified by fileStr and writes the PDF document to it. This method will close f and the newly written file, even if an error is detected and no document is produced.
Most examples demonstrate the use of this method.
func (*Pdf) PageCount ¶
PageCount returns the number of pages currently in the document. Since page numbers in gopdf are one-based, the page count is the same as the page number of the current last page.
func (*Pdf) PageNo ¶
PageNo returns the current page number.
See the example for AddPage() for a demonstration of this method.
func (*Pdf) PageSize ¶
PageSize returns the width and height of the specified page in the units established in New(). These return values are followed by the unit of measure itself. If pageNum is zero or otherwise out of bounds, it returns the default page size, that is, the size of the page that would be added by AddPage().
func (*Pdf) PointConvert ¶
PointConvert returns the value of pt, expressed in points (1/72 inch), as a value expressed in the unit of measure specified in New(). Since font management in Pdf uses points, this method can help with line height calculations and other methods that require user units.
func (*Pdf) PointToUnitConvert ¶
PointToUnitConvert is an alias for PointConvert.
func (*Pdf) Polygon ¶
Polygon draws a closed figure defined by a series of vertices specified by points. The x and y fields of the points use the units established in New(). The last point in the slice will be implicitly joined to the first to close the polygon.
styleStr can be "F" for filled, "D" for outlined only, or "DF" or "FD" for outlined and filled. An empty string will be replaced with "D". Drawing uses the current draw color and line width centered on the ellipse's perimeter. Filling uses the current fill color.
func (*Pdf) RadialGradient ¶
func (f *Pdf) RadialGradient(x, y, w, h float64, r1, g1, b1, r2, g2, b2 int, x1, y1, x2, y2, r float64)
RadialGradient draws a rectangular area with a blending of one color to another. The rectangle is of width w and height h. Its upper left corner is positioned at point (x, y).
Each color is specified with three component values, one each for red, green and blue. The values range from 0 to 255. The first color is specified by (r1, g1, b1) and the second color by (r2, g2, b2).
The blending is controlled with a point and a circle, both specified with normalized coordinates in which the lower left corner of the rendered rectangle is position (0, 0) and the upper right corner is (1, 1). Color 1 begins at the origin point specified by (x1, y1). Color 2 begins at the circle specified by the center point (x2, y2) and radius r. Colors are gradually blended from the origin to the circle. The origin and the circle's center do not necessarily have to coincide, but the origin must be within the circle to avoid rendering problems.
The LinearGradient() example demonstrates this method.
func (*Pdf) RawWriteBuf ¶
RawWriteBuf writes the contents of the specified buffer directly to the PDF generation buffer. This is a low-level function that is not required for normal PDF construction. An understanding of the PDF specification is needed to use this method correctly.
func (*Pdf) RawWriteStr ¶
RawWriteStr writes a string directly to the PDF generation buffer. This is a low-level function that is not required for normal PDF construction. An understanding of the PDF specification is needed to use this method correctly.
func (*Pdf) Rect ¶
Rect outputs a rectangle of width w and height h with the upper left corner positioned at point (x, y).
It can be drawn (border only), filled (with no border) or both. styleStr can be "F" for filled, "D" for outlined only, or "DF" or "FD" for outlined and filled. An empty string will be replaced with "D". Drawing uses the current draw color and line width centered on the rectangle's perimeter. Filling uses the current fill color.
func (*Pdf) RegisterAlias ¶
RegisterAlias adds an (alias, replacement) pair to the document so we can replace all occurrences of that alias after writing but before the document is closed.
func (*Pdf) RegisterImage ¶
func (f *Pdf) RegisterImage(fileStr, tp string) (info *ImageInfoType)
RegisterImage registers an image, adding it to the PDF file but not adding it to the page. Use Image() with the same filename to add the image to the page. Note that Image() calls this function, so this function is only necessary if you need information about the image before placing it.
This function is now deprecated in favor of RegisterImageOptions. See Image() for restrictions on the image and the "tp" parameters.
func (*Pdf) RegisterImageOptions ¶
func (f *Pdf) RegisterImageOptions(fileStr string, options ImageOptions) (info *ImageInfoType)
RegisterImageOptions registers an image, adding it to the PDF file but not adding it to the page. Use Image() with the same filename to add the image to the page. Note that Image() calls this function, so this function is only necessary if you need information about the image before placing it. See Image() for restrictions on the image and the "tp" parameters.
func (*Pdf) RegisterImageOptionsReader ¶
func (f *Pdf) RegisterImageOptionsReader(imgName string, options ImageOptions, r io.Reader) (info *ImageInfoType)
RegisterImageOptionsReader registers an image, reading it from Reader r, adding it to the PDF file but not adding it to the page. Use Image() with the same name to add the image to the page. Note that tp should be specified in this case.
See Image() for restrictions on the image and the options parameters.
func (*Pdf) RegisterImageReader ¶
func (f *Pdf) RegisterImageReader(imgName, tp string, r io.Reader) (info *ImageInfoType)
RegisterImageReader registers an image, reading it from Reader r, adding it to the PDF file but not adding it to the page.
This function is now deprecated in favor of RegisterImageOptionsReader
func (*Pdf) RoundedRect ¶
RoundedRect outputs a rectangle of width w and height h with the upper left corner positioned at point (x, y). It can be drawn (border only), filled (with no border) or both. styleStr can be "F" for filled, "D" for outlined only, or "DF" or "FD" for outlined and filled. An empty string will be replaced with "D". Drawing uses the current draw color and line width centered on the rectangle's perimeter. Filling uses the current fill color. The rounded corners of the rectangle are specified by radius r. corners is a string that includes "1" to round the upper left corner, "2" to round the upper right corner, "3" to round the lower right corner, and "4" to round the lower left corner. The RoundedRect example demonstrates this method.
func (*Pdf) RoundedRectExt ¶
RoundedRectExt behaves the same as RoundedRect() but supports a different radius for each corner. A zero radius means squared corner. See RoundedRect() for more details. This method is demonstrated in the RoundedRect() example.
func (*Pdf) SVGBasicWrite ¶
func (f *Pdf) SVGBasicWrite(sb *SVGBasicType, scale float64)
SVGBasicWrite renders the paths encoded in the basic SVG image specified by sb. The scale value is used to convert the coordinates in the path to the unit of measure specified in New(). The current position (as set with a call to SetXY()) is used as the origin of the image. The current line cap style (as set with SetLineCapStyle()), line width (as set with SetLineWidth()), and draw color (as set with SetDrawColor()) are used in drawing the image paths.
func (*Pdf) SetAcceptPageBreakFunc ¶
SetAcceptPageBreakFunc allows the application to control where page breaks occur.
fnc is an application function (typically a closure) that is called by the library whenever a page break condition is met. The break is issued if true is returned. The default implementation returns a value according to the mode selected by SetAutoPageBreak. The function provided should not be called by the application.
See the example for SetLeftMargin() to see how this function can be used to manage multiple columns.
func (*Pdf) SetAlpha ¶
SetAlpha sets the alpha blending channel. The blending effect applies to text, drawings and images.
alpha must be a value between 0.0 (fully transparent) to 1.0 (fully opaque). Values outside of this range result in an error.
blendModeStr must be one of "Normal", "Multiply", "Screen", "Overlay", "Darken", "Lighten", "ColorDodge", "ColorBurn","HardLight", "SoftLight", "Difference", "Exclusion", "Hue", "Saturation", "Color", or "Luminosity". An empty string is replaced with "Normal".
To reset normal rendering after applying a blending mode, call this method with alpha set to 1.0 and blendModeStr set to "Normal".
func (*Pdf) SetAttachments ¶
func (f *Pdf) SetAttachments(as []Attachment)
SetAttachments writes attachments as embedded files (document attachment). These attachments are global, see AddAttachmentAnnotation() for a link anchored in a page. Note that only the last call of SetAttachments is useful, previous calls are discarded. Be aware that not all PDF readers support document attachments. See the SetAttachment example for a demonstration of this method.
func (*Pdf) SetAuthor ¶
SetAuthor defines the author of the document. isUTF8 indicates if the string is encoded in ISO-8859-1 (false) or UTF-8 (true).
func (*Pdf) SetAutoPageBreak ¶
SetAutoPageBreak enables or disables the automatic page breaking mode. When enabling, the second parameter is the distance from the bottom of the page that defines the triggering limit. By default, the mode is on and the margin is 2 cm.
func (*Pdf) SetCatalogSort ¶
SetCatalogSort sets a flag that will be used, if true, to consistently order the document's internal resource catalogs. This method is typically only used for test purposes to facilitate PDF comparison.
func (*Pdf) SetCellMargin ¶
SetCellMargin sets the cell margin. This is the amount of space before and after the text within a cell that's left blank, and is in units passed to New().
func (*Pdf) SetCompression ¶
SetCompression activates or deactivates page compression with zlib. When activated, the internal representation of each page is compressed, which leads to a compression ratio of about 2 for the resulting document. Compression is on by default.
func (*Pdf) SetCreationDate ¶
SetCreationDate fixes the document's internal CreationDate value. By default, the time when the document is generated is used for this value. This method is typically only used for testing purposes to facilitate PDF comparison. Specify a zero-value time to revert to the default behavior.
func (*Pdf) SetCreator ¶
SetCreator defines the creator of the document. isUTF8 indicates if the string is encoded in ISO-8859-1 (false) or UTF-8 (true).
func (*Pdf) SetDashPattern ¶
SetDashPattern sets the dash pattern that is used to draw lines. The dashArray elements are numbers that specify the lengths, in units established in New(), of alternating dashes and gaps. The dash phase specifies the distance into the dash pattern at which to start the dash. The dash pattern is retained from page to page. Call this method with an empty array to restore solid line drawing.
The Beziergon() example demonstrates this method.
func (*Pdf) SetDisplayMode ¶
SetDisplayMode sets advisory display directives for the document viewer. Pages can be displayed entirely on screen, occupy the full width of the window, use real size, be scaled by a specific zooming factor or use viewer default (configured in the Preferences menu of Adobe Reader). The page layout can be specified so that pages are displayed individually or in pairs.
zoomStr can be "fullpage" to display the entire page on screen, "fullwidth" to use maximum width of window, "real" to use real size (equivalent to 100% zoom) or "default" to use viewer default mode.
layoutStr can be "single" (or "SinglePage") to display one page at once, "continuous" (or "OneColumn") to display pages continuously, "two" (or "TwoColumnLeft") to display two pages on two columns with odd-numbered pages on the left, or "TwoColumnRight" to display two pages on two columns with odd-numbered pages on the right, or "TwoPageLeft" to display pages two at a time with odd-numbered pages on the left, or "TwoPageRight" to display pages two at a time with odd-numbered pages on the right, or "default" to use viewer default mode.
func (*Pdf) SetDrawColor ¶
SetDrawColor defines the color used for all drawing operations (lines, rectangles and cell borders). It is expressed in RGB components (0 - 255). The method can be called before the first page is created. The value is retained from page to page.
func (*Pdf) SetDrawSpotColor ¶
SetDrawSpotColor sets the current draw color to the spot color associated with nameStr. An error occurs if the name is not associated with a color. The value for tint ranges from 0 (no intensity) to 100 (full intensity). It is quietly bounded to this range.
func (*Pdf) SetError ¶
SetError sets an error to halt PDF generation. This may facilitate error handling by application. See also Ok(), Err() and Error().
func (*Pdf) SetErrorf ¶
SetErrorf sets the internal Pdf error with formatted text to halt PDF generation; this may facilitate error handling by application. If an error condition is already set, this call is ignored.
See the documentation for printing in the standard fmt package for details about fmtStr and args.
func (*Pdf) SetFillColor ¶
SetFillColor defines the color used for all filling operations (filled rectangles and cell backgrounds). It is expressed in RGB components (0 -255). The method can be called before the first page is created and the value is retained from page to page.
func (*Pdf) SetFillSpotColor ¶
SetFillSpotColor sets the current fill color to the spot color associated with nameStr. An error occurs if the name is not associated with a color. The value for tint ranges from 0 (no intensity) to 100 (full intensity). It is quietly bounded to this range.
func (*Pdf) SetFont ¶
SetFont sets the font used to print character strings. It is mandatory to call this method at least once before printing text or the resulting document will not be valid.
The font can be either a standard one or a font added via the AddFont() method or AddFontFromReader() method. Standard fonts use the Windows encoding cp1252 (Western Europe).
The method can be called before the first page is created and the font is kept from page to page. If you just wish to change the current font size, it is simpler to call SetFontSize().
Note: the font definition file must be accessible. An error is set if the file cannot be read.
familyStr specifies the font family. It can be either a name defined by AddFont(), AddFontFromReader() or one of the standard families (case insensitive): "Courier" for fixed-width, "Helvetica" or "Arial" for sans serif, "Times" for serif, "Symbol" or "ZapfDingbats" for symbolic.
styleStr can be "B" (bold), "I" (italic), "U" (underscore), "S" (strike-out) or any combination. The default value (specified with an empty string) is regular. Bold and italic styles do not apply to Symbol and ZapfDingbats.
size is the font size measured in points. The default value is the current size. If no size has been specified since the beginning of the document, the value taken is 12.
func (*Pdf) SetFontLocation ¶
SetFontLocation sets the location in the file system of the font and font definition files.
func (*Pdf) SetFontSize ¶
SetFontSize defines the size of the current font. Size is specified in points (1/ 72 inch). See also SetFontUnitSize().
func (*Pdf) SetFontStyle ¶
SetFontStyle sets the style of the current font. See also SetFont()
func (*Pdf) SetFontUnitSize ¶
SetFontUnitSize defines the size of the current font. Size is specified in the unit of measure specified in New(). See also SetFontSize().
func (*Pdf) SetFooterFunc ¶
func (f *Pdf) SetFooterFunc(fnc func())
SetFooterFunc sets the function that lets the application render the page footer. The specified function is automatically called by AddPage() and Close() and should not be called directly by the application. The implementation in Pdf is empty, so you have to provide an appropriate function if you want page footers. fnc will typically be a closure that has access to the Pdf instance and other document generation variables. See SetFooterFuncLpi for a similar function that passes a last page indicator.
This method is demonstrated in the example for AddPage().
func (*Pdf) SetFooterFuncLpi ¶
SetFooterFuncLpi sets the function that lets the application render the page footer. The specified function is automatically called by AddPage() and Close() and should not be called directly by the application. It is passed a boolean that is true if the last page of the document is being rendered. The implementation in Pdf is empty, so you have to provide an appropriate function if you want page footers. fnc will typically be a closure that has access to the Pdf instance and other document generation variables.
func (*Pdf) SetHeaderFunc ¶
func (f *Pdf) SetHeaderFunc(fnc func())
SetHeaderFunc sets the function that lets the application render the page header. The specified function is automatically called by AddPage() and should not be called directly by the application. The implementation in Pdf is empty, so you have to provide an appropriate function if you want page headers. fnc will typically be a closure that has access to the Pdf instance and other document generation variables.
A header is a convenient place to put background content that repeats on each page such as a watermark. When this is done, remember to reset the X and Y values so the normal content begins where expected. Including a watermark on each page is demonstrated in the example for TransformRotate.
This method is demonstrated in the example for AddPage().
func (*Pdf) SetHeaderFuncMode ¶
SetHeaderFuncMode sets the function that lets the application render the page header. See SetHeaderFunc() for more details. The value for homeMode should be set to true to have the current position set to the left and top margin after the header function is called.
func (*Pdf) SetHomeXY ¶
func (f *Pdf) SetHomeXY()
SetHomeXY is a convenience method that sets the current position to the left and top margins.
func (*Pdf) SetJavascript ¶
SetJavascript adds Adobe JavaScript to the document.
func (*Pdf) SetKeywords ¶
SetKeywords defines the keywords of the document. keywordStr is a space-delimited string, for example "invoice August". isUTF8 indicates if the string is encoded
func (*Pdf) SetLeftMargin ¶
SetLeftMargin defines the left margin. The method can be called before creating the first page. If the current abscissa gets out of page, it is brought back to the margin.
func (*Pdf) SetLineCapStyle ¶
SetLineCapStyle defines the line cap style. styleStr should be "butt", "round" or "square". A square style projects from the end of the line. The method can be called before the first page is created. The value is retained from page to page.
func (*Pdf) SetLineJoinStyle ¶
SetLineJoinStyle defines the line cap style. styleStr should be "miter", "round" or "bevel". The method can be called before the first page is created. The value is retained from page to page.
func (*Pdf) SetLineWidth ¶
SetLineWidth defines the line width. By default, the value equals 0.2 mm. The method can be called before the first page is created. The value is retained from page to page.
func (*Pdf) SetMargins ¶
SetMargins defines the left, top and right margins. By default, they equal 1 cm. Call this method to change them. If the value of the right margin is less than zero, it is set to the same as the left margin.
func (*Pdf) SetModificationDate ¶
SetModificationDate fixes the document's internal ModDate value. See `SetCreationDate` for more details.
func (*Pdf) SetPage ¶
SetPage sets the current page to that of a valid page in the PDF document. pageNum is one-based. The SetPage() example demonstrates this method.
func (*Pdf) SetPageBox ¶
SetPageBox sets the page box for the current page, and any following pages. Allowable types are trim, trimbox, crop, cropbox, bleed, bleedbox, art and artbox box types are case insensitive.
func (*Pdf) SetPageBoxRec ¶
SetPageBoxRec sets the page box for the current page, and any following pages. Allowable types are trim, trimbox, crop, cropbox, bleed, bleedbox, art and artbox box types are case insensitive. See SetPageBox() for a method that specifies the coordinates and extent of the page box individually.
func (*Pdf) SetProducer ¶
SetProducer defines the producer of the document. isUTF8 indicates if the string is encoded in ISO-8859-1 (false) or UTF-8 (true).
func (*Pdf) SetProtection ¶
SetProtection applies certain constraints on the finished PDF document.
actionFlag is a bitflag that controls various document operations. CnProtectPrint allows the document to be printed. CnProtectModify allows a document to be modified by a PDF editor. CnProtectCopy allows text and images to be copied into the system clipboard. CnProtectAnnotForms allows annotations and forms to be added by a PDF editor. These values can be combined by or-ing them together, for example, CnProtectCopy|CnProtectModify. This flag is advisory; not all PDF readers implement the constraints that this argument attempts to control.
userPassStr specifies the password that will need to be provided to view the contents of the PDF. The permissions specified by actionFlag will apply.
ownerPassStr specifies the password that will need to be provided to gain full access to the document regardless of the actionFlag value. An empty string for this argument will be replaced with a random value, effectively prohibiting full access to the document.
func (*Pdf) SetRightMargin ¶
SetRightMargin defines the right margin. The method can be called before creating the first page.
func (*Pdf) SetSubject ¶
SetSubject defines the subject of the document. isUTF8 indicates if the string is encoded in ISO-8859-1 (false) or UTF-8 (true).
func (*Pdf) SetTextColor ¶
SetTextColor defines the color used for text. It is expressed in RGB components (0 - 255). The method can be called before the first page is created. The value is retained from page to page.
func (*Pdf) SetTextRenderingMode ¶
SetTextRenderingMode sets the rendering mode of following text. The mode can be as follows: 0: Fill text 1: Stroke text 2: Fill, then stroke text 3: Neither fill nor stroke text (invisible) 4: Fill text and add to path for clipping 5: Stroke text and add to path for clipping 6: Fills then stroke text and add to path for clipping 7: Add text to path for clipping This method is demonstrated in the SetTextRenderingMode example.
func (*Pdf) SetTextSpotColor ¶
SetTextSpotColor sets the current text color to the spot color associated with nameStr. An error occurs if the name is not associated with a color. The value for tint ranges from 0 (no intensity) to 100 (full intensity). It is quietly bounded to this range.
func (*Pdf) SetTitle ¶
SetTitle defines the title of the document. isUTF8 indicates if the string is encoded in ISO-8859-1 (false) or UTF-8 (true).
func (*Pdf) SetTopMargin ¶
SetTopMargin defines the top margin. The method can be called before creating the first page.
func (*Pdf) SetUnderlineThickness ¶
SetUnderlineThickness accepts a multiplier for adjusting the text underline thickness, defaulting to 1. See SetUnderlineThickness example.
func (*Pdf) SetWordSpacing ¶
SetWordSpacing sets spacing between words of following text. See the WriteAligned() example for a demonstration of its use.
func (*Pdf) SetX ¶
SetX defines the abscissa of the current position. If the passed value is negative, it is relative to the right of the page.
func (*Pdf) SetXY ¶
SetXY defines the abscissa and ordinate of the current position. If the passed values are negative, they are relative respectively to the right and bottom of the page.
func (*Pdf) SetXmpMetadata ¶
SetXmpMetadata defines XMP metadata that will be embedded with the document.
func (*Pdf) SetY ¶
SetY moves the current abscissa back to the left margin and sets the ordinate. If the passed value is negative, it is relative to the bottom of the page.
func (*Pdf) SplitLines ¶
SplitLines splits text into several lines using the current font. Each line has its length limited to a maximum width given by w. This function can be used to determine the total height of wrapped text for vertical placement purposes.
This method is useful for codepage-based fonts only. For UTF-8 encoded text, use SplitText().
You can use MultiCell if you want to print a text on several lines in a simple way.
func (*Pdf) SplitText ¶
SplitText splits UTF-8 encoded text into several lines using the current font. Each line has its length limited to a maximum width given by w. This function can be used to determine the total height of wrapped text for vertical placement purposes.
func (*Pdf) SubWrite ¶
func (f *Pdf) SubWrite(ht float64, str string, subFontSize, subOffset float64, link int, linkStr string)
SubWrite prints text from the current position in the same way as Write(). ht is the line height in the unit of measure specified in New(). str specifies the text to write. subFontSize is the size of the font in points. subOffset is the vertical offset of the text in points; a positive value indicates a superscript, a negative value indicates a subscript. link is the identifier returned by AddLink() or 0 for no internal link. linkStr is a target URL or empty for no external link. A non--zero value for link takes precedence over linkStr.
The SubWrite example demonstrates this method.
func (*Pdf) Text ¶
Text prints a character string. The origin (x, y) is on the left of the first character at the baseline. This method permits a string to be placed precisely on the page, but it is usually easier to use Cell(), MultiCell() or Write() which are the standard methods to print text.
func (*Pdf) Transform ¶
func (f *Pdf) Transform(tm TransformMatrix)
Transform generally transforms the following text, drawings and images according to the specified matrix. It is typically easier to use the various methods such as TransformRotate() and TransformMirrorVertical() instead.
func (*Pdf) TransformBegin ¶
func (f *Pdf) TransformBegin()
TransformBegin sets up a transformation context for subsequent text, drawings and images. The typical usage is to immediately follow a call to this method with a call to one or more of the transformation methods such as TransformScale(), TransformSkew(), etc. This is followed by text, drawing or image output and finally a call to TransformEnd(). All transformation contexts must be properly ended prior to outputting the document.
func (*Pdf) TransformEnd ¶
func (f *Pdf) TransformEnd()
TransformEnd applies a transformation that was begun with a call to TransformBegin().
The TransformBegin() example demonstrates this method.
func (*Pdf) TransformMirrorHorizontal ¶
TransformMirrorHorizontal horizontally mirrors the following text, drawings and images. x is the axis of reflection.
The TransformBegin() example demonstrates this method.
func (*Pdf) TransformMirrorLine ¶
TransformMirrorLine symmetrically mirrors the following text, drawings and images on the line defined by angle and the point (x, y). angles is specified in degrees and measured counter-clockwise from the 3 o'clock position.
The TransformBegin() example demonstrates this method.
func (*Pdf) TransformMirrorPoint ¶
TransformMirrorPoint symmetrically mirrors the following text, drawings and images on the point specified by (x, y).
The TransformBegin() example demonstrates this method.
func (*Pdf) TransformMirrorVertical ¶
TransformMirrorVertical vertically mirrors the following text, drawings and images. y is the axis of reflection.
The TransformBegin() example demonstrates this method.
func (*Pdf) TransformRotate ¶
TransformRotate rotates the following text, drawings and images around the center point (x, y). angle is specified in degrees and measured counter-clockwise from the 3 o'clock position.
The TransformBegin() example demonstrates this method.
func (*Pdf) TransformScale ¶
TransformScale generally scales the following text, drawings and images. scaleWd and scaleHt are the percentage scaling factors for width and height. (x, y) is center of scaling.
The TransformBegin() example demonstrates this method.
func (*Pdf) TransformScaleX ¶
TransformScaleX scales the width of the following text, drawings and images. scaleWd is the percentage scaling factor. (x, y) is center of scaling.
The TransformBegin() example demonstrates this method.
func (*Pdf) TransformScaleXY ¶
TransformScaleXY uniformly scales the width and height of the following text, drawings and images. s is the percentage scaling factor for both width and height. (x, y) is center of scaling.
The TransformBegin() example demonstrates this method.
func (*Pdf) TransformScaleY ¶
TransformScaleY scales the height of the following text, drawings and images. scaleHt is the percentage scaling factor. (x, y) is center of scaling.
The TransformBegin() example demonstrates this method.
func (*Pdf) TransformSkew ¶
TransformSkew generally skews the following text, drawings and images keeping the point (x, y) stationary. angleX ranges from -90 degrees (skew to the left) to 90 degrees (skew to the right). angleY ranges from -90 degrees (skew to the bottom) to 90 degrees (skew to the top).
The TransformBegin() example demonstrates this method.
func (*Pdf) TransformSkewX ¶
TransformSkewX horizontally skews the following text, drawings and images keeping the point (x, y) stationary. angleX ranges from -90 degrees (skew to the left) to 90 degrees (skew to the right).
The TransformBegin() example demonstrates this method.
func (*Pdf) TransformSkewY ¶
TransformSkewY vertically skews the following text, drawings and images keeping the point (x, y) stationary. angleY ranges from -90 degrees (skew to the bottom) to 90 degrees (skew to the top).
The TransformBegin() example demonstrates this method.
func (*Pdf) TransformTranslate ¶
TransformTranslate moves the following text, drawings and images horizontally and vertically by the amounts specified by tx and ty.
The TransformBegin() example demonstrates this method.
func (*Pdf) TransformTranslateX ¶
TransformTranslateX moves the following text, drawings and images horizontally by the amount specified by tx.
The TransformBegin() example demonstrates this method.
func (*Pdf) TransformTranslateY ¶
TransformTranslateY moves the following text, drawings and images vertically by the amount specified by ty.
The TransformBegin() example demonstrates this method.
func (*Pdf) UnicodeTranslatorFromDescriptor ¶
UnicodeTranslatorFromDescriptor returns a function that can be used to translate, where possible, utf-8 strings to a form that is compatible with the specified code page. See UnicodeTranslator for more details.
cpStr identifies a code page. A descriptor file in the font directory, set with the fontDirStr argument in the call to New(), should have this name plus the extension ".map". If cpStr is empty, it will be replaced with "cp1252", the gopdf code page default.
If an error occurs reading the descriptor, the returned function is valid but does not perform any rune translation.
The CellFormat_codepage example demonstrates this method.
func (*Pdf) UnitToPointConvert ¶
UnitToPointConvert returns the value of u, expressed in the unit of measure specified in New(), as a value expressed in points (1/72 inch). Since font management in Pdf uses points, this method can help with setting font sizes based on the sizes of other non-font page elements.
func (*Pdf) UseImportedTemplate ¶
func (f *Pdf) UseImportedTemplate(tplName string, scaleX float64, scaleY float64, tX float64, tY float64)
UseImportedTemplate uses imported template from gofpdi. It draws imported PDF page onto page.
func (*Pdf) UseTemplate ¶
UseTemplate adds a template to the current page or another template, using the size and position at which it was originally written.
func (*Pdf) UseTemplateScaled ¶
UseTemplateScaled adds a template to the current page or another template, using the given page coordinates.
func (*Pdf) Write ¶
Write prints text from the current position. When the right margin is reached (or the \n character is met) a line break occurs and text continues from the left margin. Upon method exit, the current position is left just at the end of the text.
It is possible to put a link on the text.
h indicates the line height in the unit of measure specified in New().
func (*Pdf) WriteAligned ¶
WriteAligned is an implementation of Write that makes it possible to align text.
width indicates the width of the box the text will be drawn in. This is in the unit of measure specified in New(). If it is set to 0, the bounding box of the page will be taken (pageWidth - leftMargin - rightMargin).
lineHeight indicates the line height in the unit of measure specified in New().
alignStr sees to horizontal alignment of the given textStr. The options are "L", "C" and "R" (Left, Center, Right). The default is "L".
func (*Pdf) WriteLinkID ¶
WriteLinkID writes text that when clicked jumps to another location in the PDF. linkID is an identifier returned by AddLink(). See Write() for argument details.
func (*Pdf) WriteLinkString ¶
WriteLinkString writes text that when clicked launches an external URL. See Write() for argument details.
type Point ¶
type Point struct {
X, Y float64
}
Point fields X and Y specify the horizontal and vertical coordinates
type RGBAType ¶
RGBAType holds fields for red, green and blue color components (0..255) and an alpha transparency value (0..1)
type RGBType ¶
type RGBType struct {
R, G, B int
}
RGBType holds fields for red, green and blue color components (0..255)
type SVGBasicSegmentType ¶
type SVGBasicSegmentType struct { Cmd byte // See http://www.w3.org/TR/SVG/paths.html for path command structure Arg [6]float64 }
SVGBasicSegmentType describes a single curve or position segment
type SVGBasicType ¶
type SVGBasicType struct {
Wd, Ht float64
Segments [][]SVGBasicSegmentType
}
SVGBasicType aggregates the information needed to describe a multi-segment basic vector image
func SVGBasicFileParse ¶
func SVGBasicFileParse(svgFileStr string) (sig SVGBasicType, err error)
SVGBasicFileParse parses a simple scalable vector graphics (SVG) file into a basic descriptor. The SVGBasicWrite() example demonstrates this method.
func SVGBasicParse ¶
func SVGBasicParse(buf []byte) (sig SVGBasicType, err error)
SVGBasicParse parses a simple scalable vector graphics (SVG) buffer into a descriptor. Only a small subset of the SVG standard, in particular the path information generated by jSignature, is supported. The returned path data includes only the commands 'M' (absolute moveto: x, y), 'L' (absolute lineto: x, y), 'C' (absolute cubic Bézier curve: cx0, cy0, cx1, cy1, x1,y1), 'Q' (absolute quadratic Bézier curve: x0, y0, x1, y1) and 'Z' (closepath).
type Size ¶
type Size struct {
Wd, Ht float64
}
Size fields Wd and Ht specify the horizontal and vertical extents of a document element such as a page.
func (*Size) Orientation ¶
Orientation returns the orientation of a given size: "P" for portrait, "L" for landscape
func (*Size) ScaleToHeight ¶
ScaleToHeight adjusts the width of a size to match the given height
func (*Size) ScaleToWidth ¶
ScaleToWidth adjusts the height of a size to match the given width
type StateType ¶
type StateType struct {
// contains filtered or unexported fields
}
StateType holds various commonly used drawing values for convenient retrieval (StateGet()) and restore (Put) methods.
type Template ¶
type Template interface { ID() string Size() (Point, Size) Bytes() []byte Images() map[string]*ImageInfoType Templates() []Template NumPages() int FromPage(int) (Template, error) FromPages() []Template Serialize() ([]byte, error) gob.GobDecoder gob.GobEncoder }
Template is an object that can be written to, then used and re-used any number of times within a document.
func CreateTemplate ¶
CreateTemplate creates a template that is not attached to any document.
This function is deprecated; it incorrectly assumes that a page with a width smaller than its height is oriented in portrait mode, otherwise it assumes landscape mode. This causes problems when placing the template in a master document where this condition does not apply. CreateTpl() is a similar function that lets you specify the orientation to avoid this problem. DEPRECATED
func CreateTpl ¶
func CreateTpl(corner Point, size Size, orientationStr, unitStr, fontDirStr string, fn func(*Tpl)) Template
CreateTpl creates a template not attached to any document
func DeserializeTemplate ¶
DeserializeTemplate creaties a template from a previously serialized template
type TextRenderMode ¶
type TextRenderMode uint8
TextRenderMode is related to "Tr" https://www.verypdf.com/document/pdf-format-reference/pg_0402.htm
const ( Fill TextRenderMode = iota Stroke FillStroke Invisible FillClip StrokeClip FillStrokeClip Clip )
type TickFormatFncType ¶
TickFormatFncType defines a callback for label drawing.
type Tpl ¶
type Tpl struct {
Pdf
}
Tpl is an Pdf used for writing a template. It has most of the facilities of an Pdf, but cannot add more pages. Tpl is used directly only during the limited time a template is writable.
type TransformMatrix ¶
type TransformMatrix struct {
A, B, C, D, E, F float64
}
TransformMatrix is used for generalized transformations of text, drawings and images.
type TtfType ¶
type TtfType struct { Embeddable bool UnitsPerEm uint16 PostScriptName string Bold bool ItalicAngle int16 IsFixedPitch bool TypoAscender int16 TypoDescender int16 UnderlinePosition int16 UnderlineThickness int16 Xmin, Ymin, Xmax, Ymax int16 CapHeight int16 Widths []uint16 Chars map[uint16]uint16 }
TtfType contains metrics of a TrueType font.