所以我正在制作一个黑色背景的图像。我的任务是在图像内部添加白色边框,边框和图像之间使用2px填充。
所以我被困在第二点,正在创建白色边框。我的所有代码都是这样的:
application.hbs
和函数public function output()
{
$this->__set_image_size();
# setting temp image location
$this->settings['__temp_image'] = $this->settings['__upload_dir']['temp'] . $this->temp_image_name . '.jpg';
# generating image
$this->__generate_background();
$this->__load_image();
$this->__draw_white_border();
$this->__insert_image_to_wrapper();
# destroy temp image data
//imagedestroy($this->settings['__temp_image']);
return $this->settings;
}
:
__draw_white_border
主要问题是:如何在边框和列表第二点的图像之间添加填充或如何使用2px黑色和4px白色制作渐变边框?