home
/
zktecojo
/
public_html
/
vendor
/
intervention
/
image
/
src
/
Intervention
/
Image
/
Imagick
/
Commands
➕ New
📤 Upload
✎ Editing:
OpacityCommand.php
← Back
<?php namespace Intervention\Image\Imagick\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(); $transparency = $transparency > 0 ? (100 / $transparency) : 1000; return $image->getCore()->evaluateImage(\Imagick::EVALUATE_DIVIDE, $transparency, \Imagick::CHANNEL_ALPHA); } }
💾 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