
Product
Introducing Pull Request Stories to Help Security Teams Track Supply Chain Risks
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
adobe-generator-server
Advanced tools
A helper module which allows you to receive a Photoshop Generator instance
This module gives you a straightforward way to access Adobe Generator's generator
object to create tools outside of Photoshop. Basically it's an easier way to interact with Photoshop through Node.
The following example will work if you have a newish vesion of photoshop and you've enabled generators:
Open Photoshop, go to
Photoshop ->
Preferences ->
Plug-ins
and click Enable Remote Connections and set password to “password” string.
var getAdobeGenerator = require('get-adobe-generator');
var generator = getAdobeGenerator();
generator.getOpenDocumentIDs()
.then(function(ids) {
return generator.getDocumentInfo(ids[ 0 ]);
})
.then(function(info) {
console.log('there are', info.layers.length, 'layers');
return generator.getPixmap(info.id, info.layers[0].id, {});
})
.then(function(pixmap) {
console.log('got the pixmap');
});
generator.onPhotoshopEvent('toolChanged', function(tool) {
console.log('toolChanged', tool);
});
generator.onPhotoshopEvent('currentDocumentChanged', function(info) {
console.log('currentDocumentChanged', info);
});
generator.onPhotoshopEvent('imageChanged', function(info) {
console.log('imageChanged', info);
});
generator.onPhotoshopEvent('close', function() {
console.log('photoshop closed');
});
var generator = require('get-adobe-generator')([options]);
generator
is a Adobes Generator instance.
For more info and documentation on the generator checkout the generator code at: https://github.com/adobe-photoshop/generator-core/blob/master/lib/generator.js
MIT, see LICENSE.md for details.
FAQs
A helper module which allows you to receive a Photoshop Generator instance
We found that adobe-generator-server demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.