home
/
zktecojo
/
public_html
/
vendor
/
intervention
/
image
/
src
/
Intervention
/
Image
/
Gd
/
Commands
➕ New
📤 Upload
✎ Editing:
OpacityCommand.php
← Back
<?php namespace Intervention\Image\Gd\Commands; class OpacityCommand extends \Intervention\Image\Commands\AbstractCommand { /** * Defines opacity of an image * * @param \Intervention\Image\Image $image * @return boolean */ public function execute($image) { $transparency = $this->argument(0)->between(0, 100)->required()->value(); // get size of image $size = $image->getSize(); // build temp alpha mask $mask_color = sprintf('rgba(0, 0, 0, %.1f)', $transparency / 100); $mask = $image->getDriver()->newImage($size->width, $size->height, $mask_color); // mask image $image->mask($mask->getCore(), true); return true; } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel