You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Moodle provides the ability to do an environment.xml where you describe which PHP version or PHP extensions your plugin needs.
Moodle core requires the GD extension, but doesn't check apart from "is this extension present".
You use freetype only functions, e.g. imagettfbbox() and imagettftext(). Could you add an environment.xml with a "required" for GD and an "optional check" with a custom function checking if freetype is enabled?
It would help others to determine the requirements to use this plugin better.
The text was updated successfully, but these errors were encountered:
Moodle provides the ability to do an environment.xml where you describe which PHP version or PHP extensions your plugin needs.
Moodle core requires the GD extension, but doesn't check apart from "is this extension present".
You use freetype only functions, e.g.
imagettfbbox()
andimagettftext()
. Could you add an environment.xml with a "required" for GD and an "optional check" with a custom function checking if freetype is enabled?It would help others to determine the requirements to use this plugin better.
The text was updated successfully, but these errors were encountered: