Copy link to clipboard
Copied
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:
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
Try these:
https://github.com/creold/photoshop-scripts
https://cdn.statically.io/gh/creold/photoshop-scripts/master/jsx/ArtboardsFromCSV.jsx
https://cdn.statically.io/gh/creold/photoshop-scripts/master/jsx/RenameArtboardAsSize.jsx
https://prepression.blogspot.com/2017/11/downloading-and-installing-adobe-scripts.html
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
...Copy link to clipboard
Copied
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!
Copy link to clipboard
Copied
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 🙂
Copy link to clipboard
Copied
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
Find more inspiration, events, and resources on the new Adobe Community
Explore Now