Re: [PHP] Creating Image v2... storing thumblains...

2002-08-01 Thread mp
Oh don't worry about this... I've already found the mistake... > Thanks to those who helped me last time about creating image, but now there > is another problem... > I'm making a thumblain like this: > > $base_size = 300; > > $size = GetImageSize($image1); > $kof =

[PHP] Creating Image v2... storing thumblains...

2002-07-31 Thread mp
Thanks to those who helped me last time about creating image, but now there is another problem... I'm making a thumblain like this: $base_size = 300; $size = GetImageSize($image1); $kof = ($size[0] > $size[1]) ? $size[0] : $size[1]; $koef = ($base_size / $kof);