Im a reading a bitmap from a file using
fp = fopen("\\custph oto.bmp","rb");
when i trace the data being sent it wil be like:
"ÿØÿà JFIFÿÛ C
(1#% (:3=<9387@H\N@ DWE78PmQW_bghg> Mqypdx\egcÿÛ C//cB8Bccccccccccc ccccccccccccccc ccccccc"
i want to send this picture to a server which only accepts hex values,
my question is How do i convert those funny characters to hex equivalance?
thanks in advance.
fp = fopen("\\custph oto.bmp","rb");
when i trace the data being sent it wil be like:
"ÿØÿà JFIFÿÛ C
(1#% (:3=<9387@H\N@ DWE78PmQW_bghg> Mqypdx\egcÿÛ C//cB8Bccccccccccc ccccccccccccccc ccccccc"
i want to send this picture to a server which only accepts hex values,
my question is How do i convert those funny characters to hex equivalance?
thanks in advance.
Comment