中的bytesPerLine是什么意思
QImage::QImage ( uchar * data, int width, int height, int bytesPerLine, Format format )
在文档中,提到bytesPerLine指定每行的字节数(步幅) 我不清楚它的用法。 width和bytesPerLine是一样的吗?有人可以解释一下吗?
答案 0 :(得分:7)
bytesperline表示给定行中图像像素所需的字节数。
为了说明这一点,请考虑以下代码片段...
int imageWidth = 800;
int imageHeight = 600;
int bytesPerPixel = 4; // 4 for RGBA, 3 for RGB
int format = QImage::Format_ARGB32; // this is the pixel format - check Qimage::Format enum type for more options
QImage image(yourData, imageWidth, imageHeight, imageWidth * bytesPerPixel, format);