我对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)")
或分段错误。
有人可以向我解释这种错误的原因吗?谢谢 :)