phalcon version 1.3.4 Reason: cphalcon/ext/image/adapter/imagic.c on 812~816 line.
790 PHP_METHOD(PhalconImageAdapterImagick, _text){
`
`
`
812 if (!offset_y) {
813 PHALCON_INIT_VAR(offset_y);
814 } else {
815 PHALCON_CPY_WRT_CTOR(offset_x, *ofs_y);
816 }
`
`
`
1037 }
Correct:
790 PHP_METHOD(PhalconImageAdapterImagick, _text){
`
`
`
812 if (!ofs_y) {
813 PHALCON_INIT_VAR(offset_y);
814 } else {
815 PHALCON_CPY_WRT_CTOR(offset_y, *ofs_y);
816 }
`
`
`
1037 }