1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
# sight::module::io::bitmap
This module contains services for writing bitmap related data.
## Services
- **writer**: writes a bitmap image from a `sight::data::image`.
- **reader**: reads a bitmap image and output a `sight::data::image`.
## How to use it
### CMake
```cmake
add_dependencies(my_target
...
module_io_bitmap
)
```
### XML
Please consult the [doxygen](https://sight.pages.ircad.fr/sight) of each service to learn more about its use in xml configurations.
|