Hi,

I need help to the understand this:

Why QImage save a JPEG image with a different size of source file?

See:

QImage img("source.jpg"); // size 1.3MB (1.352.640 )
img.save("target.jpg,"JPG"); // size 374KB

Why this occours? How I do to save with same size?

Thanks in advance.