How to add meta tags inside single image page?

Probably because when the execution is hitting your code is already too late to hook on wp_head.

If you want to have your code in image.php, make sure you place it before get_header().

In any case, I would move the code to functions.php or dedicated file and maybe use is_attachment() to conditionally print the meta tags.