Posts by Gouveia • 1 point
1 post
-
0
votes2
answers773
viewsQ: PHP / Codeigniter - How to convert image to byte array?
I want to record here my solution to this problem. $data = file_get_contents("/ImagePath/Image.jpg"); $array = array(); foreach(str_split($data) as $char){ array_push($array, ord($char)); }…