вы можете попробовать заменить header("location:");
на:
echo '<script type="text/javascript">jQuery.facebox({ image: \'newCroppedImage.jpg\' });</script>';
ниже приведены некоторые другие методы facebox, как показано на http://defunkt.io/facebox/
**Arbitrary Text**
jQuery.facebox('something cool');
jQuery.facebox('something cool', 'my-groovy-style');
**Remote files**
jQuery.facebox({ ajax: 'remote.html' });
jQuery.facebox({ ajax: 'remote.html' }, 'my-groovy-style');
**Image**
jQuery.facebox({ image: 'images/stairs.jpg' });
jQuery.facebox({ image: 'images/stairs.jpg' }, 'my-groovy-style');
**A Page Element**
jQuery.facebox({ div: '#box' });
jQuery.facebox({ div: '#box' }, 'my-groovy-style');