Changed: Allow to write interface into a PNG file

This commit is contained in:
kervala 2010-08-27 17:03:41 +02:00
parent 790cdf83c1
commit 7610d61b80

View file

@ -366,9 +366,20 @@ int main(int nNbArg, char **ppArgs)
fmtName += ".tga";
if (outTga.open(fmtName))
{
GlobalTexture.writeTGA (outTga, 32);
std::string ext;
if (toLower(fmtName.find(".png")) != string::npos)
{
ext = "png";
GlobalTexture.writePNG (outTga, 32);
}
else
{
ext = "tga";
GlobalTexture.writeTGA (outTga, 32);
}
outTga.close();
outString (string("Writing tga file : ") + fmtName + "\n");
outString (toString("Writing %s file : %s\n", ext.c_str(), fmtName.c_str()));
}
else
{