Reverse Engineering old paint programs

前端 未结 2 789
天涯浪人
天涯浪人 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条回答
  •  萌比男神i
    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

提交回复
热议问题