PHP resize image & store in BLOB & access though base64_encode

687 Views Asked by At

On image upload , I want to resize image to 400 X 400 ratio. I have used GD library code as :

$profilePicture = $_FILES['imgProfilePicture']['tmp_name'];     
                // Get new dimensions
        list($width_orig, $height_orig, $type) = getimagesize($profilePicture);
        $ratio_orig = $width_orig/$height_orig;

        if ($intWidth/$intHeigth > $ratio_orig) {
        $intWidth = $intHeigth*$ratio_orig;
        } else {
        $intHeigth = $intWidth/$ratio_orig;
        }

        // Resample
         $thumb = imagecreate($intWidth, $intHeigth); 
        ob_start();
        $extension = image_type_to_extension($type); 
        if($extension == ".jpg" OR $extension=='.jpeg'){  
                  $source = ImageCreateFromJpeg($profilePicture); 
                  $newImage = imagejpeg($thumb, null, 9); 
                  }elseif ($extension == ".gif"){ 
                  $source = ImageCreateFromGIF($profilePicture); 
                  $newImage = imagegif($thumb, null, 9); 
                  }elseif ($extension == '.png'){
                   $source = imageCreateFromPNG($profilePicture);
                   $newImage = imagepng($thumb, null, 9); 
                  }                        

        imagecopyresized($thumb, $source, 0, 0, 0, 0, $intWidth, $intHeigth, $width_orig, $height_orig);

        $stream = ob_get_clean();
        $imgProfilePicture =  file_get_contents($stream);
        $sql="update `".$doctorTableName."` set`imgProfilePicture`='".$imgProfilePicture."' where id='".$id."'";            
        $wpdb->query($sql);

& I have shown image using this code :

  <img width="70" height="70" src="data:image/jpeg;base64, '.base64_encode($doctor->imgProfilePicture).'  "/>

But I am getting error as : Warning: file_get_contents() expects parameter 1 to be a valid path, string given

1

There are 1 best solutions below

0
On

I got a code for this on this link under user contributions scaleImageFileToBlob()

 http://php.net/manual/en/function.imagejpeg.php