我一直在尝试使用imagecreatefrompng
joomla 中的功能。我在 components/mycomponent/views/imgview/tmpl/default.php 中使用该函数我必须将图像 url 管理员/components/mycomponent/images/img.png 传递给它。
我尝试了很多方法。但这些都不起作用。是否有任何特定方法可以将 url 传递给该函数。IE。我应该把它作为
$img = imagecreatefrompng('administrator/components/mycomponent/images/img.png');
或者
$img = imagecreatefrompng('http://localhost/joomla/administrator/components/mycomponent/images/img.png');
或者
$img = imagecreatefrompng('/var/www/joomla/administrator/components/mycomponent/images/img.png');
任何帮助将不胜感激。