How to use the image helper - get src url

Permalink
In the image slider the output of the image as <img> tag:
<?php
$f = File::getByID($row['fID'])
     if (is_object($f)) {
          $tag = Core::make('html/image', array($f, false))->getTag();
              if ($row['title']) {
                   $tag->alt($row['title']);
              } else {
                   $tag->alt("slide");
         }
           echo $tag;
?>

MY Q-1: How to get the image path (relative url) -

I only find this post:
https://www.concrete5.org/community/forums/5-7-discussion/image-help...

Also this is cache pictures?

siton
 

This website stores cookies on your computer. These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media. To find out more about the cookies we use, see our Privacy Policy.