ImageMagick 的分割错误 + Python ctypes

发布于 2024-12-11 21:18:13 字数 903 浏览 0 评论 0原文

我正在将 ImageMagick 库与 Python ctypes 结合使用。我编写了以下简单代码,但在 Mac 中因分段错误 (KERN_INVALID_ADDRESS) 而崩溃:

from ctypes import *
from ctypes.util import find_library

lib = CDLL(find_library('MagickWand'))
lib.MagickWandGenesis()
wand = lib.NewMagickWand()
lib.MagickReadImage(wand, 'mona-lisa.jpg')
lib.DestroyMagickWand(wand)
lib.MagickWandTerminus()

它在 Linux 和 Windows 中都运行良好,但仅在 Mac OS X Lion 中崩溃。我以各种方式构建了 ImageMagick(官方二进制包、Homebrew、传统 ./configure && make),但每次尝试都崩溃了。

Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_INVALID_ADDRESS at address: 0x00000000009a7638
0x000000010149a8d1 in MagickReadImage ()

不仅对于 MagickReadImage() 函数,IsMagickWand() 函数也会崩溃。我只是猜测 NewMagickWand() 返回了错误的指针,或者 Mac 中的 ctypes 错误地处理了指针,但我不确定。

这种情况有什么问题吗?

I am using ImageMagick library with Python ctypes. I wrote a following simple code, but it crashes with segmentation fault (KERN_INVALID_ADDRESS) in Mac:

from ctypes import *
from ctypes.util import find_library

lib = CDLL(find_library('MagickWand'))
lib.MagickWandGenesis()
wand = lib.NewMagickWand()
lib.MagickReadImage(wand, 'mona-lisa.jpg')
lib.DestroyMagickWand(wand)
lib.MagickWandTerminus()

It works well in Linux and Windows both, but craches only in Mac OS X Lion. I built ImageMagick in various ways (official binary package, Homebrew, traditional ./configure && make), but it crashed for every trial.

Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_INVALID_ADDRESS at address: 0x00000000009a7638
0x000000010149a8d1 in MagickReadImage ()

Not only for MagickReadImage() function, IsMagickWand() function also crashes. I only guess NewMagickWand() returns a wrong pointer, or ctypes in Mac handles pointers incorrectly, but I’m not sure.

What’s wrong in this situation?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

怪我入戏太深 2024-12-18 21:18:14

我将以下代码更改

lib.MagickReadImage(wand, 'mona-lisa.jpg')

为:

f2 = lib.MagickReadImage
f2.argtypes = [c_void_p, c_char_p]
f2(wand, 'mona-lisa.jpg')

所以,它运行良好。

I changed the following code:

lib.MagickReadImage(wand, 'mona-lisa.jpg')

to:

f2 = lib.MagickReadImage
f2.argtypes = [c_void_p, c_char_p]
f2(wand, 'mona-lisa.jpg')

So, it works well.

自演自醉 2024-12-18 21:18:14

这很可能是 32/64 位问题。 Mac 版本是您测试过的唯一 64 位进程吗?或者也许您在 Windows 和 Linux 版本中很幸运,因为它们碰巧返回 0x00000000xxxxxxxx 形式的指针。

wand = lib.NewMagickWand()

NewMagickWand 返回一个指针,但您没有告诉 ctypes 期望一个指针。按照目前的情况,ctypes 默认使用 32 位整数作为返回值。在调用 NewMagickWand 之前添加此行。

lib.NewMagickWand.restype = c_void_p

这告诉 ctypes NewMagickWand 返回一个指针。

Most likely this is a 32/64 bit issue. Is the Mac version the only 64 bit process that you've tested? Or perhaps you got lucky in the Windows and Linux versions in that they happen to return pointers of the form 0x00000000xxxxxxxx.

wand = lib.NewMagickWand()

NewMagickWand returns a pointer but you have not told ctypes to expect a pointer. As it stands ctypes defaults to a 32 bit integer for the return value. Add this line before you call NewMagickWand.

lib.NewMagickWand.restype = c_void_p

This tells ctypes that NewMagickWand returns a pointer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文