예제 #1
0
파일: Img.php 프로젝트: Neilgle/Phplib
function testToBase64()
{
    $file = "../src/img/logo.png";
    $img = new Img($file);
    $data = $img->ToBase64();
    echo "<img src='" . $data . "'>";
}