Quantcast
Channel: amitmondal
Viewing all articles
Browse latest Browse all 10

Conversion Of Binary Data To Image File In PHP

$
0
0

< ?php
$con=file_get_contents(“tkdown.gif”);
$en=base64_encode($con);
$mime=’image/gif’;
$binary_data=’data:’ . $mime . ‘;base64,’ . $en ;
? >

<img src=”<?php echo $binary_data; ?>” alt=”Test”>



Viewing all articles
Browse latest Browse all 10

Trending Articles