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 =
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);
I want to create simple image...
I execute this script:
$im = imagecreate (50, 100);
$fp = fopen("test/im.jpg","w");
fwrite($fp, imagegd($im));
fclose($fp);
But there is some problems about this...
Could somebody help me?
--
PHP General Mailing List (http://www.php.net/)
To unsubscrib
Hi, php-general,
I make this kind of PHP script(script.php):
script.php
And in HTML (other.html) file I write:
But there is some mistake. Does anybody can help me?
Thanks...
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
4 matches
Mail list logo