Introduction

ImageSwift Documentation

Overview

ImageSwift is a versatile Unity library that simplifies the process of loading and downloading images in Unity projects. It offers an easy-to-use API for handling image operations, including downloading images from URLs, caching, and applying them to Unity UI components.

Getting Started

Installation

  1. Download the latest release of ImageSwift from the GitHub repository (opens in a new tab).

  2. Import the ImageSwift package into your Unity project. See how to import ImageSwift to Unity.

Usage

  1. Loading Images:

    To load an image from a URL and apply it to a Unity UI Image/RawImage:

    C#
    ImageSwift.Load("https://example.com/image.jpg").Into(image).Start();