QB64-Phoenix-Edition / QB64pe

The QB64 Phoenix Edition Repository
https://qb64phoenix.com
Other
131 stars 26 forks source link

Refactor Image library #520

Closed a740g closed 3 months ago

a740g commented 3 months ago

This PR refactors the image library by avoiding the inclusion of sub-library implementations within image.cpp. Now, each component is compiled in its own translation unit, and the resulting object files are added to image.a. The PR also enables the _SAVEIMAGE command to export images in the GIF format.

Update: Adds support for loading .ico and .cur files, as well as saving .ico files, using _LOADIMAGE and _SAVEIMAGE respectively.