我的主机(wooservers)没有在他们的共享服务器上安装ImageMagick所以我想知道是否有任何我可以使用的图像处理库/插件?
(主要用于水印GIF动画。)
我发现水印GIF动画的唯一方法是通过ImageMagick
我的主机没有在其共享服务器上安装ImageMagick。所以我想知道是否还有其他方法可以使用类似ImageMagick的功能来为动画GIF添加水印?
(也许就像一个网络服务,它允许我向他们发送图像,其中包含如何处理图像的规范,然后他们进行处理并重新获得我的图像?这类似的东西?我认为这称为API?)
答案 0 :(得分:2)
答案 1 :(得分:1)
我刚刚切换了支持ssh终端访问和ImageMagick的webhosts。 感谢
答案 2 :(得分:1)
你应该看看Intervention。它是我使用过的最好的PHP图像库之一,可以同时使用GD和Imagick作为驱动程序。
根据文档,您可以创建如下水印:
// create new Intervention Image
$img = Image::make('public/foo.jpg');
// paste another image
$img->insert('public/bar.png');
// create a new Image instance for inserting
$watermark = Image::make('public/watermark.png');
$img->insert($watermark, 'center');
// insert watermark at bottom-right corner with 10px offset
$img->insert('public/watermark.png', 'bottom-right', 10, 10);
答案 3 :(得分:0)
试试WideImage。它非常易于使用。