A link to what exactly? The image itself, the gallery with the image displayed, the modal window contents? There's a few links available for media. Example as follows.
Inline Modal Window
Code:
index.php?option=com_comprofiler&view=pluginclass&plugin=cbgallery&action=item&func=display&id=MEDIA_ID_HERE
Embedded Media
Code:
index.php?option=com_comprofiler&view=pluginclass&plugin=cbgallery&action=item&func=embed&id=MEDIA_ID_HERE
Media Preview Image
Code:
index.php?option=com_comprofiler&view=pluginclass&plugin=cbgallery&action=item&func=preview&id=MEDIA_ID_HERE
Media
Code:
index.php?option=com_comprofiler&view=pluginclass&plugin=cbgallery&action=item&func=show&id=MEDIA_ID_HERE
How you build this is entirely up to you. For example you could just CONCAT it together. It won't be in SEO format though. The other option is to use PHP and process your query results to add whatever additional data you need.
Note if the media belongs to a custom gallery it won't be able to rebuild it from the URL. The above mainly works really well with profile galleries. All other galleries you'll need to utilize gallery_onGalleryAccess and rebuild them from the URL. This will eventually be solved like it was with CB Activity by moving galleries to storage, but currently that's not the case.