Creating images

How to add images to a user's design.

Apps can add images to a user's design, such as PNG or SVG files. The user can then arrange and manipulate those images with the Canva tooling they've come to know and love.

When an app adds an image to the user's design, the image file is uploaded to the user's media library.

The user's media library has a storage quota. If the user has a Canva Pro account, their storage quota is 1TB. Otherwise, their storage quota is 5GB. If the user exceeds the storage quota, they'll see an error.

Once the image exists in the user's design, the image is indistinguishable from images added via Canva's built-in features. This means the user can manipulate the image in all the same ways, including:

  • Adjusting the size, position, and rotation of the image
  • Applying effects to the image
  • Using the image as a background
  • Animating the image — for example, having it fade in

Apps can add the following types of images to a user's design:

NameMIME typeCommon file extensions
HEICimage/heic.heic
JPEGimage/jpeg.jpg, .jpeg
PNGimage/png.png
SVGimage/svg+xml.svg
TIFFimage/tiff.tiff, .tif
WebPimage/webp.webp

The maximum file size for images is 25MB.

When creating images, the image data can be provided as an external URL or a base64-encoded data URL. The ideal format of the data depends on the behavior of the app:

  • If the app generates images in the browser, such as by drawing on a HTMLCanvasElement, then a base64-encoded data URL will be the fastest and easiest way to provide the image data.
  • If the app generates or serves images from a third-party server, as would be the case with generative AI apps, then an external URL would make the most sense.

In the Developer Portal, enable the following permissions:

  • canva:design:content:write
  • canva:asset:private:write

In the future, the Apps SDK will throw an error if the required permissions are not enabled.

To learn more, see Configuring permissions.

Import the upload method from the @canva/asset package:

import { upload } from "@canva/asset";
ts

Call the method, passing in the options shown here:

const result = await upload({
type: "IMAGE",
mimeType: "image/jpeg",
url: "https://www.canva.dev/example-assets/image-import/image.jpg",
thumbnailUrl:
"https://www.canva.dev/example-assets/image-import/thumbnail.jpg",
});
ts

When uploading images, the URLs must be exposed via the internet and available to Canva's backend, as Canva needs access to the URLs to download them. This means you can't use localhost URLs.

The upload method returns an object that contains a ref property:

console.log(result.ref);
ts

This property contains a reference, which is a unique identifier that points to an image asset in Canva's backend. An app can use this reference to interact with the file — even while it's uploading.

Import the addNativeElement method from the @canva/design package:

import { addNativeElement } from "@canva/design";
ts

Call the method, passing in the options shown here:

await addNativeElement({
type: "IMAGE",
ref: result.ref,
});
ts
import React from "react";
import { upload } from "@canva/asset";
import { addNativeElement } from "@canva/design";
export function App() {
async function handleClick() {
// Upload an image
const result = await upload({
type: "IMAGE",
mimeType: "image/jpeg",
url: "https://www.canva.dev/example-assets/image-import/image.jpg",
thumbnailUrl:
"https://www.canva.dev/example-assets/image-import/thumbnail.jpg",
});
// Add the image to the design
await addNativeElement({
type: "IMAGE",
ref: result.ref,
});
}
return (
<div>
<button onClick={handleClick}>Add image from external URL</button>
</div>
);
}
tsx