QVGA with version 6.3

Georg

Member
Licensed User
Longtime User
Hi

when i compile a programm for booth devices i need different images, the double width and height for VGA how to handle it with the new compilation for QVGA. With changeVGA and different images.dat it works well on the older Version. How to include booth images in one exe?

Georg
 

derez

Expert
Licensed User
Longtime User
The QVGA compilation enables you to use one set of images - those that fit QVGA screens. The QVGA compilation multiply the pixels for VGA screens so you don't have to do any special programming for the VGA.

The QVGA compilation can be used by both types of devices.

When you use regular compilation for VGA screens - then you have to cater for the images and create larger images to be used with the VGA, and decide which to load with the if statement checking the screen size
(height or width)
 

Georg

Member
Licensed User
Longtime User
Tanks i got it. Could it be that the quality of the images will be downsize then on VGA?
 

derez

Expert
Licensed User
Longtime User
By definition - the quality of 240x320 is less then 480X640 if they are displaying aa image with vga size. If the image is QVGA size then there will be no real difference.
 
Top