加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
readpyctype.py 532 Bytes
一键复制 编辑 原始数据 按行查看 历史
kolpazik 提交于 2024-10-25 09:03 . init
from ctypes import *
CDLL("./libs/libdecodeidcardinfo.so",mode=RTLD_GLOBAL)
CDLL("./libs/libsdtapi.so",mode=RTLD_GLOBAL)
lib= cdll.LoadLibrary("./demo.so")
class PyTestStruct(Structure):
_fields_ = [
("id" , c_ubyte * 128),
("name" , c_ubyte * 128)
]
py_get_str = lib.readIdCard
py_get_str.restype = POINTER(PyTestStruct)
rst = py_get_str()
try:
a = str(cast(rst.contents.id,c_char_p).value,'utf-8')
b = str(cast(rst.contents.name,c_char_p).value,'utf-8')
except Exception as ve:
print(ve)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化