Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
166 views

PHP Get Image size when image is stored as byte array

I have image as binary string. (submitted via POST from C# app as byte array) I can read it using imagecreatefromstring function. How can I get image size (width and height)? getimagesize function ...
3
votes
4answers
772 views

php get the KB size of an image

i've been googleing but all i get is getimagesize and filesize. getimagesize dosent get the KB size just width and height which is not what im looking for. filesize give me the message Warning: ...
2
votes
2answers
350 views

getimagesize works for some images and not others

I have the following script that returns the height and width of the image on my local server using PHP 5.2.6, but not on my shared hosting account using 5.2.17. ini_set('memory_limit', '32M'); ...
2
votes
1answer
286 views

Getting size of javascript preloaded image

I'm trying to preload a number of images generated on the server to a small website. The preloading is done using setWindowTimeout and uses an Image object, sets the onload callback and then applies ...
2
votes
1answer
1k views

Using max-width = 100% and max-height = 100% on an image, calculate the display width/height

I am creating a slideshow for images of various sizes to display centered vertically and horizontally within a canvas area. In my CSS, I set the width and height of the image to 100% so that each ...
2
votes
2answers
2k views

Handle error when getimagesize can't find file

when I'm trying to getimagesize($img) and the image dos't exist I get an error. I don't wont to first check if the file exist, just handle the error. I'm not sure how try-catch works, but I wont to ...
2
votes
4answers
3k views

What kind of file types does PHP getimagesize() return?

Does anyone know all the possible results for the 3rd value returned from PHP's getimagesize() function? Example this code below will return $imageinfo['2'] = 2; for a jpg image $imageinfo['2'] = ...
1
vote
1answer
90 views

PHP getimagesize function fails

I'm working with wordpress locally and for some reason when I call getimagesize() from page.php to retrieve the sizes it does not work. I get the warning: ...
1
vote
1answer
151 views

getimagesize - failed to open stream: Connection timed out in

In my php script in am trying to get an image from a URL, resize it, and upload it to my server. The script can be seen at http://getsharp.net/imageupload.php?admin=rene - The script is seen below ...
1
vote
1answer
43 views

How to get all images on post

at my current website i am using this code to get the first image , witch is inside the post $first_img = ''; $my1content = AD($row['post_content']); $output = ...
1
vote
2answers
50 views

Are there any security reservations involving PHP function getimagesize()?

I'll be using it in a modification for OSCommerce e-cart -- no user upload is allowed but SQL is for filenames.
1
vote
1answer
355 views

What is the alternative to getimagesize () which is disabled on a shared server

When I use getimagesize() in my hosting company which is a shared server, I get the following error. Message: getimagesize() [function.getimagesize]: URL file-access is disabled in the server ...
1
vote
3answers
185 views

How to check image integrity?

I am building a web crawler, and one of its functions is to download images. The problem is that sometimes, for some reason, there are images that are downloaded with errors in them, eg: Half of the ...
1
vote
1answer
99 views

Scaling images not working properly?

I have a $this->_tempFile that holds the temp path of an uploaded image file. Now I wish to scale an image, it do resizes it but it doesn't scale right. The output is a big black square the bottom ...
1
vote
0answers
425 views

getimagesize fails on certain server on certain image - failed to open stream: HTTP request failed!

I'm trying to parse out some images from blog posts to create little thumbnails. One particular image is failing on the web server but not on my laptop. Here's some test code: $vars = getimagesize( ...
1
vote
2answers
223 views

PHP: getimagesize() failing on LAMP server

I'm using this function: function image_resizer($max_width,$max_height,$img_path) { list($width, $height) = getimagesize($img_path); if (($width > $max_width) or ($height > ...
1
vote
3answers
236 views

PHP newbie CURL and array question

UPDATED: I've simplified the code (tried to) I'm trying to download a series of images as set in an array, but something is clearly not right: function savePhoto($remoteImage,$fname) { $ch = ...
1
vote
1answer
105 views

How to get the height of an Image in Silverlight?

I have this code in Silverlight: Image image = new Image(); BitmapImage bitmapImage= TheDatasourceManager.GetBitmapImage("blackPencil"); image.Source = bitmapImage; image.Stretch = Stretch.None; ...
1
vote
1answer
791 views

PHP problem with getimagesize()

I'm using the getimagesize() function in PHP and it keeps returning an error: getimagesize(image.php?name=username&pic=picture) [function.getimagesize]: failed to open stream: No such file or ...
1
vote
3answers
540 views

Not able to get image file extension

I'm using Uploadify to upload an image to the server. The image is uploaded, and placed in the temp folder of the web server. Now I need to work with the file beore moving it to it's real location, ...
1
vote
2answers
644 views

PHP - getimagesize Function

Does getimagesize use an extra HTTP request or can it find out the size remotely? NOTE: The image is external
0
votes
2answers
38 views

Warning: getimagesize(Array) [function.getimagesize]: failed to open stream:

I get the following error in my image upload code: Warning: getimagesize(Array) [function.getimagesize]: failed to open stream: No such file or directory in ...
0
votes
2answers
43 views

PHP if image exceeds 1000px using getimagesize()

I'm using the remote method used in jQuery Validation. I'm referring to a PHP file shown below: <?php $title = mysql_real_escape_string($right_form_url); $size = getimagesize($title); $size[3] ...
0
votes
1answer
34 views

getimagesize() returns incorrect height for an animated GIF

In my PHP debugger (at a breakpoint) I unambiguously observe that the PHP function getimagesize() returns the incorrect height for an animated GIF. Opening the GIF in IrfanView reveals the proper ...
0
votes
1answer
93 views

getimagesize() error: “failed to open stream: No such file or directory”

I get the following error " " On line- list($hight,$width)=getimagesize($name); where $name=$_FILES['photoimg']['name']; Can you please have a look at this and tell me why.
0
votes
1answer
79 views

Permission denied on getimagesize

In my functions.php I got: $size = getimagesize($avatarpath . "/" . $file); $avatarpath is $avatarpath = dirname(__FILE__)."/img/avatars"; My structure: functions.php (in the same directory as ...
0
votes
4answers
79 views

How can I estimation the file size of an image using its width and height?

I have recently written an image resizing program using php, which works by downloading images off another server, resizing them and saving them to our own. The bad news is that my Hosting account ...
0
votes
0answers
90 views

getimageinfo function is not working in fpdf

I have been using FPDF to create PDF files, and up until recently it did very well when embedding images, whether they were local or remote. I hadn't used the PDF creation script for a while, and I ...
0
votes
0answers
152 views

getimagesize often fails with $value['tmp_name'] in symfony validator

Im using symfony 1.4 and I have a form that allows a user image to be uploaded. In addition to the size limits offered by the standard sfValidatorFile id like to also include max dimension ...
0
votes
1answer
99 views

PHP: Unexpected T_LIST

I am using the following code to deliver and embed a flash file, i am using getimagesize to get the width and height of the swf but it doesn't seem to like the list part... anyone know where I'm going ...
0
votes
1answer
79 views

Make getimagesize() referenced cached values

I am tweaking a zen-cart website to be more cpu efficient. After profiling it, I see that the getimagesize function is accounting for nearly 50% of page load time. The images are locally stored. One ...
0
votes
1answer
212 views

Trying to use image from URL with Kohana Image class

I'm trying to use an image from a URL with Kohana image class. http://kohanaframework.org/3.0/guide/api/Image Is this possible or does the image always have to be local to the project? I'm accessing ...
0
votes
3answers
321 views

trouble with php getimagesize (url encode problems with space)

I use getimagesize to judge an image height and size. When a url has space, the getimagesize echo's an error. I've tried using urlencode() to transfer all the url address, it still returns an error. ...
0
votes
2answers
99 views

PHP How to get only the first image after a getimagesize judgement

I use simple_html_dom and url_to_absolute get all the image from one site. but after a getimagesize judgement, how to echo only the first image? not the all? Thanks. <?php set_time_limit(0); ...
0
votes
1answer
185 views

PHP getimagesize with variable

I'm trying to use the getimagesize function to get the height and with of an image. I'm pulling the image URL from a database. (The field ProjectURL contains a line such as xxx.jpg). However I'm ...
0
votes
1answer
734 views

Super fast getimagesize in php

im trying to get image size(DIMENSIONS) of hundreds of remote images and getimagesize is way too slow. ive done some reading and found out the quickest way would be to use get_file_contents to read a ...
0
votes
3answers
549 views

PHP getimagesize is not working when is called from a function in function.php (Wordpress)?

PHP getimagesize is not working when is called from a function in function.php. function.php: <?php // Theme Options require_once(TEMPLATEPATH . '/functions/admin-menu.php'); ...
0
votes
3answers
725 views

PHP getimagesize without URL file-access

I am using getimagesize in PHP to get information about an image in my script... $thumb = "http://i.ytimg.com/vi/u6XAPnuFjJc/hqdefault.jpg"; $imageInfo = getimagesize($thumb); The problem is that ...
0
votes
2answers
132 views

How to determine the picture size, then selectively insert into the database? php

I have 5 pictures, img1.jpg, img2.png, img3.gif, img4.jpg, img5.png. how to determine the picture size, if it is a Horizontal picture( width is more than height)width>=300px and height>=200, then ...
0
votes
2answers
676 views

Slow getimagesize

I need to show multiple posts on my website. These posts are combined of internal and external posts. The external posts are periodically imported and saved in my DB using a cronjob. Before showing ...
0
votes
3answers
344 views

Automatically adding width and height attributes to <img> tags with a PHP function

What I want is a function I can run on user input that will intelligently find and add the width and height attributes to any <img> tag in a blob of HTML so as to avoid page-reflowing issues ...
0
votes
1answer
287 views

PHP getimagesize with ampersand in string creates errors

I'm using the getimagesize function in PHP, and the path string contains an ampersand, which otherwise is fine. The page gives me errors where getimagesize() is called. Looking at the source code, ...
0
votes
4answers
1k views

getimagesize() returns false on some images

I'm running getimagesize() to determine whether or not an uploaded file is a valid image and also it's MIME type. A user of my webapp reported that some of his images where getting an "invalid ...
-1
votes
2answers
52 views

getimagesize php - take image from a form [closed]

I have a form where user can submit photos and I want to get the image parameters with getimagesize(). Which parameter getimagesize take? getimagesize($_FILES['upload']['tmp_name']) doesn't work ...
-1
votes
1answer
62 views

getimagesize if width and height condition PHP

I need to validate an image pixel. I used getimagesize function and store it to a variable then using the 3rd index of the array I can look at its width and height. The question is, how could I make ...