Skip to content

Commit 4ff2f94

Browse files
committed
docs: resolve conversations
1 parent 83f7514 commit 4ff2f94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/useful-tips/transform-function-and-its-parameters.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ As you can see using the same matrix images the image seems to be turned into op
136136

137137
#### Full Image
138138

139-
`fullImage` ensures that the output image is large enough to contain all transformed pixels from the source image, preventing any cropping. When true, the function automatically calculates the required output dimensions. When false, source image dimensions are taken.
139+
`fullImage` ensures that every pixel of the original image is included inside the transformed image, preventing any cropping. When true, the function automatically calculates the required output dimensions. When false, source image dimensions are taken.
140140

141141
```ts
142142
//Without fullImage - may crop transformed pixels
@@ -157,5 +157,5 @@ This is particularly useful for rotations, where corners of the image may extend
157157
![fullImage test](./images/transform-parameters/fullImageTest.svg)
158158

159159
:::warning
160-
If `fullImage` is defined together with `width` and `height`, the algorithm will use dimensions calculated for `fullImage`.
160+
If `fullImage` is set to `true`, the `width` and `height` parameters will be ignored.
161161
:::

0 commit comments

Comments
 (0)