I am trying to generate an image using base64_decode
with png extension, but generated png image is wrong, it is showing "invalid image".
my code is below
$base_64 = $this->input->post('base_64');
$decoded_base_64 = base64_decode($base_64);
$result = file_put_contents('directory/toSaveImage/' . $id . '.png', $decoded_base_64);
While searching for the solution i also tried adding before the $result variable.
header("Content-type: image/png");
I also did try this line though
$decoded_base_64 = base64_decode(base64_encode($base_64));
Can anyone please help me?