An open API service indexing awesome lists of open source software.

https://github.com/vansante/go-vips-thumbnailer


https://github.com/vansante/go-vips-thumbnailer

golang golang-library image image-processing thumbnail thumbnail-generator

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

# go-vips-thumbnailer

This is a library for quickly and efficiently resizing images using libvips.
This library exclusively uses the new streaming API introduced in libvips version 8.9.0.

This package would not have been possible without the excellent work on libvips (https://github.com/libvips/libvips)
and the bimg library (https://github.com/h2non/bimg).

## Requirements

- libvips 8.9+
- pkg-config
- C compatible compiler such as gcc 4.6+ or clang 3.0+
- Go 1.13+

## Status

This is library is a work in progress! Please do not use it yet in a production setting.

## Installation

```
go get gopkg.in/vansante/go-vips-thumbnailer.v0
```

## Documentation

Take a look at the autogenerated documentation:

https://pkg.go.dev/gopkg.in/vansante/go-vips-thumbnailer.v0

## Basic usage

TODO!