Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
//взема цвета за запълване
$start_x = 50;
$start_y = 80;
$color_index = imagecolorat($this->image, $start_x, $start_y);
// прави цвета за четене
$color_tran = imagecolorsforindex($this->image, $color_index);
//now create and resample fill
$this->imageResized = imagecreatetruecolor($size, $size);
$background = imagecolorallocate($this->imageResized, $color_tran['red'], $color_tran['green'], $color_tran['blue']);
imagefill($this->imageResized, 0, 0, $background);
imagecopyresampled($this->imageResized, $this->image, $dst_x, $dst_y, 0, 0, $dst_w, $dst_h, $this->width, $this->height );