Difference between revisions of "Konversi image - hexa"
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
xxd -r -p image.txt image.jpg | xxd -r -p image.txt image.jpg | ||
+ | |||
+ | ===Pranala Menarik=== | ||
+ | * [[Digital Forensics]] | ||
===Referensi=== | ===Referensi=== | ||
* https://superuser.com/questions/279548/how-to-convert-file-data-to-plain-hex | * https://superuser.com/questions/279548/how-to-convert-file-data-to-plain-hex | ||
* https://askubuntu.com/questions/397187/how-to-converting-hex-jpg-to-bin-jpg | * https://askubuntu.com/questions/397187/how-to-converting-hex-jpg-to-bin-jpg |
Latest revision as of 13:32, 27 March 2024
Membuat hexa dari image
xxd -p wallpaper.jpg > image.txt xxd -plain image.txt > image.hex
Mengembalikan image dari hexa
xxd -r -p image.txt image.jpg