Documentation ¶
Overview ¶
Package svg minifies SVG1.1 following the specifications at http://www.w3.org/TR/SVG11/.
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
var DefaultMinifier = &Minifier{Decimals: -1}
DefaultMinifier is the default minifier.
Functions ¶
Types ¶
type PathData ¶
type PathData struct {
// contains filtered or unexported fields
}
func NewPathData ¶
func (*PathData) ShortenPathData ¶
ShortenPathData takes a full pathdata string and returns a shortened version. The original string is overwritten. It parses all commands (M, A, Z, ...) and coordinates (numbers) and calls copyInstruction for each command.
type PathDataState ¶
type PathDataState struct {
// contains filtered or unexported fields
}
type TokenBuffer ¶
type TokenBuffer struct {
// contains filtered or unexported fields
}
TokenBuffer is a buffer that allows for token look-ahead.
func NewTokenBuffer ¶
func NewTokenBuffer(l *xml.Lexer) *TokenBuffer
NewTokenBuffer returns a new TokenBuffer.
func (*TokenBuffer) Attributes ¶
func (z *TokenBuffer) Attributes(hashes ...svg.Hash) []*Token
Attributes extracts the gives attribute hashes from a tag. It returns in the same order pointers to the requested token data or nil.
func (*TokenBuffer) Peek ¶
func (z *TokenBuffer) Peek(pos int) *Token
Peek returns the ith element and possibly does an allocation. Peeking past an error will panic.
func (*TokenBuffer) Shift ¶
func (z *TokenBuffer) Shift() *Token
Shift returns the first element and advances position.