how to update Image

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
hakiim35
Posts: 19
Joined: 2010-02-18T07:04:01-07:00
Authentication code: 8675308

how to update Image

Post by hakiim35 »

hello, I have an Image that is initiliazed in the constructor of my class.
I have a gui that changes the quality of the jpeg image dynamically, I change the quality of the jpeg with

Code: Select all

img.quality
after the user updates the quality from the gui.
Then I convert the Image to a QT image. Now, I want to update the image on the gui. But it doesn't work. Should I call any other function on the Image, just after

Code: Select all

img.quality
?
Thanks in advance.
Post Reply