A pure PHP library for reading and writing word processing documents. Fork adds support for image alt attribute.
Update composer.json to include the following:
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/niutiss/phpword"
}
],
"require": {
"phpoffice/phpword": "dev-main"
}
}Run composer install
// Add an image with alt text
$section->addImage(storage_path('img/niu_logo_alt.jpg'), [
'width' => 160,
'height' => 40,
'alignment' => Jc::START,
'alt' => 'Northern Illinois University logo'
]);Please contact us at ulibsysoff@niu.edu if you have any questions.