<?php
$categories = get_categories(array('taxonomy'=>'category','hide_empty'=>false));
if($categories){
foreach($categories as $cat){?>
<?php if($imgcat1=get_field("imgcat1",$cat)){?><div class="img"><img src="<?php echo $imgcat1;?>"/></div><?php }?>
<?php }
}?>
$category_id = get_queried_object_id();
$imgcat = get_field( 'imgcat1', 'category_'.$category_id);
if ($imgcat) {
echo '<div class="img"><img src="' . $imgcat . '"/></div>';
}