예제 #1
0
파일: vips.go 프로젝트: godeep/bimg
func vipsExifOrientation(image *C.VipsImage) int {
	return int(C.vips_exif_orientation(image))
}
예제 #2
0
파일: vips.go 프로젝트: julianshen/vips
func vipsExifOrientation(image *C.struct__VipsImage) int {
	orientation := int(C.vips_exif_orientation(image))
	return orientation
}