Advertisement
MrPaan

Steganography

Dec 5th, 2013
463
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.41 KB | None | 0 0
  1. @echo off
  2. title Embed Text To Image
  3. echo You Must Have .png and .txt in same directory
  4. echo Put at Desktop
  5. echo This Called Stegay,not Stega
  6. echo Click any key
  7. pause
  8. echo Put The Image Name File(dud.png)
  9. set /p image=Image:
  10. pause
  11. echo Put The Text Name File(text.txt)
  12. set /p text=Text:
  13. pause
  14. echo Put The Image That Will Compile With Text
  15. set /p output=Image:
  16. pause
  17. cls
  18. @copy /b %image% + %text% %output%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement