Converts Valve Texture Format (.vtf) files to Targa (.tga) files.
- VTFLib For reading .vtf files.
- [ImageMagick] (http://www.imagemagick.org/) For writing .tga files.
$g++ -std=c++11 vtf2tga.cpp -lVTFLib13 `Magick++-config --cppflags --cxxflags --ldflags --libs` -o vtf2tga.exe
$vtf2tga.exe "/path/to/.vtf" "/path/to/output/.tga"
MIT License. See LICENSE file for further details.