更新:错误似乎是由这一行产生的:*line = color;
我收到以下错误,但我不明白它可能来自哪里:
错误:
HEAP [testQt.exe]:0B444FE8 处的堆块在 0B44C6B0 处修改,超过了请求的 76c0 大小
生成它的行:
return QPixmap::fromImage(qimage);
从:
QPixmap Interpolation::getData() {
QPointF pt(0, 0);
QRgb color;
QImage qimage(m_width, m_height, QImage::Format_ARGB32);
qimage.fill(Qt::transparent);
for (int i(0); i < m_height; ++i) {
m_progress->setValue(m_width+i);
QRgb *line = (QRgb *)qimage.scanLine(i);
for (int j(0); j < m_width; ++j) {
pt.setX(j);
pt.setY(i);
line += 1;
if (isInHull(pt)) {
color = colorScale(interp(&pt));
*line = color; //If I remove this part the program won't crash
}
}
}
return QPixmap::fromImage(qimage);
}
如果有帮助:
QRgb Interpolation::colorScale(qreal value)
{
int cat;
cat = qFloor(qreal(9)*(value-m_min)/(m_max-m_min));
return m_couleurs[cat];
}
和:
m_couleurs[0] = qRgb(247, 252, 240);
m_couleurs[1] = qRgb(224, 243, 219);
m_couleurs[2] = qRgb(204, 235, 197);
m_couleurs[3] = qRgb(168, 221, 181);
m_couleurs[4] = qRgb(123, 204, 196);
m_couleurs[5] = qRgb(78, 179, 211);
m_couleurs[6] = qRgb(43, 140, 190);
m_couleurs[7] = qRgb(8, 104, 172);
m_couleurs[8] = qRgb(8, 64, 129);
任何线索将不胜感激。
编辑:添加完整功能以防万一。Edit2:使代码更清晰,并删除了无用的部分。Edit3:更新了问题。