Взято отюда: _http://www.php.net/manual/ru/ref.image.php
imagecopyresampled(PHP 4 >= 4.0.6, PHP 5)
imagecopyresampled -- Copy and resize part of an image with resampling
Descriptionbool imagecopyresampled ( resource dst_image, resource src_image, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h )
imagecopyresampled() copies a rectangular portion of one image to another image, smoothly interpolating pixel values so that, in particular, reducing the size of an image still retains a great deal of clarity. Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.
dst_image is the destination image, src_image is the source image identifier. If the source and destination coordinates and width and heights differ, appropriate stretching or shrinking of the image fragment will be performed. The coordinates refer to the upper left corner. This function can be used to copy regions within the same image (if dst_image is the same as src_image) but if the regions overlap the results will be unpredictable.
Там же описаны и остальные функции для работы с графикой. Кстати, классный справочник, частично переведенный на русский. Его же можно скачать в формате chm, только не помню где.
Сообщение отредактировано m00nk: 06 апр 2007 - 03:17