我在caml中遇到一个小功能的问题。 我的功能在这里:
let show img =
let h = height img in
let w = width img in
open_graph (" "^string_of_int w^"x"^string_of_int h);
set_window_title "Seam Carving";
draw img;
if Graphics.key_pressed() then
match Graphics.read_key() with
| 'q' -> close_graph()
| _ -> ()
;;
当我点击按钮' q'时,我发现此错误:
Fatal error: exception Graphics.Graphic_failure("Xlib error: BadPixmap (invalid Pixmap parameter)")
或细分错误。
有人能解释一下这种错误的原因吗?谢谢:)
答案 0 :(得分:2)
对您的问题没有回复,因为其中没有足够的信息。
一般情况下,如果您遇到OCaml的分段错误,这是一个主要的错误,因此您应填写OCaml bug tracker的错误报告,并上传重现该错误的程序。