The Little Guy Posted June 7, 2009 Share Posted June 7, 2009 Is there a better way to read in an image file? I currently have this: $ch = curl_init(); $timeout = 0; curl_setopt ($ch, CURLOPT_URL, $furl); curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); // Getting binary data curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1); $image = curl_exec($ch); I want to use imagecreatefromstring but with the way I have it, there will be way too many server file requests... I tried using fread, but that didn't work for some reason, that only read in some of the file, and I don't know why... Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/161258-solved-read-in-file-contents-of-an-image-file/ Share on other sites More sharing options...
Daniel0 Posted June 7, 2009 Share Posted June 7, 2009 I don't see how doing what you're doing now is a problem. It should only make one request when you call curl_exec(). Quote Link to comment https://forums.phpfreaks.com/topic/161258-solved-read-in-file-contents-of-an-image-file/#findComment-850918 Share on other sites More sharing options...
The Little Guy Posted June 7, 2009 Author Share Posted June 7, 2009 That is one too many... Yeah but I also use an image tag to call this file, so to build one image there is a total of 2 requests to the server, and there is a minimum of 5 of these images on some pages, which totals 10 requests for those. Quote Link to comment https://forums.phpfreaks.com/topic/161258-solved-read-in-file-contents-of-an-image-file/#findComment-850925 Share on other sites More sharing options...
Daniel0 Posted June 7, 2009 Share Posted June 7, 2009 Well, if a book is at the library and you want to read it, how do you do that? You go get the book. Same thing here. You cannot read the binary data of the image without downloading it. First you download it, next the client does. Why are you downloading it anyway? Quote Link to comment https://forums.phpfreaks.com/topic/161258-solved-read-in-file-contents-of-an-image-file/#findComment-850936 Share on other sites More sharing options...
The Little Guy Posted June 7, 2009 Author Share Posted June 7, 2009 I am making a PHP image, the image builds fine, Its just that I am making 2 http requests to the server for one image: 1. an image tag to get the PHP file 2. a cURL request in the php file to get the image I should only have to make one HTTP request to the server, and that should be for the image tag. The getting of the image should all be done on the server, and using fopen and fread does not make a secondary request to the server, which is what I want to do. Quote Link to comment https://forums.phpfreaks.com/topic/161258-solved-read-in-file-contents-of-an-image-file/#findComment-851081 Share on other sites More sharing options...
Daniel0 Posted June 7, 2009 Share Posted June 7, 2009 Can't you cache the results somewhere so you only have to make two requests once and then only one time for all subsequent times? Quote Link to comment https://forums.phpfreaks.com/topic/161258-solved-read-in-file-contents-of-an-image-file/#findComment-851085 Share on other sites More sharing options...
The Little Guy Posted June 7, 2009 Author Share Posted June 7, 2009 With your library example to get the book one time you don't have to go to the library 2 times to get the book once, which is happening here. I'm starting to thing I did fopen/fread wrong, but maybe I am wrong... OK I checked, and I'm doing fopen/fread the same, but now it is working... Quote Link to comment https://forums.phpfreaks.com/topic/161258-solved-read-in-file-contents-of-an-image-file/#findComment-851091 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.