> For the complete documentation index, see [llms.txt](https://assetstore.instagramkit.voxelbusters.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://assetstore.instagramkit.voxelbusters.com/api/image-sharing.md).

# Image Sharing

For sharing an image, you need to pass the path of the image to **StoryContent** instance

```csharp
StoryContent content = new StoryContent ("PATH_TO_IMAGE_FILE", false);
```

{% hint style="info" %}
&#x20;Passing **false** to StoryContent instance indicates the file passed is an **image**
{% endhint %}

Share the StoryContent on Instagram

```csharp
InstagramKitManager.Share(content, OnShareComplete); //OnShareComplete is callback method
```

{% hint style="info" %}
Image passed can be of JPG or PNG format.
{% endhint %}

Example

{% embed url="<https://gist.github.com/voxelbusters/bfa9bbb799909f4b2ab953ce9e41ad7d#file-shareimageoninstagram-cs>" %}
