PDA

View Full Version : * Free * tool :Png Mixer


clueless
08-16-2008, 12:09 PM
Heres a small commandline driven program for you to use freely in your own projects.

Usage
Can stamp a png over another image. (though i think it could do other formats to)

Ccommandline syntax
[background image]#[Stamp image]#[nTargetX]#[nTargetY]#[output image]

mz241508
08-16-2008, 12:25 PM
great work, would come in handy! :)

Vancete
08-16-2008, 02:18 PM
Nice,thanks!:D

Imagine Programming
08-16-2008, 02:48 PM
Great for watermarking, thanks!:)

JDog37
08-17-2008, 12:58 AM
In the "Read Me" text:

"you may need to register the wiaaut.dll"

How do I register it??

Sorry, :o

clueless
08-17-2008, 06:15 AM
REGEDIT4

// This adds the ability to Right-Click on a .dll or .ocx
// and get the Register / UnRegister options.

// .DLL files
[HKEY_CLASSES_ROOT\.dll]
@="dllfile"

[HKEY_CLASSES_ROOT\dllfile]
@="App Extension"

[HKEY_CLASSES_ROOT\dllfile\Shell\Register\command]
@="regsvr32.exe \"%1\""

[HKEY_CLASSES_ROOT\dllfile\Shell\UnRegister\command]
@="regsvr32.exe /u \"%1\""


// .OCX files
[HKEY_CLASSES_ROOT\.ocx]
@="ocxfile"

[HKEY_CLASSES_ROOT\ocxfile]
@="App Extension"

[HKEY_CLASSES_ROOT\ocxfile\Shell\Register\command]
@="regsvr32.exe \"%1\""

[HKEY_CLASSES_ROOT\ocxfile\Shell\UnRegister\command]
@="regsvr32.exe /u \"%1\""

Save it as whatever.reg and then doubble click to enter the info into your registry. Then you can register and unregister dll's and ocx's just by right clicking on them