Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DecodeConfig ¶
type DecodeConfig struct {
Data *[]byte
}
type DecodeImage ¶
type DecodeImage struct {
Data *[]byte
}
type RenderFile ¶
type RenderFile struct {
Data *[]byte // The file data.
OutputFormat RenderFileOutputFormat // The format to output the image as
MaxFileSize int64 // The maximum filesize, if jpg is chosen as output format, it will try to compress it until it fits
}
type RenderFileOutputFormat ¶
type RenderFileOutputFormat string // The file format to render output as.
const ( RenderFileOutputFormatJPG RenderFileOutputFormat = "jpg" // Render the file as a JPEG file. RenderFileOutputFormatPNG RenderFileOutputFormat = "png" // Render the file as a PNG file. )
Click to show internal directories.
Click to hide internal directories.