Example #1
0
File: vips.go Project: godeep/bimg
func vipsExifOrientation(image *C.VipsImage) int {
	return int(C.vips_exif_orientation(image))
}
Example #2
0
func vipsExifOrientation(image *C.struct__VipsImage) int {
	orientation := int(C.vips_exif_orientation(image))
	return orientation
}