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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T09:05:50+00:00 2026-05-11T09:05:50+00:00

I have a method to save an image, which is meant to deal gracefully

  • 0

I have a method to save an image, which is meant to deal gracefully with an error, setting $imageSrc to a particular image in the event of failure. My method works fine if the image is present, but no error conditions seems to be handled correctly.

$imageSrc = save_pic($PIC_URL, $pk);  function save_pic($pic_url, $pk) {     $imageDir = './';     if (!strlen($pic_url))             return 'removed.jpg';     if (!is_dir($imageDir) || !is_writable($imageDir)) {         return 'removed.jpg';     }     $image = file_get_contents($pic_url);     if (empty($image)) {         return 'removed.jpg';     }     $r = file_put_contents($imageDir.$pk.'.jpg', $image);     if ($r) {             return './$pk.jpg';      } else {             return 'removed.jpg';     } } 

If the image does not exist, I get :

Warning: getimagesize(http://127.0.0.1/555.jpg) [function.getimagesize]: failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in C:\Program Files\EasyPHP 2.0b1\www\get_auction.php on line 144  Array (  [type] => 2 [message] => getimagesize(http://127.0.0.1/555.jpg)  function.getimagesize]: failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found  [file] => C:\Program Files\EasyPHP 2.0b1\www\get_auction.php  [line] => 144 ) 1 

returned.jpg is never returned in any event.

edit: added imageResize code:

function imageResize($imageURL, $maxWidth, $maxHeight)  {  global $outputWidth, $outputHeight, $maxWidth, $maxHeight;  $size = getimagesize($imageURL);  if ($size) {      $imageWidth  = $size[0];      $imageHeight = $size[1];      $wRatio = $imageWidth / $maxWidth;      $hRatio = $imageHeight / $maxHeight;      $maxRatio = max($wRatio, $hRatio);        if ($maxRatio > 1) {          $outputWidth = $imageWidth / $maxRatio;          $outputHeight = $imageHeight / $maxRatio;      } else {          $outputWidth = $imageWidth;          $outputHeight = $imageHeight;      }  } else {      die(print_r(error_get_last()));  }  } 
  • 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. 2026-05-11T09:05:50+00:00Added an answer on May 11, 2026 at 9:05 am

    The problem was not a code issue, but was caused by file corruption. This was determined while testing on other machines.

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

Sidebar

Related Questions

I have an method which save files to the internet, it works but just
We have repositories which have a Save method. They also throw a Created event
My problem is the next: I have a method which validate the image dimension
Hay i have a method in my view which uploads an image, the image
I have written code to save an image which is generated by the application.
I have the following method to save an Object to a file: // Save
I have an ActiveRecord before_save method throwing an odd error: class MyThing < ActiveRecord::Base
I have the following method that is supposed to be a generic Save to
I have a small issue with a method that should save the text contained
I have found only two methods (SaveFile, LoadFile) which save in a file. How

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.