Portability | portable |
---|---|
Stability | provisional |
Maintainer | libraries@haskell.org, frederik@ofb.net |
Safe Haskell | None |
Xlib image routines
- data Image
- createImage :: Display -> Visual -> CInt -> ImageFormat -> CInt -> Ptr CChar -> Dimension -> Dimension -> CInt -> CInt -> IO Image
- putImage :: Display -> Drawable -> GC -> Image -> Position -> Position -> Position -> Position -> Dimension -> Dimension -> IO ()
- destroyImage :: Image -> IO ()
Documentation
pointer to an X11 XImage
structure
createImage :: Display -> Visual -> CInt -> ImageFormat -> CInt -> Ptr CChar -> Dimension -> Dimension -> CInt -> CInt -> IO ImageSource
interface to the X11 library function XCreateImage()
.
putImage :: Display -> Drawable -> GC -> Image -> Position -> Position -> Position -> Position -> Dimension -> Dimension -> IO ()Source
interface to the X11 library function XPutImage()
.
destroyImage :: Image -> IO ()Source
interface to the X11 library function XDestroyImage()
.