Method: RGD::Image#bmp

Defined in:
ext/rgd/rgd.c

#bmp(filename) ⇒ Object

Write the image to the specified file in BMP format.



817
818
819
# File 'ext/rgd/rgd.c', line 817

static VALUE image_bmp(VALUE klass, VALUE filename) {
    return gd_image_to_file_H(klass, filename, 1, gdImageBmp);
}