imageaffinematrixconcat Concatenate two affine transformation matrices &reftitle.description; arrayimageaffinematrixconcat arraym1 arraym2 Returns the concatenation of two affine transformation matrices, what is useful if multiple transformations should be applied to the same image in one go. &reftitle.parameters; m1 An affine transformation matrix (an array with keys 0 to 5 and float values). m2 An affine transformation matrix (an array with keys 0 to 5 and float values). &reftitle.returnvalues; An affine transformation matrix (an array with keys 0 to 5 and float values) &return.falseforfailure;. &reftitle.examples; <function>imageaffinematrixconcat</function> example 3)); $m2 = imageaffinematrixget(IMG_AFFINE_SCALE, array('x' = 4, 'y' => 5)); $matrix = imageaffinematrixconcat($m1, $m2); print_r($matrix); ?> ]]> &example.outputs; 4 [1] => 0 [2] => 0 [3] => 5 [4] => 8 [5] => 15 ) ]]> &reftitle.seealso; imageaffine imageaffinematrixget