feat(#1): initial implementation

This commit is contained in:
Tomas Aparicio 2015-03-29 22:55:04 +02:00
parent 8bcefc7736
commit 63f4b01c8d
14 changed files with 465 additions and 1 deletions

View file

@ -1,3 +1,12 @@
package bimg
type Image struct {}
/*
#cgo pkg-config: vips
#include "vips/vips.h"
*/
import "C"
type Image struct {
buf []byte
image *C.struct__VipsImage
}