Skip to content
Kenji Sasaki edited this page Jul 31, 2015 · 3 revisions

imgconv

image converter.

Usage

imgconv input_file output_file

Input image format

Bitmap JPEG PNG WBMP GIF DDS PSD TGA
.bmp .jpg, .jpeg .png .wbmp .gif .dds .psd .tga

Output image format

Bitmap JPEG PNG WBMP GIF TGA Base64 HTML
.bmp .jpg, .jpeg .png .wbmp .gif .tga .b64 .html, .htm

Examples

Convert PNG to TGA

imgconv test.png test.tga

Convert PNG to Base64

imgconv test.png test.b64
data:image/png;base64,iVBORw0KGgoAAAA...

Convert PNG to HTML

imgconv test.png test.html
<img src="data:image/png;base64,iVBORw0KGgoAAAA...">