Nice 10/10
Nice 10/10
Good Release 10/10
thx
Nice!
I had a program like this one, but this fucking pwns the other program ^^
Installed and used!!
10/10!
Thansk for Post!!!##
Deserves a bump
MuSkinner 4 ever!I still use this even today ^_^
Aww.. I have some error when i try to open My Computer from skinner... Somt. like this:
The specified module could not be found. (Exception from HRESULT: 0x8007007E).
Please help me!
yes realy good!
looking good
Is this still being developed? :smile:
If I remember correctly, Mu needs its OZT files (encoded TGA) to be a specific color-depth, and transparency added by other programs can be troublesome.. If you want a JPG to be an OZT you probably should convert JPG => TGA => OZT :thumb:
P.S: Batch conversion yay!![]()
OZT/OZJ conversion is actually quite simple. It only requires several lines of code. If you have Perl installed, you can even do it straight off command line without using a program.
So, if you've got Perl installed on your computer, just open up a command prompt window, browse to the folder, and type in any one of the following 4 lines to convert every file of a certain type in that folder.
So here's your batch conversion :P :
Convert OZJ=>JPG:
for %f in (*.ozj) do perl -e "$f=shift;open I,$f;binmode I;read I,$_,-s$f;s/^.{24}//s;open O,'>%f.jpg';binmode O;print O" %f
Convert OZT=>TGA:
for %f in (*.ozt) do perl -e "$f=shift;open I,$f;binmode I;read I,$_,-s$f;s/^.{4}//s;open O,'>%f.tga';binmode O;print O" %f
Convert JPG=>OZJ:
for %f in (*.jpg) do perl -e "$f=shift;open I,$f;binmode I;read I,$_,-s$f;s/^(.{24})/\1\1/s;open O,'>%f.ozj';binmode O;print O" %f
Convert TGA=>OZT:
for %f in (*.tga) do perl -e "$f=shift;open I,$f;binmode I;read I,$_,-s$f;s/^(.{4})/\1\1/s;open O,'>%f.ozt';binmode O;print O" %f
And if you only want to convert a single file, remove the "for %f in (*.xxx) do" part, and replace %f with the file name. That, or replace the (*.ext) with (file_to_convert.ext).
Sure, but the shell commands and previewing are good for productivity, since often people will be working with dozens of files at once...![]()
Sure, previewing and user interface are all nice. I was just saying that for those that don't need all that, you can do a batch or single file conversion right off of command line.
People in Mu section comfortable with command-line interfaces = umm about 20? Not that that's a particularly bad thing, mind you... 99% of people don't _need_ to know how to use anything but a GUI in everyday life... So yeah for the 99% it's useful ;) And for the rest of us who CAN do it manually but don't want to waste time when a GUI is easier, it's good too. Thanks for posting the perl info for the purists, tho :smile:
Yo , just perfect....
very very very nice tool..
Hey please help me I have that caind of error
when I tried to convert file thin error pop up again
This is best program for convert files, big thanks for that good job!
When I run exe, in appears in Task Manager/Processess.
But I can't see it.
Great release, now i can start to make my script for online people on map!!
i'm gonna try this. thanks.