We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#include "tgafunc.h" int main(){ uint8_t* data; tga_info* info; tga_load(&data, &info, "./assets/cut_fish/base_color.tga"); tga_save_from_info(data, info, "./output.tga"); tga_free_data(data); tga_free_info(info); return 0; }
The original file "base_color.tga" is 8.64MB, and the output.tga is 12MB.
Why is that?
This may cause the image that foolrenderer produces much bigger than it should be.
foolrenderer
The text was updated successfully, but these errors were encountered:
Because tgafunc currently does not support RLE compression, image data is stored in raw, so the file becomes larger. I will add RLE in the future.
tgafunc
Sorry, something went wrong.
No branches or pull requests
Reproducible Code
The original file "base_color.tga" is 8.64MB, and the output.tga is 12MB.
Why is that?
This may cause the image that
foolrenderer
produces much bigger than it should be.The text was updated successfully, but these errors were encountered: