mirror of https://github.com/talgo-cloud/bimg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.6 KiB
76 lines
1.6 KiB
package bimg
|
|
|
|
/*
|
|
#cgo pkg-config: vips
|
|
#include "vips/vips.h"
|
|
*/
|
|
import "C"
|
|
|
|
type ImageSize struct {
|
|
Width int
|
|
Height int
|
|
}
|
|
|
|
type ImageMetadata struct {
|
|
Orientation int
|
|
Channels int
|
|
Alpha bool
|
|
Profile bool
|
|
Type string
|
|
Space string
|
|
Colourspace string
|
|
Size ImageSize
|
|
}
|
|
|
|
// Get the image size by width and height pixels
|
|
func Size(buf []byte) (ImageSize, error) {
|
|
metadata, err := Metadata(buf)
|
|
if err != nil {
|
|
return ImageSize{}, err
|
|
}
|
|
|
|
return ImageSize{
|
|
Width: int(metadata.Size.Width),
|
|
Height: int(metadata.Size.Height),
|
|
}, nil
|
|
}
|
|
|
|
// Check in the image colourspace is supported by libvips
|
|
func ColourspaceIsSupported(buf []byte) (bool, error) {
|
|
return vipsColourspaceIsSupportedBuffer(buf)
|
|
}
|
|
|
|
// Get the image interpretation type
|
|
// See: http://www.vips.ecs.soton.ac.uk/supported/current/doc/html/libvips/VipsImage.html#VipsInterpretation
|
|
func ImageInterpretation(buf []byte) (Interpretation, error) {
|
|
return vipsInterpretationBuffer(buf)
|
|
}
|
|
|
|
// Extract the image metadata (size, type, alpha channel, profile, EXIF orientation...)
|
|
func Metadata(buf []byte) (ImageMetadata, error) {
|
|
defer C.vips_thread_shutdown()
|
|
|
|
image, imageType, err := vipsRead(buf)
|
|
if err != nil {
|
|
return ImageMetadata{}, err
|
|
}
|
|
defer C.g_object_unref(C.gpointer(image))
|
|
|
|
size := ImageSize{
|
|
Width: int(image.Xsize),
|
|
Height: int(image.Ysize),
|
|
}
|
|
|
|
metadata := ImageMetadata{
|
|
Size: size,
|
|
Channels: int(image.Bands),
|
|
Orientation: vipsExifOrientation(image),
|
|
Alpha: vipsHasAlpha(image),
|
|
Profile: vipsHasProfile(image),
|
|
Space: vipsSpace(image),
|
|
Type: getImageTypeName(imageType),
|
|
}
|
|
|
|
return metadata, nil
|
|
}
|