Difference between revisions of "Konversi image - hexa"
Jump to navigation
Jump to search
(Created page with " xxd -p wallpaper.jpg > image.txt xxd -plain image.txt > image.hex xxd -r -p image.txt image.jpg ===Referensi=== * https://superuser.com/questions/279548/how-to-convert-fi...") |
|||
Line 1: | Line 1: | ||
+ | Membuat hexa dari image | ||
xxd -p wallpaper.jpg > image.txt | xxd -p wallpaper.jpg > image.txt | ||
xxd -plain image.txt > image.hex | xxd -plain image.txt > image.hex | ||
+ | |||
+ | Mengembalikan image dari hexa | ||
xxd -r -p image.txt image.jpg | xxd -r -p image.txt image.jpg | ||
Revision as of 13:03, 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