SVI 1b37dcd269 d02 Исправление ошибки для сборки 2 år sedan
..
.gitignore 9c9f36cc14 d02 Обновление вендоринга 2 år sedan
COPYING.txt 1b37dcd269 d02 Исправление ошибки для сборки 2 år sedan
reader.go 9c9f36cc14 d02 Обновление вендоринга 2 år sedan
readme.md 1b37dcd269 d02 Исправление ошибки для сборки 2 år sedan
rle.go 9c9f36cc14 d02 Обновление вендоринга 2 år sedan
writer.go 9c9f36cc14 d02 Обновление вендоринга 2 år sedan

readme.md

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>