1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-31 17:41:58 +02:00

Edit description of ImageInterface::fill()

This commit is contained in:
Oliver Vogel
2024-08-21 15:35:29 +02:00
parent 1786ad5e17
commit 8e14e99324

View File

@@ -670,10 +670,10 @@ interface ImageInterface extends IteratorAggregate, Countable
/**
* Fill image with given color
*
* If coordinates are transferred in the form of X and Y values, the function
* is executed as a flood fill. This means that the color at the specified
* position is taken as a reference and all adjacent pixels are also filled
* with the same color.
* If an optional position is specified for the filling process ln the form
* of x and y coordinates, the process is executed as flood fill. This means
* that the color at the specified position is taken as a reference and all
* adjacent pixels are also filled with the filling color.
*
* If no coordinates are specified, the entire image area is filled.
*