Edit in GitHubLog an issue

How to export a rendition

This sample describes how an XD plugin can invoke the default folder picker and generate a rendition of the selected artboard for export.

Prerequisites

Development Steps

Info Complete code for this plugin can be found on GitHub.

1. Prepare your plugin scaffold

First, edit the manifest file for the plugin you created in our Quick Start Tutorial.

Replace the uiEntryPoints field of the manifest with the following:

Copied to your clipboard
1"uiEntryPoints": [
2 {
3 "type": "menu",
4 "label": "Export Rendition",
5 "commandId": "exportRendition"
6 }
7]

If you're curious about what each entry means, see the manifest documentation, where you can also learn about all manifest requirements for a plugin to be published in the XD Plugin Manager.

Then, update your main.js file, mapping the manifest's commandId to a handler function.

Replace the content of your main.js file with the following code:

Copied to your clipboard
1async function exportRendition(selection) {
2 if (selection.items.length > 0) {
3 // The body of this function is added later
4 }
5}
6
7module.exports = {
8 commands: {
9 exportRendition,
10 },
11};

A couple of notes about the handler function shell above:

  1. This function will run asynchronously, as indicated by the async keyword at the beginning of the line. To learn more about what this means, see our document on sync and async support.
  2. Since this plugin will require user to select an object, we use an if statement to check if there is an XD object selected.

The remaining steps in this tutorial describe additional edits to the main.js file.

2. Require in XD API dependencies

For this tutorial, we just need access to one XD module and one UXP class.

Add the following lines to the top of your main.js file:

Copied to your clipboard
1// Add this to the top of your main.js file
2const application = require("application");
3const fs = require("uxp").storage.localFileSystem;

Now the application module and localFileSystem class are required in and ready to be used. These modules are required to invoke the folder picker and export renditions.

3. Invoke the folder picker

Here, we'll use uxp.storage.localFileSystem (our fs constant) to invoke the folder picker:

Copied to your clipboard
1const folder = await fs.getFolder();
2const file = await folder.createFile("rendition.png");

This will invoke the default folder picker for user to choose the save directory and create a file named rendition.png.

4. Define your rendition settings

Next, we'll define the settings for our desired renditions.

Note the data structure in the code below: an array of objects (in this case, one object).

Each of the numbered comments are explained below the code:

Copied to your clipboard
1let renditionSettings = [
2 {
3 node: selection.items[0], // [1]
4 outputFile: file, // [2]
5 type: application.RenditionType.PNG, // [3]
6 scale: 2, // [4]
7 },
8];
  1. selection.items[0] refers to the first user-selected item in the document
  2. Set the outputFile property to the file constant we created in step #3
  3. Set the type property to application.RenditionType.PNG
  4. Set the desired scale of the exported rendition

We'll use this data structure containing our settings in the next step.

5. Create renditions

This is where we attempt to create the renditions:

Copied to your clipboard
1application
2 .createRenditions(renditionSettings) // [1]
3 .then((results) => {
4 // [2]
5 console.log(
6 `PNG rendition has been saved at ${results[0].outputFile.nativePath}`
7 );
8 })
9 .catch((error) => {
10 // [3]
11 console.log(error);
12 });
  1. The application#createRenditions method accepts as an argument the renditionSettings data structure that we created in step #4.
  2. createRenditions returns a Promise. We log success to the developer console.
  3. Any errors will land in .catch, which we also log to the developer console.

6. Run the plugin

After saving all of your changes, reload the plugin in XD. Make sure to select an artboard and run the plugin command.

You should see a folder picker like this one:

System folder picker screen

The rendition will be saved at the specified location.

Open the developer console to see your success or error message from the previous step.

  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2023 Adobe. All rights reserved.