TexturePacker: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
m (Robot: Substituting template: Name)
No edit summary
Line 5: Line 5:
<section end="intro" />
<section end="intro" />
== How To Get It ==
== How To Get It ==
If you are using Windows, you can simply download an up-to-date version of TexturePacker from the XBMC GIT repo. It is available here: [https://github.com/xbmc/xbmc/blob/master/tools/TexturePacker/TexturePacker.exe?raw=true TexturePacker.exe]
If you are using Windows, you can simply download a zipfile with an up-to-date version of TexturePacker from the XBMC mirrors. It is available here: [http://mirrors.kodi.tv/build-deps//win32/texturepacker-1.0.0-win32.7z TexturePacker.7z]


On other platforms, you will have to compile TexturePacker yourself. This is done by compiling XBMC and when the compile is finished, you can find TexturePacker inside the ../tools/TexturePacker directory.
On other platforms, you will have to compile TexturePacker yourself. This is done by compiling XBMC and when the compile is finished, you can find TexturePacker inside the ../tools/TexturePacker directory.
=== Missing Dll's error ===
Grab the Dll's from [https://github.com/uNiversaI/skin.confluence/tree/texture_packer TexturePacker] or for newer SDL dll (smaller Texture.xbt see [http://www.libsdl.org/projects/SDL_image/release/SDL_image-1.2.12-win32.zip SDL.dll] keeping them in same directory as TexturePacker executable.


== Usage ==
== Usage ==

Revision as of 19:25, 7 January 2015

Home icon grey.png   ▶ Development ▶ Add-on development ▶ Skinning ▶ TexturePacker

XBMC uses a tool named TexturePacker to compile all images used in a skin into a single file. The benefit of it is that images inside the Textures.xbt will load faster in the skin. This is done by converting all images into a format that take less processing by XBMC when they need to be rendered onto the screen.

A common misconception is that TexturPacker will just compress the images into a single file, this if far from the truth, so don't be surprised if the Textures.xbt file is much larger than to total size of all the individual images.

How To Get It

If you are using Windows, you can simply download a zipfile with an up-to-date version of TexturePacker from the XBMC mirrors. It is available here: TexturePacker.7z

On other platforms, you will have to compile TexturePacker yourself. This is done by compiling XBMC and when the compile is finished, you can find TexturePacker inside the ../tools/TexturePacker directory.

Usage

Since TexturePacker is a command-line tool, you will need to open a dos box/terminal/console in order to run it. The general usage is:

TexturePacker -input skin.name\media -output skin.name\media\Textures.xbt

Optionally, you can run TexturePacker with the -dupecheck option. This is useful if you have included the same image multiple times in your media folder. For example, if your skin includes a lot of studio logos, most likely a lot of them are included multiple times but with a slightly different filename. The '-dupecheck' option will make sure each unique image is included only once in the Textures.xbt file and thus keeping the size of it as small as possible.

If your skins includes themes you should also run TexturePacker on your theme folders:

TexturePacker -input skin.name\themes\Blue -output skin.name\media\Blue.xbt

Note: When using an XBT file in your skin, your file paths will not be case sensitive, even if your skin resides on a case sensitive file system!

Texturepacker build bat

Create a Texturepacker.bat with the contents below, inside the skin.name directory along with all the texturepacker.exe and dll's, a double click on the bat file does all the work for you.

@echo off
ECHO ----------------------------------------
echo Creating excludes

Echo .svn>exclude.txt
Echo .git>exclude.txt
Echo Thumbs.db>>exclude.txt
Echo Desktop.ini>>exclude.txt
Echo dsstdfx.bin>>exclude.txt
Echo build.bat>>exclude.txt
Echo \skin.confluence\media\>>exclude.txt
Echo exclude.txt>>exclude.txt

ECHO ----------------------------------------
ECHO Creating XBT File...

START /B /WAIT TexturePacker -dupecheck -input media\ -output media\Textures.xbt

del exclude.txt

echo Textures.xbt build complete - Scroll Up to check for errors.
pause