Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7446035
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T12:12:00+00:00 2026-05-29T12:12:00+00:00

I have successfully resized images using GD library. I resize any image to 350

  • 0

I have successfully resized images using GD library. I resize any image to 350 x 250, the problem is tat some pictures don’t look good (stretch) when they are resized as i am resizing them to a fixed size. I have a space of 350 x 250 where resize picture needs to be fit, I don’t mind if the pic size is smaller than 350 x 250 as long as it does not stretch. How do i solve this problem?

                      $save = "$directory/" . $file_name; //This is the new file you saving
                      $file = "$directory/" . $file_name; //This is the original file

                      list($width, $height) = getimagesize($file) ; 
                      $modwidth = 350; 
                      if ($width > $height) {
                      $y = 0;
                      $x = ($width - $height) / 2;
                      $smallestSide = $height;
                    } else {
                      $x = 0;
                      $y = ($height - $width) / 2;
                      $smallestSide = $width;
                    }

                      $diff = $width / $modwidth;

                      $modheight = 250; 
                      $tn = imagecreatetruecolor($modwidth, $modheight) ; 
                      $image = imagecreatefromjpeg($file) ; 
                      imagecopyresampled($tn, $image, 0, 0, 0, 0, $modwidth, $modheight, $width, $height);
                      imagejpeg($tn, $save, 100) ;
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T12:12:04+00:00Added an answer on May 29, 2026 at 12:12 pm

    Try using this function I’ve written some time ago:

        public function resize($img, $width, $height, $stretch = false)
        {
            $temp = imagecreatetruecolor($width, $height);
            imagealphablending($temp, true);
            imagesavealpha($temp, true);
    
            $bg = imagecolorallocatealpha($temp, 0, 0, 0, 127); // Background color
            imagefill($temp, 0, 0, $bg);
    
            if ($stretch)
            {
                imagecopyresampled($temp, img, 0, 0, 0, 0, $width, $height, imagesx($img), imagesy($img)); 
            }
            else
            {          
                if (imagesx($img) <= $width && imagesy($img) <= $height)
                {
                    $fwidth = imagesx($img);
                    $fheight = imagesy($img);
                }
                else
                {
                    $wscale = $width / imagesx($img);
                    $hscale = $height / imagesy($img);
                    $scale = min($wscale, $hscale);
                    $fwidth = $scale * imagesx($img);
                    $fheight = $scale * imagesy($img);
                }
                imagecopyresampled($temp,                             
                    $img,                                      
                    ($width - $fwidth) / 2, ($height - $fheight) / 2,   
                    0, 0,                                              
                    $fwidth, $fheight,                                 
                    imagesx($img), imagesy($img)               
                );
            }
            return $temp; 
        }
    

    if you say not to stretch the image, it will calculate a new size making it fit your new size.

    use it as:

    ...
    $image = imagecreatefromjpeg($file);
    $resized = resize($image, 350, 250, false); // false = don't stretch
    imagejpeg($resized, $save, 100);
    ...
    

    now store $resized on the disk using imagepng() for example.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have stored some images in database, while retrieving them i want to resize
I have successfully compiled the FFMPEG library to android using NDK. I want to
I'm using swfupload to upload pictures and resize them at client side. For testing
I have successfully implemented Autocomplete field from database using sfWidgetFormJQueryAutocompleter but i cannot a
I have successfully implemented slider to my Cocos2D project using this resource . The
I have successfully connected to an Oracle database (10g) from C# (Visual Studio 2008)
I have successfully managed to get System.Speech.Synthesis to read English text in arbitrary voices
I have successfully implemented interop beftween Win32 application and managed .Net dll as described
I have successfully upgraded an MFC application which was compiled with an old version
I have successfully used the Excel and Word addin templates in Visual studio 2008

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.