1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2025-05-11 11:19:48 +00:00
2015-04-20 22:32:22 -04:00

9 lines
218 B
Python

import ctypes
p = 'target/release/libblock-b7b66d53f276d597.so'
imgp = b'/home/hsoft/src/dupeguru/images/dgme_logo_128.png'
block = ctypes.CDLL(p)
s = ctypes.create_string_buffer(imgp)
print(repr(block.block(imgp)))