Open olivervogel opened 2 months ago
To specify parameters for offsets, offset_x
and offset_y
are used in v3. The names could be catchier and simpler.
For example, just x
or left
instead of and offset_x
y
or top
instead of .offset_y
Currently only string values of the colors are processed. It would also be nice if the values of the color channels could be specified directly.
use Intervention\Image\Colors\Rgb\Color;
// currently
$color = Color::create('rgb(255, 255, 255)');
// more universal
$color = Color::create('rgb(255, 255, 255)');
$color = Color::create(255, 255, 255);
Collection of ideas that would be nice to have but would introduce a BC and would therefore only be possible in the next major version.