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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:37:43+00:00 2026-05-28T07:37:43+00:00

I have recently created an upload function, but I don’t know how to change

  • 0

I have recently created an upload function, but I don’t know how to change the width and height to 75px… I tried one code I found through Google, but I just got this error:

( ! ) Fatal error: Class 'Imagick' not found in C:\wamp\www\Legendary\new\usersettings.php on line 725
Call Stack
#   Time    Memory  Function    Location
1   0.0042  880616  {main}( )   ..\usersettings.php:0

Here’s my current code (including the code which didn’t work):

echo '
                    <table border="0" width="100%">
                    <tr><td style="font-size: 16px;">Change Image</td></tr>

                    <form action="" method="post" enctype="multipart/form-data">
                        <tr><td>Upload Image:</td><td style="text-align: right;"><input type="file" name="upimage" id="upimage" /></td></tr>
                        <tr><td></td><td style="text-align: right; font-size: 10px;"></td></tr>
                        <tr><td></td><td style="text-align: right;"><input type="submit" name="submitnewimage" value="Upload" class="button" /></td></tr>
                    </form>
                    ';

                    echo '
                    </table>
                    ';

                    if(isset($_POST['submitnewimage'])){
                        $name = $_FILES['upimage']['name'];
                        $temp = $_FILES['upimage']['tmp_name'];
                        $type = $_FILES['upimage']['type'];
                        $size = $_FILES['upimage']['size'];
                        if($name!=""){
                            include 'config.php';
                            $sql5 = mysql_query("SELECT * FROM images ORDER BY id DESC LIMIT 1");
                            while($row=mysql_fetch_array($sql5)) {
                                if(!isset($show2)){
                                    $id = $row['id'];
                                    $id = $id + 1;

                                    $show2 = "YES";
                                }
                            }

                            if(($type=="image/jpeg") || ($type=="image/jpg") || ($type=="image/gif") || ($type=="image/pjpeg") || ($type=="image/png")){
                                if($size<=100000){
                                    $pos = strrpos($name, '.');
                                    if($pos === false)
                                        $ext = "";
                                    $ext = substr($name, $pos);
                                    $newFilename = $id.$ext;

                                    move_uploaded_file($temp, "images/teamicons/".$newFilename);
                                    $im = new Imagick('images/teamicons/'.$newFilename); 
                                    $im->thumbnailImage(75,75); 
                                    $im->writeImage('images/teamicons/'.$newFilename);

                                    mysql_query("INSERT INTO `images`(`id`, `name`, `size`, `type`) VALUES (NULL,'$newFilename',$size,'$type')");
                                    $myusername = $_SESSION['myusername'];
                                    mysql_query("UPDATE `members` SET `img`= '$newFilename' WHERE `username`='$myusername'");

                                    header("Location:" . $_SESSION['prev_page']);
                                }else{echo "<tr><td colspan='2'><span style='color:#F00;'>The file, &quot;".$name."&quot;, is too large! Maximum allowed file size is 100kB.</span></td></tr>";}
                            }else{echo "<tr><td colspan='2'><span style='color:#F00;'>&quot;".$type."&quot; is not a valid file type!</span></td></tr>";}
                        }else{echo "<tr><td colspan='2'><span style='color:#F00;'>No file has been specified!</span></td></tr>";}
                    }

Is there any way of changing the width and height of the images?

  • 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-28T07:37:43+00:00Added an answer on May 28, 2026 at 7:37 am

    I’ve successfully used GD to do this recently, specifically using the imagecopyresampled function.


    To expand a little on that… Once I had the image uploaded (which I wont go into, because that is a whole other issue), I did something fairly simple like this:

    $original_info = getimagesize($filename);
    $original_w = $original_info[0];
    $original_h = $original_info[1];
    $original_img = imagecreatefromjpg($filename);
    $thumb_w = 100;
    $thumb_h = 100;
    $thumb_img = imagecreatetruecolor($thumb_w, $thumb_h);
    imagecopyresampled($thumb_img, $original_img,
                       0, 0,
                       0, 0,
                       $thumb_w, $thumb_h,
                       $original_w, $original_h);
    imagejpeg($thumb_img, $thumb_filename);
    imagedestroy($thumb_img);
    imagedestroy($original_img);
    

    Please note that I have not tested this code. It’s just here to give you a basic idea of my method.

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

Sidebar

Related Questions

I have recently created an API on my server in PHP, but I have
i have sql table which has partitions. I recently created one partition. Even if
I have recently created a web project in Java using eclipse. I have a
I have recently run across these terms few times but I am quite confused
I recently created a custom ping box (chat). I have a auto refresh every
I have recently created a student organization website (i.e. www-sc.xxx.edu/studentorganizations/ourorganization). Our college does not
I have recently created a disk catalog program for myself, it is working fine.
I have recently created a new rails 3 application, using the code that I
I have recently created a java application(calculator) in netbeans and need to make it
I tried searching here for a similar solution but didn't see one so I

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.