Hi,

We have created a plugin to support a new imageformat.
When i load the new image, it talks to the corresponding imagerenderer through plugin. and returns a qimage.
But I am not able to pass the size for this qimage to the plugin.
How to do it ?

or atleast, how to specify the new imageformat in the constructor with the size.
I did not find any QImage constructor for the same .

If I do,

QImage image(200, 200, QImage::Format_Invalid);
image.load("c:\\data\\sample.abc","abc")

it is not taking size (200, 200).
also, how in the constructor above how I can specify the new image format ??

Please help me in solving this problem.