IT Community - Software Programming, Web Development and Technical Support

Image downloading

This is a discussion on Image downloading within the PHP Programming forums, part of the Web Development category; Hi, I would like to download a jpg image using php. The image resides in the same folder where the ...


Go Back   IT Community - Software Programming, Web Development and Technical Support > Web Development > PHP Programming

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 07-16-2007, 03:24 AM
Sivamurugan Sivamurugan is offline
D-Web Trainee
 
Join Date: Mar 2007
Posts: 22
Sivamurugan is on a distinguished road
Default Image downloading

Hi,

I would like to download a jpg image using php. The image resides in the same folder where the php page is.

how to achieve this.

Thanks,
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 07-16-2007, 03:29 AM
Anand Anand is offline
D-Web Programmer
 
Join Date: Mar 2007
Posts: 52
Anand is on a distinguished road
Default Re: Image downloading

Try the below codes for downloading the image.

<?
$img = "image.jpg";
$fileSize = filesize($img);
header('Content-Length: '.$fileSize);
header('Content-type: image/jpeg');
header('Content-Disposition: attachment; filename="'.$img.'"');
header('Content-Transfer-Encoding: binary');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
readfile($img);
?>
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 07-16-2007, 03:30 AM
Sivamurugan Sivamurugan is offline
D-Web Trainee
 
Join Date: Mar 2007
Posts: 22
Sivamurugan is on a distinguished road
Default Re: Image downloading

Thanks, its working fine.
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
DPI of an Image Anandavinayagam C# Programming 6 12-12-2008 05:53 AM
Convert image to other image format using CODEC in .NET 3.0 Mramesh C# Programming 0 02-07-2008 03:33 AM
How to create an image from panel background Image S.Vinothkumar C# Programming 1 10-22-2007 03:52 AM
Rotating an Image muthukumar HTML, CSS and Javascript Coding Techniques 1 07-30-2007 03:18 AM
Problem in downloading multiple files as an archive. sureshbabu PHP Programming 0 07-20-2007 06:16 AM


All times are GMT -7. The time now is 03:00 AM.


Copyright ©2004 - 2007, DiscussWeb. All Rights Reserved.

SEO by vBSEO 3.0.0