! Saves a JPEG 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 para
| 14666 | \see savePdf, savePng, saveBmp, saveRastered |
| 14667 | */ |
| 14668 | bool QCustomPlot::saveJpg(const QString &fileName, int width, int height, double scale, int quality, int resolution, QCP::ResolutionUnit resolutionUnit) |
| 14669 | { |
| 14670 | return saveRastered(fileName, width, height, scale, "JPG", quality, resolution, resolutionUnit); |
| 14671 | } |
| 14672 | |
| 14673 | /*! |
| 14674 | Saves a BMP image file to \a fileName on disc. The output plot will have the dimensions \a width |
nothing calls this directly
no outgoing calls
no test coverage detected