Add LibVersion string

This commit is contained in:
simon987 2019-12-28 10:27:26 -05:00
parent 41fab32cee
commit 51613b1541
2 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,8 @@ import (
)
func main() {
fmt.Println(fastimagehash.LibVersion);
hash, ret := fastimagehash.PHashFile("/path/to/image.jpg", 8, 4)
if ret == fastimagehash.Ok {

View File

@ -13,6 +13,8 @@ import (
#include <stdlib.h>
#include <string.h>
const char* Version = FASTIMAGEHASH_VERSION;
char *hash_to_hex_string_reversed_wr(void *h, int size) {
char *out = malloc(size * 2 + 1);
hash_to_hex_string_reversed((uchar*)h, out, size);
@ -100,6 +102,8 @@ type MultiHash struct {
MHash Hash
}
var LibVersion = C.GoString(C.Version)
func retHash(hash *C.uchar, hashSize int, ret C.int) (*Hash, Code) {
if ret == Ok {
goHash := C.GoBytes(unsafe.Pointer(hash), C.int(hashSize))