I've done a lot of googling but cant found any help at this issue.
Would be great if someone has an idea.
I use Ubuntu (14.04) and want to convert (scale) all my isometric tile images (for a tile map editor) to their half.
The tiels looks something like this:
http://forum.mapeditor.org/uploads/defa ... 0c99db.png
But mine are single images and most of them are 360x180 and I want them in 180x90.
So I do something like this:
Code: Select all
for in *png; convert $image -scale 50% $image; done;
But if I open them in Photoshop in Windows 10, I see these damn transparent pixel leftovers at the border of the tile.
Does anyone know why this is happen and how to fix this with a specific parameter or something like this?
Thanks a lot!