vote up 1 vote down star

Is it possible to make a copy of Gdk.image object using lablgtk2 for Ocaml? I tried to find 'copy' or 'clone' methods but failed.

flag

2 Answers

vote up 1 vote down check

Maybe you could use pixbuf? It can be created from any drawable.

link|flag
vote up 0 vote down

Here is my clumsy workaround:

let copy_image image =

    let w, h = Image.width image, Image.height image in 

    let copy = Image.create ~kind: `FASTEST ~visual: (Image.get_visual image) 

		~width: w 

		~height: h in

    for x = 0 to w-1 do

        for y = 0 to h-1 do

            Image.put_pixel copy ~x:x ~y:y (Image.get_pixel image ~x:x ~y:y)

        done

    done;
    copy
link|flag
although pixbuf variant is also clumsy :( – Alfa07 Aug 21 at 21:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.