<?php if( get_field('flag_photo') ): ?>
<img src="<?php the_field('flag_photo'); ?>" />
<?php endif; ?>
<?php if( get_field('flag_photo', $post_id) ): ?>
<img src="<?php the_field('flag_photo', $post_id); ?>" />
<?php endif; ?>
<?php if( get_field('flag_photo', get_the_id()) ): ?>
<img src="<?php the_field('flag_photo', get_the_id()); ?>" />
<?php endif; ?>
<img src="<?php echo the_field('flag_photo', get_the_id()); ?>" />