通过在Qt中使用QSlider来更改图像的像素值

时间:2016-06-03 13:58:56

标签: image qt

我是编程Qt的新手。我有一个Gui。它有滑块和按钮。我也可以

将图像作为输入并将其放入第二个标签。我不能做的事情

获取图像的像素并相对于滑块值更改它们。

2 个答案:

答案 0 :(得分:0)

gcm = GCM.new("secret")
registration_ids= ["secret"]; 
options = {data: {message: "hei dude"}, collapse_key: "messaging"}      

response = gcm.send(registration_ids, options)

答案 1 :(得分:0)

#include "test.h"
#include <QtWidgets/QApplication>
#include <QtGui>



int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    Test w;
    w.show();

    QImage myImage;
    myImage.load("Baboon.bmp");
    QLabel myLabel;
    myLabel.setPixmap(QPixmap::fromImage(myImage));

    myLabel.show();




    return a.exec();
}