! Saves a BMP image file to \a fileName on disc. The output plot will have the dimensions \a width and \a height in pixels, multiplied by \a scale. If either \a width or \a height is zero, the current width and height of the QCustomPlot widget is used instead. Line widths and texts etc. are not scaled up when larger widths/heights are used. If you want that effect, use the \a scale param
| 14710 | \see savePdf, savePng, saveJpg, saveRastered |
| 14711 | */ |
| 14712 | bool QCustomPlot::saveBmp(const QString &fileName, int width, int height, double scale, int resolution, QCP::ResolutionUnit resolutionUnit) |
| 14713 | { |
| 14714 | return saveRastered(fileName, width, height, scale, "BMP", -1, resolution, resolutionUnit); |
| 14715 | } |
| 14716 | |
| 14717 | /*! \internal |
| 14718 |
nothing calls this directly
no outgoing calls
no test coverage detected