App development
Create an app
Create a support ticket
Search…
Overview
Quick start
Changelog
Platform concepts
Apps
Extensions
Regions
Authentication
Deprecation policy
Extensions
Content extensions
Editing extensions
Publish extensions
Frontend development
Assets
Development URL
Error handling
Localization
Notifications
Rich controls
JSX
WebGL
Backend development
Base URL
Continuation
Signature verification
SDKs
Distribution
UX guidelines
Submission checklist
Creating the App Directory listing
Client API
EditingExtensionClient.API
CanvaDataType
CanvaElement
CanvaElementLayout
CanvaImageBlob
CanvaImageHelpers
CanvaImageUrl
CanvaMedia
init
Server API
Overview
GET /apps/configured
POST /configuration
POST /configuration/delete
POST /content/resources/find
POST /editing/image/process
POST /editing/image/process/get
POST /publish/resources/find
POST /publish/resources/get
POST /publish/resources/upload
Redirect URL
Reference
Locales
Powered By
GitBook
CanvaImageBlob
Represents an image that is available as a
Blob
.
Signature
1
type
CanvaImageBlob
=
{
2
type
:
CanvaDataType
.
CANVA_IMAGE_BLOB
;
3
blob
:
Blob
;
4
imageType
:
string
;
5
width
:
number
;
6
height
:
number
;
7
};
Copied!
Properties
Name
Type
Required
Description
type
​
CanvaDataType.CANVA_IMAGE_BLOB
​
Yes
This value is always
"canva_image_blob"
.
blob
Blob
Yes
The binary data of the image.
imageType
string
Yes
The MIME type of the image.
width
number
Yes
The width of the image, in pixels.
height
number
Yes
The height of the image, in pixels.
Client API - Previous
CanvaElementLayout
Next - Client API
CanvaImageHelpers
Last modified
7mo ago
Copy link
Contents
Signature
Properties