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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T11:49:39+00:00 2026-05-29T11:49:39+00:00

If I have an image 2048 x 2048 and I would like an image

  • 0

If I have an image 2048 x 2048 and I would like an image 1488×1488 450 pixels down from top and 280 pixels from left

is this the right code x.png is the 2048 x 2048 picture:

<?php

$imagesrc_location = 'x.png';

// Get new sizes
list($srcwidth, $srcheight) = getimagesize($imagesrc_location);

$imagedst = imagecreatetruecolor(1488, 1488);
$imagesrc = imagecreatefrompng($imagesrc_location);

if (imagecopyresampled($imagedst,$imagesrc,0,0,280,450,1488,1488,2048,2048)) { 
    // Output image
    header('Content-type: image/png');
    imagepng($imagedst);
} else {
    echo "Could not resize file";

}

Here is a picture showing what I want, the grey part is the cropped picture.

                  enter image description here

  • 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-29T11:49:40+00:00Added an answer on May 29, 2026 at 11:49 am

    EDIT: I think the problem is, your source size will make the imagecopyresampled scale it down. This may work for a crop:

    imagecopyresampled($imagedst,$imagesrc,0,0,280,450,1488,1488,1488,1488)
    

    But look here: http://www.johnconde.net/blog/cropping-an-image-with-php-and-the-gd-library/
    I think that what you want is:

    imagecopy($imagedst,$imagesrc,0,0,280,450,1488,1488)
    

    https://www.php.net/manual/en/function.imagecopy.php

    https://www.php.net/manual/en/function.imagecopyresampled.php

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

Sidebar

Related Questions

I have a large sized image (2048*2048px), this image is shown as 320*320 on
So I have Image like this (source: de-viz.ru ) I want to get something
So I have Image like this (source: de-viz.ru ) I want to get something
I have image map like this <map name=imgmap> <area shape=poly coords=63,10,64,38,89,37,91,10 href=# id=x1></map> and
I have image files from: imgage = models.ImageField(upload_to=site_media/media) but if I display this photos
i have image collection @images = Image.find(:all) and displaying it like this <%@images.each do|image|%>
I have image map that can I move, but this map will be so
I have image files in a directory which have downloaded from several resources. If
I have image intensive listviews that I need to GC, normally it would be
I have this function in my controller. If I add an image, it works

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.