PHP में छवि का आकार बदलें


96

मैं कुछ PHP कोड लिखना चाहता हूं जो स्वचालित रूप से 147x147px के माध्यम से अपलोड की गई किसी भी छवि को आकार देता है, लेकिन मुझे नहीं पता कि इसके बारे में कैसे जाना है (मैं एक रिश्तेदार PHP नौसिखिया हूं)।

अब तक, मुझे छवियां सफलतापूर्वक अपलोड हो रही हैं, फ़िल्टिप्स को पहचाना जा रहा है और नाम साफ़ हो गए हैं, लेकिन मैं कोड में आकार की कार्यक्षमता जोड़ना चाहूंगा। उदाहरण के लिए, मुझे एक परीक्षण छवि मिली है जो 2.3MB, और 1331x1331 आयाम में है, और मैं इसे आकार देने के लिए कोड चाहूंगा, जो मुझे अनुमान है कि नाटकीय रूप से छवि की फ़ाइलों को संक्षिप्त कर देगा।

अब तक, मुझे निम्नलिखित मिला है:

if ($_FILES) {
                //Put file properties into variables
                $file_name = $_FILES['profile-image']['name'];
                $file_size = $_FILES['profile-image']['size'];
                $file_tmp_name = $_FILES['profile-image']['tmp_name'];

                //Determine filetype
                switch ($_FILES['profile-image']['type']) {
                    case 'image/jpeg': $ext = "jpg"; break;
                    case 'image/png': $ext = "png"; break;
                    default: $ext = ''; break;
                }

                if ($ext) {
                    //Check filesize
                    if ($file_size < 500000) {
                        //Process file - clean up filename and move to safe location
                        $n = "$file_name";
                        $n = ereg_replace("[^A-Za-z0-9.]", "", $n);
                        $n = strtolower($n);
                        $n = "avatars/$n";
                        move_uploaded_file($file_tmp_name, $n);
                    } else {
                        $bad_message = "Please ensure your chosen file is less than 5MB.";
                    }
                } else {
                    $bad_message = "Please ensure your image is of filetype .jpg or.png.";
                }
            }
$query = "INSERT INTO users (image) VALUES ('$n')";
mysql_query($query) or die("Insert failed. " . mysql_error() . "<br />" . $query);

क्या आपने इन स्टैकओवरफ्लो को पसंद करने के लिए नमूने लेने की कोशिश की है ।questions/10029838/image-resize-with- php ?
कोइनी रिचर्ड्स

बदले बिना upload_max_filesizeमें php.ini, सबसे पहले यह संभव आकार की फ़ाइल की तुलना में अधिक अपलोड करने के लिए है upload_max_filesize?। क्या आकार से अधिक की छवि को आकार देने का कोई मौका है upload_max_filesize? बदले बिना upload_max_filesizeमेंphp.ini
आरसीएच

जवाबों:


143

आपको छवियों के साथ काम करने के लिए PHP के ImageMagick या GD फ़ंक्शन का उपयोग करने की आवश्यकता है ।

जीडी के साथ, उदाहरण के लिए, यह उतना ही सरल है ...

function resize_image($file, $w, $h, $crop=FALSE) {
    list($width, $height) = getimagesize($file);
    $r = $width / $height;
    if ($crop) {
        if ($width > $height) {
            $width = ceil($width-($width*abs($r-$w/$h)));
        } else {
            $height = ceil($height-($height*abs($r-$w/$h)));
        }
        $newwidth = $w;
        $newheight = $h;
    } else {
        if ($w/$h > $r) {
            $newwidth = $h*$r;
            $newheight = $h;
        } else {
            $newheight = $w/$r;
            $newwidth = $w;
        }
    }
    $src = imagecreatefromjpeg($file);
    $dst = imagecreatetruecolor($newwidth, $newheight);
    imagecopyresampled($dst, $src, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);

    return $dst;
}

और आप इस फ़ंक्शन को कॉल कर सकते हैं, जैसे ...

$img = resize_image(‘/path/to/some/image.jpg’, 200, 200);

व्यक्तिगत अनुभव से, जीडी की छवि को फिर से खोलना नाटकीय रूप से फ़ाइल आकार को कम करता है, खासकर जब कच्चे डिजिटल कैमरा छवियों को फिर से खोलना।


1
क्या आप छवियों को स्टोर कर रहे हैं BLOB? मैं फ़ाइल सिस्टम में चित्र संग्रहीत करने और आपके डेटाबेस में संदर्भ सम्मिलित करने की सलाह दूंगा। मैं यह देखने के लिए कि आपके पास और क्या विकल्प उपलब्ध हैं, यह देखने के लिए पूर्ण GD (या ImageMagick) प्रलेखन पढ़ने की सलाह देते हैं।
इयान एटकिन

20
ध्यान दें, यह समाधान केवल JPEG के लिए काम करता है। आप निम्न में से किसी एक के साथ Imagecreatefromjpeg को प्रतिस्थापित कर सकते हैं: अलग-अलग छवि प्रकारों से निपटने के लिए imagecreatefromgd, imagecreatefromgif, imagecreatefrompng, imagecreatefromstring, imagecreatefromwbmp, imagecreatefromxbm, imagecreatefromxpm।
क्रिस हैनसन

2
@GordonFreeman महान कोड स्निपेट के लिए धन्यवाद, लेकिन वहाँ एक गड़बड़ है, जोड़ abs(), पसंद ceil($width-($width*abs($r-$w/$h)))और ऊंचाई वाले हिस्से के समान। यह कुछ मामलों के लिए आवश्यक है।
अरमान पी।

1
डिफ़ॉल्ट फसल के मूल्य को सच में बदलना, और छवि http://wallpapercave.com/wp/wc1701171.jpgको 400x128 (बैनर) में बदलकर एक काली छवि बनाई गई; मैं यह पता नहीं लगा सकता कि यह ऐसा क्यों कर रहा है।
फॉक्सइन्फ्लेम

5
फाइल सिस्टम में रिसाइज्ड इमेज को सेव करने के लिए लाइन के imagejpeg($dst, $file);बाद ऐड करें imagecopyresampled($dst,...$fileयदि आप मूल को अधिलेखित नहीं करना चाहते हैं तो बदलें ।
विकिल

23

यह संसाधन (टूटी लिंक) भी विचार करने योग्य है - कुछ बहुत ही सुव्यवस्थित कोड जो GD का उपयोग करते हैं। हालाँकि, मैंने इस फ़ंक्शन को बनाने के लिए उनके अंतिम कोड स्निपेट को संशोधित किया, जो ओपी आवश्यकताओं को पूरा करता है ...

function store_uploaded_image($html_element_name, $new_img_width, $new_img_height) {
    
    $target_dir = "your-uploaded-images-folder/";
    $target_file = $target_dir . basename($_FILES[$html_element_name]["name"]);
    
    $image = new SimpleImage();
    $image->load($_FILES[$html_element_name]['tmp_name']);
    $image->resize($new_img_width, $new_img_height);
    $image->save($target_file);
    return $target_file; //return name of saved file in case you want to store it in you database or show confirmation message to user
    
}

आपको इस PHP फ़ाइल को भी शामिल करना होगा ...

<?php
 
/*
* File: SimpleImage.php
* Author: Simon Jarvis
* Copyright: 2006 Simon Jarvis
* Date: 08/11/06
* Link: http://www.white-hat-web-design.co.uk/blog/resizing-images-with-php/
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details:
* http://www.gnu.org/licenses/gpl.html
*
*/
 
class SimpleImage {
 
   var $image;
   var $image_type;
 
   function load($filename) {
 
      $image_info = getimagesize($filename);
      $this->image_type = $image_info[2];
      if( $this->image_type == IMAGETYPE_JPEG ) {
 
         $this->image = imagecreatefromjpeg($filename);
      } elseif( $this->image_type == IMAGETYPE_GIF ) {
 
         $this->image = imagecreatefromgif($filename);
      } elseif( $this->image_type == IMAGETYPE_PNG ) {
 
         $this->image = imagecreatefrompng($filename);
      }
   }
   function save($filename, $image_type=IMAGETYPE_JPEG, $compression=75, $permissions=null) {
 
      if( $image_type == IMAGETYPE_JPEG ) {
         imagejpeg($this->image,$filename,$compression);
      } elseif( $image_type == IMAGETYPE_GIF ) {
 
         imagegif($this->image,$filename);
      } elseif( $image_type == IMAGETYPE_PNG ) {
 
         imagepng($this->image,$filename);
      }
      if( $permissions != null) {
 
         chmod($filename,$permissions);
      }
   }
   function output($image_type=IMAGETYPE_JPEG) {
 
      if( $image_type == IMAGETYPE_JPEG ) {
         imagejpeg($this->image);
      } elseif( $image_type == IMAGETYPE_GIF ) {
 
         imagegif($this->image);
      } elseif( $image_type == IMAGETYPE_PNG ) {
 
         imagepng($this->image);
      }
   }
   function getWidth() {
 
      return imagesx($this->image);
   }
   function getHeight() {
 
      return imagesy($this->image);
   }
   function resizeToHeight($height) {
 
      $ratio = $height / $this->getHeight();
      $width = $this->getWidth() * $ratio;
      $this->resize($width,$height);
   }
 
   function resizeToWidth($width) {
      $ratio = $width / $this->getWidth();
      $height = $this->getheight() * $ratio;
      $this->resize($width,$height);
   }
 
   function scale($scale) {
      $width = $this->getWidth() * $scale/100;
      $height = $this->getheight() * $scale/100;
      $this->resize($width,$height);
   }
 
   function resize($width,$height) {
      $new_image = imagecreatetruecolor($width, $height);
      imagecopyresampled($new_image, $this->image, 0, 0, 0, 0, $width, $height, $this->getWidth(), $this->getHeight());
      $this->image = $new_image;
   }      
 
}
?>

1
आपका नमूना सबसे अच्छा है। यह कॉमेडी, ड्रामा, हेयर पुलिंग के बिना सीधे Zend फ्रेमवर्क में काम करता है। अंगूठे ऊपर

मुझे लगता है कि आपके लिए आवश्यक सभी कोड मेरे उत्तर में होने चाहिए, लेकिन यह भी मदद कर सकता है: gist.github.com/arrowmedia/7863973
प्रतिबंध-जियोइंजीनियरिंग

20

सरल उपयोग PHP समारोह ( चित्र ):

वाक्य - विन्यास:

imagescale ( $image , $new_width , $new_height )

उदाहरण:

चरण: 1 फ़ाइल पढ़ें

$image_name =  'path_of_Image/Name_of_Image.jpg|png';      

चरण: 2: छवि फ़ाइल लोड करें

 $image = imagecreatefromjpeg($image_name); // For JPEG
//or
 $image = imagecreatefrompng($image_name);   // For PNG

चरण: 3: हमारा जीवन-रक्षक '_' में आता है छवि को स्केल करें

   $imgResized = imagescale($image , 500, 400); // width=500 and height = 400
//  $imgResized is our final product

नोट: imagescale (PHP 5> = 5.5.0, PHP 7) के लिए काम करेगा

स्रोत: अधिक पढ़ने के लिए क्लिक करें


PHP 5.6.3 के लिए सबसे अच्छा समाधान>
पेटीकेक जूनियर

12

यदि आप पहलू राशन के बारे में परवाह नहीं करते (यानी आप छवि को एक विशेष आयाम के लिए मजबूर करना चाहते हैं), तो यहां एक सरल जवाब है

// for jpg 
function resize_imagejpg($file, $w, $h) {
   list($width, $height) = getimagesize($file);
   $src = imagecreatefromjpeg($file);
   $dst = imagecreatetruecolor($w, $h);
   imagecopyresampled($dst, $src, 0, 0, 0, 0, $w, $h, $width, $height);
   return $dst;
}

 // for png
function resize_imagepng($file, $w, $h) {
   list($width, $height) = getimagesize($file);
   $src = imagecreatefrompng($file);
   $dst = imagecreatetruecolor($w, $h);
   imagecopyresampled($dst, $src, 0, 0, 0, 0, $w, $h, $width, $height);
   return $dst;
}

// for gif
function resize_imagegif($file, $w, $h) {
   list($width, $height) = getimagesize($file);
   $src = imagecreatefromgif($file);
   $dst = imagecreatetruecolor($w, $h);
   imagecopyresampled($dst, $src, 0, 0, 0, 0, $w, $h, $width, $height);
   return $dst;
}

अब अपलोड भाग को संभालते हैं। पहला कदम, फ़ाइल को अपनी इच्छित निर्देशिका में अपलोड करें। फिर फ़ाइल प्रकार (jpg, png या gif) के आधार पर उपरोक्त कार्यों में से एक को बुलाया और अपनी अपलोड की गई फ़ाइल का पूर्ण पथ निम्नानुसार पास करें:

 // jpg  change the dimension 750, 450 to your desired values
 $img = resize_imagejpg('path/image.jpg', 750, 450);

वापसी मान $imgएक संसाधन ऑब्जेक्ट है। हम एक नए स्थान पर सहेज सकते हैं या नीचे दिए गए मूल को ओवरराइड कर सकते हैं:

 // again for jpg
 imagejpeg($img, 'path/newimage.jpg');

आशा है कि यह किसी की मदद करता है। इमेजिस :: रिसाइजइमेज और इमेजजप्रेस () के आकार बदलने के लिए इन लिंक की जाँच करें


बदले बिना upload_max_filesizeमें php.ini, सबसे पहले आप आकार की फ़ाइल की तुलना में अधिक अपलोड नहीं कर सकते upload_max_filesize। वहाँ आकार की छवि की तुलना में अधिक आकार बदलने के लिए कोई मौका है upload_max_filesizeबदले बिना upload_max_filesizeमेंphp.ini
आरसीएच

6

मुझे उम्मीद है कि आप के लिए काम करेंगे।

/**
         * Image re-size
         * @param int $width
         * @param int $height
         */
        function ImageResize($width, $height, $img_name)
        {
                /* Get original file size */
                list($w, $h) = getimagesize($_FILES['logo_image']['tmp_name']);


                /*$ratio = $w / $h;
                $size = $width;

                $width = $height = min($size, max($w, $h));

                if ($ratio < 1) {
                    $width = $height * $ratio;
                } else {
                    $height = $width / $ratio;
                }*/

                /* Calculate new image size */
                $ratio = max($width/$w, $height/$h);
                $h = ceil($height / $ratio);
                $x = ($w - $width / $ratio) / 2;
                $w = ceil($width / $ratio);
                /* set new file name */
                $path = $img_name;


                /* Save image */
                if($_FILES['logo_image']['type']=='image/jpeg')
                {
                    /* Get binary data from image */
                    $imgString = file_get_contents($_FILES['logo_image']['tmp_name']);
                    /* create image from string */
                    $image = imagecreatefromstring($imgString);
                    $tmp = imagecreatetruecolor($width, $height);
                    imagecopyresampled($tmp, $image, 0, 0, $x, 0, $width, $height, $w, $h);
                    imagejpeg($tmp, $path, 100);
                }
                else if($_FILES['logo_image']['type']=='image/png')
                {
                    $image = imagecreatefrompng($_FILES['logo_image']['tmp_name']);
                    $tmp = imagecreatetruecolor($width,$height);
                    imagealphablending($tmp, false);
                    imagesavealpha($tmp, true);
                    imagecopyresampled($tmp, $image,0,0,$x,0,$width,$height,$w, $h);
                    imagepng($tmp, $path, 0);
                }
                else if($_FILES['logo_image']['type']=='image/gif')
                {
                    $image = imagecreatefromgif($_FILES['logo_image']['tmp_name']);

                    $tmp = imagecreatetruecolor($width,$height);
                    $transparent = imagecolorallocatealpha($tmp, 0, 0, 0, 127);
                    imagefill($tmp, 0, 0, $transparent);
                    imagealphablending($tmp, true); 

                    imagecopyresampled($tmp, $image,0,0,0,0,$width,$height,$w, $h);
                    imagegif($tmp, $path);
                }
                else
                {
                    return false;
                }

                return true;
                imagedestroy($image);
                imagedestroy($tmp);
        }

6

मैंने छवि आकार बदलने के लिए एक आसान-से-उपयोग की जाने वाली लाइब्रेरी बनाई। यह यहाँ Github पर पाया जा सकता है

पुस्तकालय का उपयोग कैसे करें का एक उदाहरण:

// Include PHP Image Magician library
require_once('php_image_magician.php');

// Open JPG image
$magicianObj = new imageLib('racecar.jpg');

// Resize to best fit then crop (check out the other options)
$magicianObj -> resizeImage(100, 200, 'crop');

// Save resized image as a PNG (or jpg, bmp, etc)
$magicianObj -> saveImage('racecar_small.png');

अन्य विशेषताएं, आपको उनकी आवश्यकता होनी चाहिए, ये हैं:

  • त्वरित और आसान आकार - परिदृश्य, चित्र या ऑटो का आकार बदलें
  • आसान फसल
  • शब्द जोड़ें
  • गुणवत्ता समायोजन
  • वॉटरमार्किंग
  • छाया और प्रतिबिंब
  • पारदर्शिता का समर्थन
  • EXIF मेटाडेटा पढ़ें
  • सीमाओं, गोल कोनों, रोटेशन
  • फिल्टर और प्रभाव
  • छवि तेज करना
  • छवि प्रकार रूपांतरण
  • बीएमपी समर्थन

1
इससे मेरा दिन बच गया। हालाँकि, मेरे पास एक छोटा सा नोटिस है जो मेरे जैसे 3 दिनों के लिए खोज रहा था और किसी भी आकार बदलने वाले समाधान को खोजने के लिए आशा खो देने वाला था। यदि आप भविष्य में अपरिभाषित सूचकांक नोटिस देखते हैं, तो बस इस लिंक को देखें: github.com/Oberto/php-image-magician/pull/16/commits और फ़ाइलों में परिवर्तन लागू करें। यह बिना किसी समस्या के 100% काम करेगा।
हेमा_इस्लामी

2
अरे, @ हेमा_लामश्री। FYI करें, मैंने अभी उन बदलावों को मुख्य में मिला दिया है :)
जारोद

ठीक है, माफ करना, मैंने नोटिस नहीं किया। लेकिन मेरा एक सवाल है। जब मैं गुणवत्ता के साथ छोटे रिज़ॉल्यूशन में परिवर्तन नहीं करता, तो प्रदर्शित छवि गुणवत्ता बहुत कम होती है। क्या आपके साथ भी कुछ ऐसा ही हुआ है? क्योंकि मुझे अभी भी कोई हल नहीं मिला।
हेमा_ एलास्म्री

6

( महत्वपूर्ण : एनीमेशन (एनिमेटेड वेबप या जिफ़) आकार बदलने के मामले में, परिणाम एक एनिमेटेड नहीं होगा, लेकिन पहले फ्रेम से छवि का आकार बदल जाएगा! (मूल एनीमेशन बरकरार है ...)

मैंने इसे अपने php 7.2 प्रोजेक्ट के लिए बनाया है (उदाहरण के लिए इमेजबंप सुनिश्चित (PHP 7> = 7.2.0): php / मैन्युअल / function.imagebmp ) के बारे में techfry.com/php-tutorial , GD2 के साथ, (इसलिए कुछ भी नहीं 3 जी लाइब्रेरी) और निको बिस्टोल्फी के उत्तर के समान, लेकिन सभी पांच बुनियादी छवि mimetype ( पीएनजी, जेपीईजी, वेबप, बीएमपी और जीआईएफ) के साथ काम करता है ) के आकार को संशोधित किए बिना, एक नई resized फ़ाइल एक फ़ंक्शन में सभी सामान और उपयोग करने के लिए तैयार (कॉपी और पेस्ट अपने प्रोजेक्ट के लिए)। (आप पांचवें पैरामीटर के साथ नई फ़ाइल का एक्सटेंशन सेट कर सकते हैं, या बस इसे छोड़ सकते हैं, यदि आप चाहते हैं कि ओरिजिनल रखें):

function createResizedImage(
    string $imagePath = '',
    string $newPath = '',
    int $newWidth = 0,
    int $newHeight = 0,
    string $outExt = 'DEFAULT'
) : ?string
{
    if (!$newPath or !file_exists ($imagePath)) {
        return null;
    }

    $types = [IMAGETYPE_JPEG, IMAGETYPE_PNG, IMAGETYPE_GIF, IMAGETYPE_BMP, IMAGETYPE_WEBP];
    $type = exif_imagetype ($imagePath);

    if (!in_array ($type, $types)) {
        return null;
    }

    list ($width, $height) = getimagesize ($imagePath);

    $outBool = in_array ($outExt, ['jpg', 'jpeg', 'png', 'gif', 'bmp', 'webp']);

    switch ($type) {
        case IMAGETYPE_JPEG:
            $image = imagecreatefromjpeg ($imagePath);
            if (!$outBool) $outExt = 'jpg';
            break;
        case IMAGETYPE_PNG:
            $image = imagecreatefrompng ($imagePath);
            if (!$outBool) $outExt = 'png';
            break;
        case IMAGETYPE_GIF:
            $image = imagecreatefromgif ($imagePath);
            if (!$outBool) $outExt = 'gif';
            break;
        case IMAGETYPE_BMP:
            $image = imagecreatefrombmp ($imagePath);
            if (!$outBool) $outExt = 'bmp';
            break;
        case IMAGETYPE_WEBP:
            $image = imagecreatefromwebp ($imagePath);
            if (!$outBool) $outExt = 'webp';
    }

    $newImage = imagecreatetruecolor ($newWidth, $newHeight);

    //TRANSPARENT BACKGROUND
    $color = imagecolorallocatealpha ($newImage, 0, 0, 0, 127); //fill transparent back
    imagefill ($newImage, 0, 0, $color);
    imagesavealpha ($newImage, true);

    //ROUTINE
    imagecopyresampled ($newImage, $image, 0, 0, 0, 0, $newWidth, $newHeight, $width, $height);

    // Rotate image on iOS
    if(function_exists('exif_read_data') && $exif = exif_read_data($imagePath, 'IFD0'))
    {
        if(isset($exif['Orientation']) && isset($exif['Make']) && !empty($exif['Orientation']) && preg_match('/(apple|ios|iphone)/i', $exif['Make'])) {
            switch($exif['Orientation']) {
                case 8:
                    if ($width > $height) $newImage = imagerotate($newImage,90,0);
                    break;
                case 3:
                    $newImage = imagerotate($newImage,180,0);
                    break;
                case 6:
                    $newImage = imagerotate($newImage,-90,0);
                    break;
            }
        }
    }

    switch (true) {
        case in_array ($outExt, ['jpg', 'jpeg']): $success = imagejpeg ($newImage, $newPath);
            break;
        case $outExt === 'png': $success = imagepng ($newImage, $newPath);
            break;
        case $outExt === 'gif': $success = imagegif ($newImage, $newPath);
            break;
        case  $outExt === 'bmp': $success = imagebmp ($newImage, $newPath);
            break;
        case  $outExt === 'webp': $success = imagewebp ($newImage, $newPath);
    }

    if (!$success) {
        return null;
    }

    return $newPath;
}

तुम महान हो! यह सरल और साफ समाधान है। मेरे पास इमेजिक मॉड्यूल के साथ समस्या थी और इस सरल वर्ग के साथ समस्याओं को हल करना। धन्यवाद!
इविज़न स्टीफन स्टिपिक जूल

महान, यदि आप चाहते हैं कि मैं बाद में एक और अपडेट जोड़ सकता हूं, तो मैं इसे थोड़ा सुधारता हूं।
इविजन स्टीफन स्टिपिक जूल

ज़रूर! मुझे अभी भी एनीमेशन का हिस्सा बनने का समय नहीं मिला है ...
danigore

@danigore, कच्ची छवियों ( .cr2, .dng, .nefऔर पसंद) का आकार बदलने के लिए कैसे ? GD2 का कोई समर्थन नहीं है और बहुत संघर्ष के बाद, मैं ImageMagick सेटअप करने में सक्षम था। लेकिन, यह फ़ाइल को पढ़ते समय कनेक्शन टाइम आउट त्रुटि के साथ विफल हो जाता है। और, कोई त्रुटि लॉग भी नहीं है ..
कृष्णा चेब्रोलु

1
@danigore मैं Apple फ़ंक्शन को ठीक करने के लिए आपके फ़ंक्शन को स्वचालित छवि रोटेशन में जोड़ता हूं।
इविज़न स्टीफन स्टिपिक

2

यहाँ @Ian Atkin द्वारा दिए गए उत्तर का एक विस्तारित संस्करण है। मैंने पाया कि यह बहुत अच्छी तरह से काम किया है। बड़ी छवियों के लिए जो :) है। यदि आप सावधान नहीं हैं तो आप वास्तव में छोटी छवियों को बड़ा बना सकते हैं। परिवर्तन: - jpg, jpeg, png, gif, bmp फाइल्स को सपोर्ट करता है - .png और .gif के लिए पारदर्शिता को बरकरार रखता है - यदि मूल isnt का आकार पहले से छोटा है तो डबल चेक करता है - सीधे दी गई छवि को ओवरराइड करता है (इसकी मुझे आवश्यकता है)

तो यहाँ है। फ़ंक्शन के डिफ़ॉल्ट मान "गोल्डन नियम" हैं

function resize_image($file, $w = 1200, $h = 741, $crop = false)
   {
       try {
           $ext = pathinfo(storage_path() . $file, PATHINFO_EXTENSION);
           list($width, $height) = getimagesize($file);
           // if the image is smaller we dont resize
           if ($w > $width && $h > $height) {
               return true;
           }
           $r = $width / $height;
           if ($crop) {
               if ($width > $height) {
                   $width = ceil($width - ($width * abs($r - $w / $h)));
               } else {
                   $height = ceil($height - ($height * abs($r - $w / $h)));
               }
               $newwidth = $w;
               $newheight = $h;
           } else {
               if ($w / $h > $r) {
                   $newwidth = $h * $r;
                   $newheight = $h;
               } else {
                   $newheight = $w / $r;
                   $newwidth = $w;
               }
           }
           $dst = imagecreatetruecolor($newwidth, $newheight);

           switch ($ext) {
               case 'jpg':
               case 'jpeg':
                   $src = imagecreatefromjpeg($file);
                   break;
               case 'png':
                   $src = imagecreatefrompng($file);
                   imagecolortransparent($dst, imagecolorallocatealpha($dst, 0, 0, 0, 127));
                   imagealphablending($dst, false);
                   imagesavealpha($dst, true);
                   break;
               case 'gif':
                   $src = imagecreatefromgif($file);
                   imagecolortransparent($dst, imagecolorallocatealpha($dst, 0, 0, 0, 127));
                   imagealphablending($dst, false);
                   imagesavealpha($dst, true);
                   break;
               case 'bmp':
                   $src = imagecreatefrombmp($file);
                   break;
               default:
                   throw new Exception('Unsupported image extension found: ' . $ext);
                   break;
           }
           $result = imagecopyresampled($dst, $src, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
           switch ($ext) {
               case 'bmp':
                   imagewbmp($dst, $file);
                   break;
               case 'gif':
                   imagegif($dst, $file);
                   break;
               case 'jpg':
               case 'jpeg':
                   imagejpeg($dst, $file);
                   break;
               case 'png':
                   imagepng($dst, $file);
                   break;
           }
           return true;
       } catch (Exception $err) {
           // LOG THE ERROR HERE 
           return false;
       }
   }

महान कार्य @DanielDoinov - इसे पोस्ट करने के लिए धन्यवाद - त्वरित प्रश्न: क्या केवल चौड़ाई पास करने का एक तरीका है और फ़ंक्शन को मूल छवि के आधार पर ऊंचाई को अपेक्षाकृत समायोजित करने दें? दूसरे शब्दों में, यदि मूल 400x200 है, तो क्या हम फ़ंक्शन को बता सकते हैं कि हम नई चौड़ाई 200 चाहते हैं और फ़ंक्शन को यह पता लगाने दें कि ऊंचाई 100 होनी चाहिए?
marcnyc

आपकी सशर्त अभिव्यक्ति के बारे में, मुझे नहीं लगता कि यह आकार देने की तकनीक को निष्पादित करने के लिए समझ में आता है अगर $w === $width && $h === $height। इसके बारे में सोचो। होना चाहिए >=और >=तुलना। @ डैनियल
मिकमैकुसा 2

1

ZF केक:

<?php

class FkuController extends Zend_Controller_Action {

  var $image;
  var $image_type;

  public function store_uploaded_image($html_element_name, $new_img_width, $new_img_height) {

    $target_dir = APPLICATION_PATH  . "/../public/1/";
    $target_file = $target_dir . basename($_FILES[$html_element_name]["name"]);

    //$image = new SimpleImage();
    $this->load($_FILES[$html_element_name]['tmp_name']);
    $this->resize($new_img_width, $new_img_height);
    $this->save($target_file);
    return $target_file; 
    //return name of saved file in case you want to store it in you database or show confirmation message to user



  public function load($filename) {

      $image_info = getimagesize($filename);
      $this->image_type = $image_info[2];
      if( $this->image_type == IMAGETYPE_JPEG ) {

         $this->image = imagecreatefromjpeg($filename);
      } elseif( $this->image_type == IMAGETYPE_GIF ) {

         $this->image = imagecreatefromgif($filename);
      } elseif( $this->image_type == IMAGETYPE_PNG ) {

         $this->image = imagecreatefrompng($filename);
      }
   }
  public function save($filename, $image_type=IMAGETYPE_JPEG, $compression=75, $permissions=null) {

      if( $image_type == IMAGETYPE_JPEG ) {
         imagejpeg($this->image,$filename,$compression);
      } elseif( $image_type == IMAGETYPE_GIF ) {

         imagegif($this->image,$filename);
      } elseif( $image_type == IMAGETYPE_PNG ) {

         imagepng($this->image,$filename);
      }
      if( $permissions != null) {

         chmod($filename,$permissions);
      }
   }
  public function output($image_type=IMAGETYPE_JPEG) {

      if( $image_type == IMAGETYPE_JPEG ) {
         imagejpeg($this->image);
      } elseif( $image_type == IMAGETYPE_GIF ) {

         imagegif($this->image);
      } elseif( $image_type == IMAGETYPE_PNG ) {

         imagepng($this->image);
      }
   }
  public function getWidth() {

      return imagesx($this->image);
   }
  public function getHeight() {

      return imagesy($this->image);
   }
  public function resizeToHeight($height) {

      $ratio = $height / $this->getHeight();
      $width = $this->getWidth() * $ratio;
      $this->resize($width,$height);
   }

  public function resizeToWidth($width) {
      $ratio = $width / $this->getWidth();
      $height = $this->getheight() * $ratio;
      $this->resize($width,$height);
   }

  public function scale($scale) {
      $width = $this->getWidth() * $scale/100;
      $height = $this->getheight() * $scale/100;
      $this->resize($width,$height);
   }

  public function resize($width,$height) {
      $new_image = imagecreatetruecolor($width, $height);
      imagecopyresampled($new_image, $this->image, 0, 0, 0, 0, $width, $height, $this->getWidth(), $this->getHeight());
      $this->image = $new_image;
   }

  public function savepicAction() {
    ini_set('display_errors', 1);
    ini_set('display_startup_errors', 1);
    error_reporting(E_ALL);

    $this->_helper->layout()->disableLayout();
    $this->_helper->viewRenderer->setNoRender();
    $this->_response->setHeader('Access-Control-Allow-Origin', '*');

    $this->db = Application_Model_Db::db_load();        
    $ouser = $_POST['ousername'];


      $fdata = 'empty';
      if (isset($_FILES['picture']) && $_FILES['picture']['size'] > 0) {
        $file_size = $_FILES['picture']['size'];
        $tmpName  = $_FILES['picture']['tmp_name'];  

        //Determine filetype
        switch ($_FILES['picture']['type']) {
            case 'image/jpeg': $ext = "jpg"; break;
            case 'image/png': $ext = "png"; break;
            case 'image/jpg': $ext = "jpg"; break;
            case 'image/bmp': $ext = "bmp"; break;
            case 'image/gif': $ext = "gif"; break;
            default: $ext = ''; break;
        }

        if($ext) {
          //if($file_size<400000) {  
            $img = $this->store_uploaded_image('picture', 90,82);
            //$fp      = fopen($tmpName, 'r');
            $fp = fopen($img, 'r');
            $fdata = fread($fp, filesize($tmpName));        
            $fdata = base64_encode($fdata);
            fclose($fp);

          //}
        }

      }

      if($fdata=='empty'){

      }
      else {
        $this->db->update('users', 
          array(
            'picture' => $fdata,             
          ), 
          array('username=?' => $ouser ));        
      }



  }  

1

मुझे इस काम को करने का एक गणितीय तरीका मिला

गितुब रेपो - https://github.com/gayanSandamal/easy-php-image-resizer

लाइव उदाहरण - https://plugins.nayague.com/easy-php-image-resizer/

<?php
//path for the image
$source_url = '2018-04-01-1522613288.PNG';

//separate the file name and the extention
$source_url_parts = pathinfo($source_url);
$filename = $source_url_parts['filename'];
$extension = $source_url_parts['extension'];

//define the quality from 1 to 100
$quality = 10;

//detect the width and the height of original image
list($width, $height) = getimagesize($source_url);
$width;
$height;

//define any width that you want as the output. mine is 200px.
$after_width = 200;

//resize only when the original image is larger than expected with.
//this helps you to avoid from unwanted resizing.
if ($width > $after_width) {

    //get the reduced width
    $reduced_width = ($width - $after_width);
    //now convert the reduced width to a percentage and round it to 2 decimal places
    $reduced_radio = round(($reduced_width / $width) * 100, 2);

    //ALL GOOD! let's reduce the same percentage from the height and round it to 2 decimal places
    $reduced_height = round(($height / 100) * $reduced_radio, 2);
    //reduce the calculated height from the original height
    $after_height = $height - $reduced_height;

    //Now detect the file extension
    //if the file extension is 'jpg', 'jpeg', 'JPG' or 'JPEG'
    if ($extension == 'jpg' || $extension == 'jpeg' || $extension == 'JPG' || $extension == 'JPEG') {
        //then return the image as a jpeg image for the next step
        $img = imagecreatefromjpeg($source_url);
    } elseif ($extension == 'png' || $extension == 'PNG') {
        //then return the image as a png image for the next step
        $img = imagecreatefrompng($source_url);
    } else {
        //show an error message if the file extension is not available
        echo 'image extension is not supporting';
    }

    //HERE YOU GO :)
    //Let's do the resize thing
    //imagescale([returned image], [width of the resized image], [height of the resized image], [quality of the resized image]);
    $imgResized = imagescale($img, $after_width, $after_height, $quality);

    //now save the resized image with a suffix called "-resized" and with its extension. 
    imagejpeg($imgResized, $filename . '-resized.'.$extension);

    //Finally frees any memory associated with image
    //**NOTE THAT THIS WONT DELETE THE IMAGE
    imagedestroy($img);
    imagedestroy($imgResized);
}
?>

0

आप TinyPNG PHP पुस्तकालय के लिए एक कोशिश दे सकते हैं। इस लाइब्रेरी का उपयोग करने से आपकी छवि आकार बदलने की प्रक्रिया के दौरान स्वचालित रूप से अनुकूलित हो जाती है। आप सभी को पुस्तकालय स्थापित करने और https://tinypng.com/developers से एक एपीआई कुंजी प्राप्त करने की आवश्यकता है । लाइब्रेरी स्थापित करने के लिए, नीचे कमांड चलाएँ।

composer require tinify/tinify

उसके बाद, आपका कोड इस प्रकार है।

require_once("vendor/autoload.php");

\Tinify\setKey("YOUR_API_KEY");

$source = \Tinify\fromFile("large.jpg"); //image to be resize
$resized = $source->resize(array(
    "method" => "fit",
    "width" => 150,
    "height" => 100
));
$resized->toFile("thumbnail.jpg"); //resized image

मेरे पास इसी विषय पर एक ब्लॉग लिखा है http://artisansweb.net/resize-image-php-using-infinng


0

मैं एक आसान तरीका सुझाऊंगा:

function resize($file, $width, $height) {
    switch(pathinfo($file)['extension']) {
        case "png": return imagepng(imagescale(imagecreatefrompng($file), $width, $height), $file);
        case "gif": return imagegif(imagescale(imagecreatefromgif($file), $width, $height), $file);
        default : return imagejpeg(imagescale(imagecreatefromjpeg($file), $width, $height), $file);
    }
}

0
private function getTempImage($url, $tempName){
  $tempPath = 'tempFilePath' . $tempName . '.png';
  $source_image = imagecreatefrompng($url); // check type depending on your necessities.
  $source_imagex = imagesx($source_image);
  $source_imagey = imagesy($source_image);
  $dest_imagex = 861; // My default value
  $dest_imagey = 96;  // My default value

  $dest_image = imagecreatetruecolor($dest_imagex, $dest_imagey);

  imagecopyresampled($dest_image, $source_image, 0, 0, 0, 0, $dest_imagex, $dest_imagey, $source_imagex, $source_imagey);

  imagejpeg($dest_image, $tempPath, 100);

  return $tempPath;

}

यह इस महान व्याख्या पर आधारित एक अनुकूलित समाधान है। इस लड़के ने एक स्टेप बाई स्टेप स्पष्टीकरण दिया। आशा है कि सभी इसका आनंद लेंगे।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.