Reverse Engineering old paint programs

前端 未结 2 785
天涯浪人
天涯浪人 2020-12-16 16:33

I\'ve got a couple of really old MSDos based paint programs. They work on palette indexed image buffers. They have a number of spectacular shape drawing tools, brushes and e

相关标签:
2条回答
  • 2020-12-16 17:22

    IDA Pro handles nearly any binary, and is the gold standard for this kind of work, though contacting the author may prove helpful as well.

    0 讨论(0)
  • 2020-12-16 17:22

    If you can convince the author to open source some or all of the program, that's the best method.

    Beyond that, disassembly and debugging are going to be your friends. In some cases you may be able to decompile a piece of software if you know what it was compiled with originally. But disassemble it, and run it in a debugger to find the overarching structure, and look for the obvious functions that do the actual brush work.

    It may seem daunting at first, but after some time you'll find it's surprisingly understandable.

    -Adam

    0 讨论(0)
提交回复
热议问题