PHP » GoLang |
login |
register |
about
|
GoLang imageaffinematrixconcat
request it (319)
GoLang replacement for PHP's imageaffinematrixconcat
[edit | history]
imageaffinematrixconcat(PHP 5 >= 5.5.0, PHP 7) imageaffinematrixconcat — Concatenate two affine transformation matrices Description
array imageaffinematrixconcat
( array
$m1
, array $m2
)Returns the concatenation of two affine transformation matrices, what is useful if multiple transformations should be applied to the same image in one go. Parameters
Return Values
An affine transformation matrix (an array with keys
0 to 5 and float values)
or Examples
Example #1 imageaffinematrixconcat() example
<?php The above example will output: Array ( [0] => 4 [1] => 0 [2] => 0 [3] => 5 [4] => 8 [5] => 15 ) See Also
|
more
Recently updated
more
Most requested
more
Last requests
|