skip to Main Content

Photoshop + JavaScript, why docRef.selection.selectEllipse(), .selectColumn(), .selectPolygon(), .selectRectangle(), .selectRow() don't work?

I automate Photoshop using JavaScript, here is my code: var originalRulerUnits = app.preferences.rulerUnits originalRulerUnits = Units.PIXELS displayDialogs = DialogModes.NO var fileRef = new File( "C:\Users\...\Desktop\...\...\test.png" ); app.open( fileRef ); var docRef = app.activeDocument; So this code works fine, but next…

VIEW QUESTION

<wand.img> saving several png files as photoshop psd file converts the color into grayscale

from wand.image import Image with Image(filename="base.png") as img: img.read(filename="background.png") img.read(filename="image.png") img.read(filename="sub_box.png") img.read(filename="cta_box.png") img.read(filename="sub_text.png") img.read(filename="cta_text.png") img.save(filename="final.psd") I wrote this code to stack png images into a psd file The code does work, the file has all the layers, but the color…

VIEW QUESTION
Back To Top
Search