mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-14 19:49:02 +00:00
9 lines
218 B
Python
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)))
|
|
|