Skip to content

Commit

Permalink
Improve documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
olivervogel committed May 10, 2024
1 parent 9ec499a commit ad9ebf2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Interfaces/ImageInterface.php
Expand Up @@ -247,7 +247,7 @@ public function pickColors(int $x, int $y): CollectionInterface;
* Return color that is mixed with transparent areas when converting to a format which
* does not support transparency.
*
* @deprecated
* @deprecated Use configuration options of image manager instead
* @throws RuntimeException
* @return ColorInterface
*/
Expand All @@ -257,7 +257,7 @@ public function blendingColor(): ColorInterface;
* Set blending color will have no effect unless image is converted into a format
* which does not support transparency.
*
* @deprecated
* @deprecated Use configuration options of image manager instead
* @param mixed $color
* @throws RuntimeException
* @return ImageInterface
Expand Down Expand Up @@ -434,6 +434,7 @@ public function rotate(float $angle, mixed $background = 'ffffff'): self;
/**
* Rotate the image to be upright according to exif information
*
* @link https://image.intervention.io/v3/modifying/effects#image-orientation-according-to-exif-data
* @throws RuntimeException
* @return ImageInterface
*/
Expand All @@ -442,7 +443,7 @@ public function orient(): self;
/**
* Draw text on image
*
* @ink https://image.intervention.io/v3/modifying/text-fonts
* @link https://image.intervention.io/v3/modifying/text-fonts
* @param string $text
* @param int $x
* @param int $y
Expand Down

0 comments on commit ad9ebf2

Please sign in to comment.