Chris

Results 49 comments of Chris
trafficstars

You can't pass formatOptions as a parameter, you have to set it after the instance is created, so just break that line up like so: ```python jpeg_options = ps.JPEGSaveOptions(quality=12, embedColorProfile=True,...

It is technically possible to perform Photoshop actions in a multi-threaded or multi-process manner, however you will have to use a locking mechanism on any tasks Photoshop performs. Photoshop handles...

@vladislavmass This is kind of a notorious problem unfortunately, its not the Photoshop version. In my experience updating Photoshop or installing a newer version atop an older version can just...

@loonghao I believe Photoshop 24 does support Win10 as long as you've received the latest windows update/service pack, or am I wrong? That would be crazy if Adobe requires an...

@vladislavmass > @MrTeferi reinstalling helped with version 23. This is not the case with version 24. I reinstalled it 10 times already and it doesn't work. At the same time,...

@wantsjean If you're trying to get the dimensions of the bounding box of the text item, you can do: ```python height, width = layer.textItem.height, layer.textItem.width ``` This is for the...

The descriptor has no target, so it doesn't know what layer to perform the transform on. Here's the updated code, targeting the active layer: ```python idTrnf = ps.app.charIDToTypeID("Trnf") mainEventsDetails =...

I solved the issue! I was misled by the documentation on the `ImageResource` class, it says: ```py """ py:attribute:: signature Binary signature, always ``b'8BIM'``. """ ``` However the signature for...

I resolved the conflicts from merging the settings-panels branch in, will take a look at the full code changes soon 👍

Looking good, I will definitely fix conflicts after I finished merging in #70 and finally see about getting this PR merged as well!