NAME
====
  vg_bitmap_createnew() - create an empty bitmap


SYNOPSIS
========
  bitmap * vg_bitmap_createnew(int width, int height)


DESCRIPTION
===========
  Creates an new empty (filled with black pixels) bitmap with the size
  you passed as arguments.
  width is the width of the bitmap,
  height is the height of the bitmap.


RETURN VALUE
============
  If it succeeds, it returns a pointer to the created bitmap.
  If an error occurs, it returns NULL, giving out an error message to stderr.


SEE ALSO
========
  Index
  Understanding bitmaps
  vg_bitmap_createfromfile()
  vg_bitmap_createfromtext()
  vg_bitmap_duplicate()
  vg_bitmap_width()
  vg_bitmap_height()
  vg_bitmap_getpixel()
  vg_bitmap_clear()
  vg_bitmap_copyto()
  vg_bitmap_save()
  vg_bitmap_rotate()
  vg_bitmap_zoom()
  vg_bitmap_mirror()
  vg_bitmap_overlap()
  vg_bitmap_free()