gobmp

package module
v0.0.0-...-a9de23e Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 14, 2023 License: MIT Imports: 5 Imported by: 17

README

gobmp

A Go package for reading and writing BMP image files.

Installation

To download and install, at a command prompt type:

go get github.com/jsummers/gobmp

Documentation

Gobmp is designed to work the same as Go's standard image modules. Importing it will automatically cause the image.Decode function to support reading BMP files.

The documentation may be read online at GoDoc.

Or, after installing, type:

godoc github.com/jsummers/gobmp | more

Status

The decoder supports almost all types of BMP images.

By default, the encoder will write a 24-bit RGB image, or a 1-, 4-, or 8-bit paletted image. Support for 32-bit RGBA images can optionally be enabled. Writing compressed images is not supported.

License

Gobmp is distributed under an MIT-style license. Refer to the COPYING.txt file.

Copyright © 2012-2015 Jason Summers <jason1@pobox.com>

Documentation

Overview

Package gobmp implements a BMP image decoder and encoder.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Decode

func Decode(r io.Reader) (image.Image, error)

Decode reads a BMP image from r and returns it as an image.Image.

func DecodeConfig

func DecodeConfig(r io.Reader) (image.Config, error)

DecodeConfig returns the color model and dimensions of the BMP image without decoding the entire image.

func Encode

func Encode(w io.Writer, m image.Image) error

Encode writes the Image m to w in BMP format.

func EncodeWithOptions

func EncodeWithOptions(w io.Writer, m image.Image, opts *EncoderOptions) error

EncodeWithOptions writes the Image m to w in BMP format, using the options recorded in opts. opts may be nil, in which case it behaves the same as Encode.

Types

type EncoderOptions

type EncoderOptions struct {
	// contains filtered or unexported fields
}

EncoderOptions stores options that can be passed to EncodeWithOptions(). Create an EncoderOptions object with new().

func (*EncoderOptions) SetDensity

func (opts *EncoderOptions) SetDensity(xDens, yDens int)

SetDensity sets the density to write to the output image's metadata, in pixels per meter.

func (*EncoderOptions) SupportTransparency

func (opts *EncoderOptions) SupportTransparency(t bool)

SupportTransparency indicates whether to retain transparency information when writing the BMP file. Transparency requires the use of a not-so-portable version of BMP.

type FormatError

type FormatError string

A FormatError reports that the input is not a valid BMP file.

func (FormatError) Error

func (e FormatError) Error() string

type UnsupportedError

type UnsupportedError string

An UnsupportedError reports that the input uses a valid but unimplemented BMP feature.

func (UnsupportedError) Error

func (e UnsupportedError) Error() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL