mirror of
https://github.com/talgo-cloud/bimg.git
synced 2026-03-07 13:38:16 -08:00
12 lines
141 B
Go
12 lines
141 B
Go
package bimg
|
|
|
|
/*
|
|
#cgo pkg-config: vips
|
|
#include "vips/vips.h"
|
|
*/
|
|
import "C"
|
|
|
|
type Image struct {
|
|
buf []byte
|
|
image *C.struct__VipsImage
|
|
}
|