An Image to PlayStation TIM File Converter
Go to file
Arthus Belliqueux 423ca19144
Added linux compile infos
2020-12-01 15:23:32 +01:00
.gitignore Updated to v0.75 2016-10-11 10:54:47 +08:00
LICENSE First Commit 2016-03-26 20:35:04 -08:00
Makefile Added makefile to compile in Linux without codeblocks 2020-12-01 15:10:29 +01:00
README.md Added linux compile infos 2020-12-01 15:23:32 +01:00
img2tim.cbp Updated to v0.75 2016-10-11 10:32:22 +08:00
img2tim.depend Updated to v0.75 2016-10-11 10:32:22 +08:00
img2tim.layout Updated to v0.75 2016-10-11 10:32:22 +08:00
img2tim.txt First Commit 2016-03-26 20:35:04 -08:00
main.cpp Made compilable for non-Windows targets 2020-04-13 22:58:22 +03:00
tim.cpp First Commit 2016-03-26 20:35:04 -08:00
tim.h Made compilable for non-Windows targets 2020-04-13 22:44:39 +03:00

README.md

IMG2TIM

An Image to PlayStation TIM File Converter

This tool converts almost any image file into a PlayStation TIM image file for PlayStation homebrew development. Uses the FreeImage library for loading image files of almost any file format.

Features

  • Uses the same arguments used in bmp2tim with special additional arguments.
  • Supports alpha channel (if available) with threshold control as transparency mask.
  • Color-key and index-key transparency masking.
  • Basic RGB to color-index image conversion.

Download

The latest precompiled Win32 binary of this program can be downloaded here: img2tim_(v0.75).zip

Previous versions: img2tim_(v0.60).zip

Compile in Linux

You must install libfreeimage-dev for debian derivatives;

sudo apt-get install libfreeimage-dev

or freeimage for arch derivatives ;

sudo pacman -S freeimage

then :

git clone https://github.com/ABelliqueux/img2tim.git
cd img2tim
make all

Changelog

Version 0.75

  • Fixed a bug where a false error message is thrown when converting 4-bit images with -bpp 4.
  • Fixed a pixel order bug when converting images from either RGB or 4-bit depth to 4-bit color depth.

Version 0.60

  • Initial release.