Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
3

Create multiple artboards from a CSV File

Explorer ,
Feb 06, 2024 Feb 06, 2024

Hello! 

I often have to create multiple artboards in photoshop, and I was asking myself if there wasn't a script or plugin allowing to create multiple artboards from a .CSV or excel file.

I am wasting so much time at creating art board at the right size, and naming them after their dimensions:

Ernesto2813275668xg_1-1707219289098.png

 

I am aware something like this is possible in illustrator, from what I have seen in another thread:
https://community.adobe.com/t5/illustrator-discussions/question-creating-artboards-at-different-size...

The same would exist for photoshop ?


Thank you for your upcoming answers

TOPICS
Actions and scripting , macOS
6.8K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 2 Correct answers

Community Expert , Feb 07, 2024 Feb 07, 2024

CSV stands for Comma Separated Value, not Semicolon Separated Value! :]

 

I understand that in different countries different separators are used and that separators are not universal, however, the original script was only built to accept commas or colons.

 

If using semicolons suits your workflow better, then the script can be altered...

 

From:

 

var data = curRow.split(/,|:/);

 

 

To:

 

var data = curRow.split(/,|:|;/);

 

 

NOTE: The actual names/width/height content must not contain such char

...
Translate
Adobe
Community Expert ,
Feb 10, 2024 Feb 10, 2024
quote

Perhaps easier to do if all the artboards are the same size, probably harder if they are all random sizes and orientations. 

I think you are right on that one! 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Feb 11, 2024 Feb 11, 2024
quote

I wonder whether the OP might have some completely different arrangement than one column/one line in mind. 

Like an ultimately roughly square or landscape arrangement of all the artboards to make better use of the screen real estate. 


By @c.pfaffenbichler


No, I'm just used to work with a linear/horizontal workflow rather than a vertical one, it's only a preference. Nothing much…I feel easily "overwhelmed" by a packed workspace. 

Thank you for your answers 🙂

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 29, 2025 May 29, 2025
LATEST

Hi Ernesto! 
You could also try the Multiple Artboard Generator for Adobe Illustrator script I created:
https://iamharm.gumroad.com/l/MultipleArtboardsFromCSV

This script generates multiple artboards in Adobe Illustrator for you from a csv file. You specify the names for the artboards and their dimensions in the csv file and the script will do the rest. When you run the script there is a dialogue box that will allow you to specify the units (pt, px, mm, in) as well as the spacing between the artboards.

I also made a video showing how it works: 
Multiple Artboard Generator for Adobe Illustrator

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines