SFML community forums

General => SFML projects => Topic started by: iEPCBM on August 08, 2016, 10:11:27 am

Title: Simple Tile Creator
Post by: iEPCBM on August 08, 2016, 10:11:27 am
Short Summary:  Simple Tile Creator is a program, that assembles a sequence of images into one image.

Description

Simple Tile Creator is a simple program with open source software, distributed under the New BSD license. It is using SFML 2.3.2 for loading, handling and save images. Allows you to create tile animation files from a number of files-frames. In addition, it can create tile animation with various size and extensions (All extensions of images that supports SFML 2.3.2) of frames.

Usage

Here is YouTube video-tutorial "How to use it?" (https://youtu.be/6hFN8tN_6XA)

That manual in text format:
Examples

(click to show/hide)

(click to show/hide)

Feedback

You can always leave your suggestions, questions or bug reports below. In free time I will try answer them.  :)

Links

Simple Tile Creator in SourceForge (http://simple-tile-animator.sourceforge.net/)
Simple Tile Creator License (http://rishatkagirov.tk/programs/Simple_Tile_Animator/license.php)

Logos

(click to show/hide)

(click to show/hide)

Сonclusion
Simple Tile Creator , albeit simple program, but in my opinion it is very useful.
Title: Re: Simple Tile Animator
Post by: Hapax on August 08, 2016, 11:17:47 am
This is interesting. Good work!

I'm not sure it should have "animator" in the title as it doesn't actually animate anything  :P

You may want to consider how the image will end up if there are many frames: does it only stick to a single column/row?

The amount of wasted space when mixing differently sized images can be rather...wasteful. You may want to consider if keeping them in order is more important than re-arranging them and packing them more tightly as orders can be re-assembled after loading. You could even save a text file (or xml/json) with the rectangles of each packed image  ;)
Title: Re: Simple Tile Animator
Post by: iEPCBM on August 08, 2016, 12:41:45 pm
I'm not sure it should have "animator" in the title as it doesn't actually animate anything  :P
Yes. You are absolutely right. I have invented few names for this software.
Which one is the most successful?

You may want to consider how the image will end up if there are many frames: does it only stick to a single column/row?

The amount of wasted space when mixing differently sized images can be rather...wasteful. You may want to consider if keeping them in order is more important than re-arranging them and packing them more tightly as orders can be re-assembled after loading. You could even save a text file (or xml/json) with the rectangles of each packed image  ;)

I will try to realize this in future versions.
Title: Re: Simple Tile Creator
Post by: Jesper Juhl on August 08, 2016, 04:25:01 pm
Note that you can do the same thing (and more) with Imagemagick : http://www.imagemagick.org/Usage/montage/#montage
Title: Re: Simple Tile Creator
Post by: iEPCBM on August 09, 2016, 08:34:49 pm
Note that you can do the same thing (and more) with Imagemagick : http://www.imagemagick.org/Usage/montage/#montage

It just motivates me to do better.  :D
Title: Re: Simple Tile Creator
Post by: Jesper Juhl on August 09, 2016, 09:06:55 pm
I didn't mean to discourage or incourage you. I simply wanted to point out that you are solving a solved problem. What you do from there is your own business.