i hope this solution will help you
I'm facing the same issue and I'm on the live server i'm trying to follow above Mikel Annjuk and hakre
answer so i cannot the change the file /etc/ImageMagick/policy.xml so i contact to the server provider to edit file and send this url to follow step but there is answering me
" I am still working on this. The solution given in above link requires root access to the server which is not possible in a shared server. But imagick is related to php. So let me try changing php version and see if that helps"
when i tired to resolve this on that time i have idea may be the issue of the file path where I'm saving the file so I change to base path to FCPATH
and the matter is solved.
i'm using Codeigniter base_url() to php FCPATH this is the point to solve this issue
but on svg converter show "no decode delegate" issue
add the following lines in the start of file or code
like this
$usmap = file_get_contents(base_url('convert/plus.svg'));
$find_string = '<svg';
$position = strpos($usmap, $find_string);
$svg_file_new ='<?xml version="1.0" encoding="UTF-8" standalone="no"?>'.substr($usmap, $position).'</svg>';
file_put_contents(FCPATH.'convert/plus.svg', $svg_file_new);
$usmap = base_url('convert/plus.svg');
$im = new Imagick($usmap);
$im->setImageFormat("jpg");
$im->writeImage(FCPATH .'convert/plus.jpg');
$im->clear();
$im->destroy();
above code first, get the SVG code from the file and add XML version code then put it into the file and then convert SVG to any type of image like jpg
sorry for my English
MAGICK_TMPDIR
to someplace else where your script/CGI/program can write? – Mark Setchell<policymap>
that [accidentally?] includes that file type as a matched pattern. – kb.