Bug#404395: libcamlimages-ocaml-dev: Fails to load images.

2006-12-28 Thread Erik de Castro Lopo
Sylvain Le Gall wrote: You should use OImages in place of OImage. Ok, noted. Really, you should use : ocamlfind -package camlimages -linkpkg -o load_image load_image.ml I think that should be: ocamlfind ocamlopt -package camlimages -linkpkg -o load_image load_image.ml but that still

Bug#404395: libcamlimages-ocaml-dev: Fails to load images.

2006-12-28 Thread sylvain
Hello, Erik de Castro Lopo writes: Really, you should use : ocamlfind -package camlimages -linkpkg -o load_image load_image.ml I think that should be: ocamlfind ocamlopt -package camlimages -linkpkg -o load_image load_image.ml Yes, off course (typo, as usual). but that still

Bug#404395: libcamlimages-ocaml-dev: Fails to load images.

2006-12-24 Thread Erik de Castro Lopo
Package: libcamlimages-ocaml-dev Version: 2.20-8 Severity: normal -- System Information: Debian Release: 4.0 APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.18-3-686 Locale: LANG=en_AU.UTF-8,

Bug#404395: libcamlimages-ocaml-dev: Fails to load images.

2006-12-24 Thread Sylvain Le Gall
Hello, In gmane.linux.debian.devel.ocaml, you wrote: The simplest program (load_image.ml) using camlimages: let _ = let filename = Sys.argv.(1) in let img = OImage.load filename [] in let img = OImage.rgb24 img in ignore img You should use