Re: [PHP] image thumbnail from blob data

2010-06-06 Thread Adam Richardson
On Sun, Jun 6, 2010 at 8:24 PM, Phpster wrote: > > > On Jun 6, 2010, at 5:51 PM, Paul M Foster wrote: > > On Sun, Jun 06, 2010 at 09:55:20PM +0100, Ashley Sheridan wrote: >> >> >> >> >>> Having said that, it's not generally a good idea to store images as >>> blobs in my experience. It can crea

Re: [PHP] image thumbnail from blob data

2010-06-06 Thread Phpster
On Jun 6, 2010, at 5:51 PM, Paul M Foster wrote: On Sun, Jun 06, 2010 at 09:55:20PM +0100, Ashley Sheridan wrote: Having said that, it's not generally a good idea to store images as blobs in my experience. It can create slowdowns in database access, and increases the amount of space

Re: [PHP] image thumbnail from blob data

2010-06-06 Thread Paul M Foster
On Sun, Jun 06, 2010 at 09:55:20PM +0100, Ashley Sheridan wrote: > > Having said that, it's not generally a good idea to store images as > blobs in my experience. It can create slowdowns in database access, and > increases the amount of space the db requires by a lot! What most people > do I've

Re: [PHP] image thumbnail from blob data

2010-06-06 Thread Karl DeSaulniers
Sent from losPhone On Jun 6, 2010, at 3:55 PM, Ashley Sheridan wrote: On Mon, 2010-06-07 at 02:37 +0600, saeed ahmed wrote: hello friends, image store into database in a blob field, But when I'm trying to retrieve it from the database then its cause problems. if I'm trying header(

Re: [PHP] image thumbnail from blob data

2010-06-06 Thread Ashley Sheridan
On Mon, 2010-06-07 at 02:37 +0600, saeed ahmed wrote: > hello friends, > > image store into database in a blob field, But when I'm trying to retrieve > it from the database then its cause problems. > > if I'm trying header( "Content-type: image/jpeg") (if my image type is > jpeg), then its worki

[PHP] image thumbnail from blob data

2010-06-06 Thread saeed ahmed
hello friends, image store into database in a blob field, But when I'm trying to retrieve it from the database then its cause problems. if I'm trying header( "Content-type: image/jpeg") (if my image type is jpeg), then its working well. but when I'm trying to mixing up this with some HTML code th