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 8439911
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T08:08:17+00:00 2026-06-10T08:08:17+00:00

Is it possible to reduce image size while uploading ? Can the size be

  • 0

Is it possible to reduce image size while uploading ?

Can the size be Reduce from 2MB to 500kb or less or something like that
while uploading file?

  • 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-06-10T08:08:19+00:00Added an answer on June 10, 2026 at 8:08 am

    Sure, it works fine. I use this class in PHP:

    <?php
    
        function thumbnail( $img, $source, $dest, $maxw, $maxh ) {      
            $jpg = $source.$img;
    
            if( $jpg ) {
                list( $width, $height  ) = getimagesize( $jpg ); //$type will return the type of the image
                $source = imagecreatefromjpeg( $jpg );
    
                if( $maxw >= $width && $maxh >= $height ) {
                    $ratio = 1;
                }elseif( $width > $height ) {
                    $ratio = $maxw / $width;
                }else {
                    $ratio = $maxh / $height;
                }
    
                $thumb_width = round( $width * $ratio ); //get the smaller value from cal # floor()
                $thumb_height = round( $height * $ratio );
    
                $thumb = imagecreatetruecolor( $thumb_width, $thumb_height );
                imagecopyresampled( $thumb, $source, 0, 0, 0, 0, $thumb_width, $thumb_height, $width, $height );
    
                $path = $dest.$img."_thumb.jpg";
                imagejpeg( $thumb, $path, 75 );
            }
            imagedestroy( $thumb );
            imagedestroy( $source );
        }
    
    ?>
    

    imagejpeg( $thumb, $path, 75 ); is where how much you want the size and quality of the image after uploading.

    Calling in PHP script:

    if( isset( $_FILES['img-content'] ) ) {
        $img = str_replace( " ","_",$_FILES['img-content']['name'] );
        move_uploaded_file( $_FILES['img-content']['tmp_name'], "../../images/content/".$img );
        $source = "../../images/content/";
        $dest = "../../images/thumb/";
        thumbnail( $img, $source, $dest, 480, 400 );
    

    }

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

Sidebar

Related Questions

Is it possible to pass through an image file from a remote URL, without
Is it possible to reduce the depth of an image using PIL? Say like
Is it possible to reduce the AlertDialog.Builder title font size and positive button size?
I need to reduce the size of apk file which currently is 40M. This
How it is possible to reduce this record? <xsl:template match=BR> <br/> </xsl:template> <xsl:template match=B>
Is it possible to use any loop optimization technique here to reduce the execution
Possible Duplicate: How can I convert a list<> to a multi-dimensional array? I want
Possible Duplicate: How can I understand nested ?: operators in PHP? Why does this:
Possible Duplicate: Can main function call itself in C++? I found this problem very
Is it possible to reduce or change the font of the items of the

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.