Hello,
I am reading binary in from a graphic file and storing it in a Byte Array and rewriting the binary data to a text file. Give that the bytes look something like:
ff ff f3 34 00 00 a3 f4
00 00 d3 a2 ff ff f2 ad
I am trying to capture four bytes at a time, place them into a variable and convert them into a readable value in Decimal using h = Val("&H" & someVariable). I then want to store these values into a separate text file to use to construct a transparent layer over the graphic (the above hex values are coordinates). Could anyone give me any ideas on how to start this project? Thank you so much.
I am reading binary in from a graphic file and storing it in a Byte Array and rewriting the binary data to a text file. Give that the bytes look something like:
ff ff f3 34 00 00 a3 f4
00 00 d3 a2 ff ff f2 ad
I am trying to capture four bytes at a time, place them into a variable and convert them into a readable value in Decimal using h = Val("&H" & someVariable). I then want to store these values into a separate text file to use to construct a transparent layer over the graphic (the above hex values are coordinates). Could anyone give me any ideas on how to start this project? Thank you so much.
Comment