图像通过File_put_contents保存自定义高度和宽度

时间:2013-12-10 19:54:32

标签: php image-resizing

如何将内容放入png图像的高度和宽度我的意思是我使用的是php函数file_put_contents。我需要这个文件保存时比这个Png图像的高度和宽度应该是200px。检查我的代码是什么我已经完成了。

PHP

<?php
     $fname = "orderimages/firstName[".$_POST['getfirstname']."]";
     $finalfilef =$fname."/front_side.png";
     if((isset($_POST['frontval'])) && (isset($_POST['getfirstname']))){
     if(!is_dir($fname)){
         mkdir($fname, 0777 ,true);
      }
         $filteredDataf=substr($_POST['frontval'], strpos($_POST['frontval'], ",")+1);
         //Decode the string
         $unencodedDataf=base64_decode($filteredDataf);
         file_put_contents($finalfilef, $unencodedDataf);
     }

      else {}
?>

0 个答案:

没有答案