Apr 7, 2007 #1 Marvel Junior Spellweaver 10 Happy Years Joined Sep 6, 2006 Messages 102 Reaction score 59 Location 54.687, 25.284 Which program can convert .jpg files to code like "0A544A504547496D6167654B330000FFD8FFE..." (hex editors don't work) I just want to change picture in this launcher. I know about global launcher but I want this one. Attachments launcher.webp 12.4 KB · Views: 54
Which program can convert .jpg files to code like "0A544A504547496D6167654B330000FFD8FFE..." (hex editors don't work) I just want to change picture in this launcher. I know about global launcher but I want this one.
Apr 7, 2007 #2 DeathArt Arrogant Wizard 500 Posts 10 Happy Years Joined Mar 30, 2007 Messages 745 Reaction score 35 Location Stockholm Well, the format is hex, perhaps you could use PHP ? PHP: <?php $image = file_get_contents('mylauncher.jpg'); echo bin2hex($image); ?> Should provide you somewhat what you wish I think. Upvote 0
Well, the format is hex, perhaps you could use PHP ? PHP: <?php $image = file_get_contents('mylauncher.jpg'); echo bin2hex($image); ?> Should provide you somewhat what you wish I think.