Ghoul Fool
Engaged
Ghoul Fool
Engaged
Activity
Jan 24, 2025
08:32 AM
Once again grasping straws in the Land of Sorrows™ of Action Manager script... I'm trying to get and hopefully set a value from a Photoshop Constant "StlP" which *might* just be the pen pressure toggle. So far, not so many straws: var idselect = charIDToTypeID( "slct" );
var descriptor = new ActionDescriptor();
var idnull = charIDToTypeID( "null" );
var reference = new ActionReference();
var id = charIDToTypeID( "StlP" ); // phKeyStylusIsPressure -> 1400138832 -> "StlP" stylusIsPressure
reference.putClass( id );
descriptor.putReference( idnull, reference );
executeAction( idselect, descriptor, DialogModes.NO ); Obviously this script fails as clearly at this point I'm just typing random stuff in the vain hope it'll work 🙂
... View more
Jan 24, 2025
05:30 AM
That's not it. The file associations have not been changed and both .PSD and .PSB are associated with photoshop. It's an administrative problem.
... View more
Jan 24, 2025
01:48 AM
So the lag of a second or so (1000 milliseconds+) in clicking to draw or select something, with the mouse,in Photoshop, magically disappears if you run Photoshop as administrator. Yay! (Photoshop 22.2) However... in fixing that Photoshop will no longer open a .PSD file in a folder by double clicking its icon Nothing happens. (Photoshop gets focus - mouse cursor changes to blue spinny wheel for a moment, no file is opened) Opening said file from Photoshop's FIle Menu works as nomal. So how do we fix the problem to fix the problem? #Photoshophouseofcards
... View more
Jan 23, 2025
06:26 AM
Is there a way of specifying the width of the alert box?? ie preferredSize.width = 300; I often use them to display file names with full paths - and those tend to get line-wrapped - which I find difficult to read; prefering them one line apiece. Without having to say... create a custom window? Fake file real place, BTW. function scriptAlert(alertString1)
{
var alertWindow = new Window("dialog", undefined, undefined, {resizeable: false});
alertWindow.preferredSize.width = 300;
var alertText = alertWindow.add("group");
alertStringSize1 = alertText.add("statictext", undefined, alertString1, {name: "alertText", multiline: true});
var okButton = alertWindow.add("button", undefined, undefined, {name: "okButton"});
okButton.text = "OK";
alertWindow.show();
}
... View more
Jan 16, 2025
06:27 AM
There's an idea. Here's a very minimal copy of the file with just the open and closed versions.
... View more
Jan 15, 2025
06:19 AM
Just a vaniall paths from path panel. Not a shape or a Shape in the path panel.
... View more
Jan 15, 2025
02:47 AM
I've got a pattern of abstract paths in Photoshop that I've pasted into Illustrator. So far so good. However, both programs have a habit of automatically closing shapes. In Illustrator, the shape (see bleow) is automatically closed (whereas the left hand side should be open). In order to fix this I'm currently having to locate each shape, direct selection of each point, cut it, paste it in place and then re-apply stroke to it. Like the shape as I want it! This process is fine for a couple, but really rather long winded for hundreds of shapes. Is there an easy/faster/better/cheaper way of solving this? What have I missed? As always, answers on a postcard...
... View more
Jan 06, 2025
05:49 AM
You kids, with your fancy lingo! Thanks for checking in with me. But "Combine files workflow" - I have no idea what that actually means. I appreciate the fix using Regedit - but as a customer, myself, or anyone else for that matter, really shouldn't have to be messing around with the register to fix things. Especially from a website that's three years out of date.
... View more
Dec 18, 2024
01:47 AM
But is it possible to access a brush by ID or is it by name only?
... View more
Dec 04, 2024
01:26 AM
Did anyone work out a way (with a script) to A) get brush ID from current brush and more importantly B) Get and set current brush from an ID This question links to the ghost of long lost scripts page...
... View more
Dec 02, 2024
06:37 AM
1 Upvote
Photoshop's Lock Workspace (Window > Workspace > Lock Workspace) will bolt down the the windows (layers, swatches info etc.) so they don't move. greta. Proper job. But ...the brushes (sub) menu will happily move around like a goldfish in a racing car. Hardly Ronseal. Don't suppose you can bolt that down?
... View more
Dec 02, 2024
03:13 AM
Photoshop & PC were shut down in an orderly manner that evening. So I've no idea what happened.
... View more
Dec 02, 2024
02:08 AM
1 Upvote
r-bin That's got it!
... View more
Dec 02, 2024
01:57 AM
We'll get back to you on that one. The test .psd file I have (with a visible warning icon in the text layers) dissapears on on a reboot.
... View more
Nov 28, 2024
06:32 AM
That's the thing. the font isn't missing. It needs "updating". Had a look at two files using Beyond Compare and the comparrison is more comples than I though. Visually it's very subtle differences to the outline (fonder rendering differnce between versions?) and quite a lot of bytes in hex.
... View more
Nov 28, 2024
01:27 AM
Thanks for that. Sadly that works for font's that are missing, which is different to fonts that are avaiable - but somehow need to be updated. Most of the time it'll just update the file and save it and there is no real difference. However... if you are working on a typeface which is in the PSD and want to see any changes at the old/new iteration it's best to go over the whole file layer by layer - hence looking to a script. As it seems double clicking the text layer to update it, will also save the file (without asking) Bad Photoshop, no biscuit.
... View more
Nov 28, 2024
01:21 AM
Nothing like a really vague error at the start of the day. I am glad to see that it hasn't reverted the preferences to a factory reset - However, I would be interested in working out what specific aspect of the preferences could not be read. A cursory look suggests I've lost some brushes that I've created recently. And recent file history (but I'm not bothered about that) But maybe more. 😞
... View more
Nov 28, 2024
01:08 AM
Another one popped up. I'm just gonna carry on loggin the dates and work out their frequency:
... View more
Nov 27, 2024
05:52 AM
Ignoring the "some text layers might need to be updated..." message ... Is there a scriptable way of determining if said text layer has the triangle warning icon?? (text layer needs updating warning icon) Kinda like this: if (theLayer.kind == "LayerKind.TEXT")
{
if (theLayer.textItem.feelingABitSleepyAndNeedsToBeUpdated == true)
{
theLayer.textItem.refresh();
}
} Assuming this is only caused by old file created in prevouos versions of Photoshop.
... View more
Nov 27, 2024
05:40 AM
Once opened it says it has no fullName. 🙂 But after saving (old file done on previous version of Indd, me thinks) it remorts it in the form: /c/some%20folder/my%20file.indd
... View more
Nov 27, 2024
01:13 AM
I'm writing a text file. It's a filepath from the source folder of the InDesign file + the name of the Indesign File with a text file extension (instead of a .indd)
... View more
Nov 26, 2024
05:46 AM
Indesign jsx seems to be a bit more advanced than it's Photoshop sibling, which is what I'm used to. Is there a quick one liner to make a filepath into a nice Windows one? ie Turn C:\\some%20folder/anotherFolder\\somefile.txt into C:\some folder\anotherFolder\somefile.txt Without having to rely on regex to fix each thing (unifided slashes, %20, etc) as you go? var afileName = "C:\\some%20folder/anotherFolder\\somefile.txt"
// var resolvedPath = resolve(afileName);
// var normalizedPath = path.normalize(afileName );
var nicePath = decodeURIComponent(afileName);
// Replace all front slashes with back slashes. We are Windows
nicePath = nicePath.replace(/\//g, "\\");
// replace %20 with space
// nicePath = nicePath.replace(/%20/g," ");
alert(nicePath);
... View more
Nov 25, 2024
02:26 AM
How do I stop these Adobe pop-ups "Tell us about your experience"? I find them very annoying whilst working. Quite frankly it's being sat next to an Adobe micro manager seeking your attention and approval but then going to do its own thing regardless.
... View more
Nov 21, 2024
05:43 AM
There is always the worry that all the actions, brushes, preferences, tools, workspaces, gradients, etc are lost in teh name in progress. My (personal) worry is that accidentally pressing the upgrade and I'll loose all ExtendScript .jsx functionality. . And then there will be weeks or having to re-write all my scripts. But like you say, the crux being user unpreparedness.
... View more
Nov 18, 2024
06:26 AM
1 Upvote
Looks like even with the gpu switched off (and menu item ghosted out) the perspective warp script still works with identical results: // =======================================================
var idperspectiveWarpTransform = stringIDToTypeID( "perspectiveWarpTransform" );
var desc4512 = new ActionDescriptor();
var idnull = charIDToTypeID( "null" );
var ref837 = new ActionReference();
var idLyr = charIDToTypeID( "Lyr " );
var idOrdn = charIDToTypeID( "Ordn" );
var idTrgt = charIDToTypeID( "Trgt" );
ref837.putEnumerated( idLyr, idOrdn, idTrgt );
desc4512.putReference( idnull, ref837 );
var idMd = charIDToTypeID( "Md " );
var idperspectiveWarpMode = stringIDToTypeID( "perspectiveWarpMode" );
var idwarp = stringIDToTypeID( "warp" );
desc4512.putEnumerated( idMd, idperspectiveWarpMode, idwarp );
var idreferenceRect = stringIDToTypeID( "referenceRect" );
var desc4513 = new ActionDescriptor();
var idTop = charIDToTypeID( "Top " );
var idPxl = charIDToTypeID( "#Pxl" );
desc4513.putUnitDouble( idTop, idPxl, 174.000000 );
var idLeft = charIDToTypeID( "Left" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4513.putUnitDouble( idLeft, idPxl, 532.000000 );
var idBtom = charIDToTypeID( "Btom" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4513.putUnitDouble( idBtom, idPxl, 626.000000 );
var idRght = charIDToTypeID( "Rght" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4513.putUnitDouble( idRght, idPxl, 667.000000 );
var idRctn = charIDToTypeID( "Rctn" );
desc4512.putObject( idreferenceRect, idRctn, desc4513 );
var idvertices = stringIDToTypeID( "vertices" );
var list339 = new ActionList();
var desc4514 = new ActionDescriptor();
var idHrzn = charIDToTypeID( "Hrzn" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4514.putUnitDouble( idHrzn, idPxl, 581.000000 );
var idVrtc = charIDToTypeID( "Vrtc" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4514.putUnitDouble( idVrtc, idPxl, 172.000000 );
var idPnt = charIDToTypeID( "Pnt " );
list339.putObject( idPnt, desc4514 );
var desc4515 = new ActionDescriptor();
var idHrzn = charIDToTypeID( "Hrzn" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4515.putUnitDouble( idHrzn, idPxl, 667.000000 );
var idVrtc = charIDToTypeID( "Vrtc" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4515.putUnitDouble( idVrtc, idPxl, 172.000000 );
var idPnt = charIDToTypeID( "Pnt " );
list339.putObject( idPnt, desc4515 );
var desc4516 = new ActionDescriptor();
var idHrzn = charIDToTypeID( "Hrzn" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4516.putUnitDouble( idHrzn, idPxl, 667.000000 );
var idVrtc = charIDToTypeID( "Vrtc" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4516.putUnitDouble( idVrtc, idPxl, 625.000000 );
var idPnt = charIDToTypeID( "Pnt " );
list339.putObject( idPnt, desc4516 );
var desc4517 = new ActionDescriptor();
var idHrzn = charIDToTypeID( "Hrzn" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4517.putUnitDouble( idHrzn, idPxl, 581.000000 );
var idVrtc = charIDToTypeID( "Vrtc" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4517.putUnitDouble( idVrtc, idPxl, 625.000000 );
var idPnt = charIDToTypeID( "Pnt " );
list339.putObject( idPnt, desc4517 );
var desc4518 = new ActionDescriptor();
var idHrzn = charIDToTypeID( "Hrzn" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4518.putUnitDouble( idHrzn, idPxl, 533.000000 );
var idVrtc = charIDToTypeID( "Vrtc" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4518.putUnitDouble( idVrtc, idPxl, 624.000000 );
var idPnt = charIDToTypeID( "Pnt " );
list339.putObject( idPnt, desc4518 );
var desc4519 = new ActionDescriptor();
var idHrzn = charIDToTypeID( "Hrzn" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4519.putUnitDouble( idHrzn, idPxl, 533.000000 );
var idVrtc = charIDToTypeID( "Vrtc" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4519.putUnitDouble( idVrtc, idPxl, 172.000000 );
var idPnt = charIDToTypeID( "Pnt " );
list339.putObject( idPnt, desc4519 );
desc4512.putList( idvertices, list339 );
var idwarpedVertices = stringIDToTypeID( "warpedVertices" );
var list340 = new ActionList();
var desc4520 = new ActionDescriptor();
var idHrzn = charIDToTypeID( "Hrzn" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4520.putUnitDouble( idHrzn, idPxl, 581.874418 );
var idVrtc = charIDToTypeID( "Vrtc" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4520.putUnitDouble( idVrtc, idPxl, 130.181784 );
var idPnt = charIDToTypeID( "Pnt " );
list340.putObject( idPnt, desc4520 );
var desc4521 = new ActionDescriptor();
var idHrzn = charIDToTypeID( "Hrzn" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4521.putUnitDouble( idHrzn, idPxl, 667.151110 );
var idVrtc = charIDToTypeID( "Vrtc" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4521.putUnitDouble( idVrtc, idPxl, 172.000097 );
var idPnt = charIDToTypeID( "Pnt " );
list340.putObject( idPnt, desc4521 );
var desc4522 = new ActionDescriptor();
var idHrzn = charIDToTypeID( "Hrzn" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4522.putUnitDouble( idHrzn, idPxl, 666.849136 );
var idVrtc = charIDToTypeID( "Vrtc" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4522.putUnitDouble( idVrtc, idPxl, 624.999903 );
var idPnt = charIDToTypeID( "Pnt " );
list340.putObject( idPnt, desc4522 );
var desc4523 = new ActionDescriptor();
var idHrzn = charIDToTypeID( "Hrzn" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4523.putUnitDouble( idHrzn, idPxl, 581.380687 );
var idVrtc = charIDToTypeID( "Vrtc" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4523.putUnitDouble( idVrtc, idPxl, 625.000371 );
var idPnt = charIDToTypeID( "Pnt " );
list340.putObject( idPnt, desc4523 );
var desc4524 = new ActionDescriptor();
var idHrzn = charIDToTypeID( "Hrzn" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4524.putUnitDouble( idHrzn, idPxl, 532.734382 );
var idVrtc = charIDToTypeID( "Vrtc" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4524.putUnitDouble( idVrtc, idPxl, 623.999683 );
var idPnt = charIDToTypeID( "Pnt " );
list340.putObject( idPnt, desc4524 );
var desc4525 = new ActionDescriptor();
var idHrzn = charIDToTypeID( "Hrzn" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4525.putUnitDouble( idHrzn, idPxl, 533.266089 );
var idVrtc = charIDToTypeID( "Vrtc" );
var idPxl = charIDToTypeID( "#Pxl" );
desc4525.putUnitDouble( idVrtc, idPxl, 172.000317 );
var idPnt = charIDToTypeID( "Pnt " );
list340.putObject( idPnt, desc4525 );
desc4512.putList( idwarpedVertices, list340 );
var idquads = stringIDToTypeID( "quads" );
var list341 = new ActionList();
var desc4526 = new ActionDescriptor();
var idindices = stringIDToTypeID( "indices" );
var list342 = new ActionList();
list342.putInteger( 0 );
list342.putInteger( 1 );
list342.putInteger( 2 );
list342.putInteger( 3 );
desc4526.putList( idindices, list342 );
var idperspectiveWarpQuad = stringIDToTypeID( "perspectiveWarpQuad" );
list341.putObject( idperspectiveWarpQuad, desc4526 );
var desc4527 = new ActionDescriptor();
var idindices = stringIDToTypeID( "indices" );
var list343 = new ActionList();
list343.putInteger( 4 );
list343.putInteger( 3 );
list343.putInteger( 0 );
list343.putInteger( 5 );
desc4527.putList( idindices, list343 );
var idperspectiveWarpQuad = stringIDToTypeID( "perspectiveWarpQuad" );
list341.putObject( idperspectiveWarpQuad, desc4527 );
desc4512.putList( idquads, list341 );
executeAction( idperspectiveWarpTransform, desc4512, DialogModes.NO ); So, as far as I can see I don't have to add extra code to make GPU preference changes, as the warps bring identical results - which was my main concern.
... View more
Nov 18, 2024
02:07 AM
Thanks for belittling my GPU, incorrect as it is, you didn't comprehend my question, did you?
... View more
Nov 14, 2024
09:18 AM
Adobe Photoshop Version: 22.2.0 20210202.r.183 2021/02/02: a176e5849fa x64 Number of Launches: 130 Operating System: Windows 10 64-bit Version: 10 or greater 10.0.26100.2161 System architecture: AMD CPU Family:15, Model:1, Stepping:2 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, AVX, AVX2, HyperThreading Physical processor count: 6 Logical processor count: 12 Processor speed: 3800 MHz Built-in memory: 31850 MB Free memory: 23916 MB Memory available to Photoshop: 29166 MB Memory used by Photoshop: 82 % SAM SDK Version: 2.0.0-main.363.5 ACP.local Status: - SDK Version: 1.41.1.1 - Core Sync Status: Reachable and compatible - Core Sync Running: 7.2.0.58 - Min Core Sync Required: 4.3.28.24 ACPL Cache Config: - Time to Live: 5184000 seconds - Max Size: 20480 MB - Purge Percentage: 50% - Threshold Percentage: 85% - Purge Interval: 300 seconds Live Edit Client SDK Version: 3.79.11 Native GPU: Enabled. Manta Canvas: Enabled. Alias Layers: Disabled. Modifier Palette: Disabled. Highbeam: Disabled. Wintab Digitizer Services Spec Version 1.4 Impl Version 1.39 Num Devices 1 PSUserConfig entries: - K uSty UseSystemStylus 0 - U WarnRunningScripts 0 Image tile size: 132K Image cache levels: 2 Font Preview: Medium TextComposer: Latin Display: 1 Display Bounds: top=0, left=0, bottom=1080, right=1920 OpenGL Drawing: Enabled. OpenGL Allow Old GPUs: Not Detected. OpenGL Drawing Mode: Advanced OpenGL Allow Normal Mode: True. OpenGL Allow Advanced Mode: True. NumGLGPUs=1 NumCLGPUs=2 NumNativeGPUs=2 glgpu[0].GLVersion="4.6" glgpu[0].IsIntegratedGLGPU=0 glgpu[0].GLMemoryMB=485 glgpu[0].GLName="AMD Radeon(TM) Graphics" glgpu[0].GLVendor="AMD" glgpu[0].GLDriverVersion="32.0.11027.1003" glgpu[0].GLDriver="C:\Windows\System32\DriverStore\FileRepository\u0407412.inf_amd64_101d3d4e34955a9f\B407018\atidx9loader64.dll,C:\Windows\System32\DriverStore\FileRepository\u0407412.inf_amd64_101d3d4e34955a9f\B407018\amdxx64.dll,C:\Windows\System32\DriverStore\FileRepository\u0407412.inf_amd64_101d3d4e34955a9f\B407018\amdxx64.dll,C:\Windows\System32\DriverStore\FileRepository\u0407412.inf_amd64_101d3d4e34955a9f\B407018\amdxc64.dll" glgpu[0].GLDriverDate="20240827000000.000000-000" glgpu[0].GLRenderer="AMD Radeon(TM) Graphics" glgpu[0].HasGLNPOTSupport=1 glgpu[0].CanCompileProgramGLSL=1 glgpu[0].GLFrameBufferOK=1 clgpu[0].CLPlatformVersion="OpenCL 2.1 AMD-APP (3617.0)" clgpu[0].CLDeviceVersion="2.0" clgpu[0].IsIntegratedCLGPU=1 clgpu[0].CLMemoryMB=12858 clgpu[0].CLName="gfx1036" clgpu[0].CLVendor="AMD" clgpu[0].CLBandwidth=4.600000e+10 clgpu[0].CLCompute=264.167990 clgpu[0].CLRawDeviceName=gfx1036 clgpu[0].CLRawDeviceVendor=Advanced Micro Devices, Inc. clgpu[0].CLRawPlatformName=AMD Accelerated Parallel Processing clgpu[0].CLRawPlatformVendor=Advanced Micro Devices, Inc. nativegpu[0].NativeName="5710:AMD Radeon(TM) Graphics" nativegpu[0].NativeTotalRAMInMB=17207 nativegpu[0].NativeVRAMInMB=509 nativegpu[0].NativeSharedSystemRAMInMB=16698 nativegpu[0].NativeDedicatedSystemRAMInMB=0 nativegpu[0].NativeVendor="AMD" nativegpu[0].NativeDriver="C:\Windows\System32\DriverStore\FileRepository\u0407412.inf_amd64_101d3d4e34955a9f\B407018\atidx9loader64.dll,C:\Windows\System32\DriverStore\FileRepository\u0407412.inf_amd64_101d3d4e34955a9f\B407018\amdxx64.dll,C:\Windows\System32\DriverStore\FileRepository\u0407412.inf_amd64_101d3d4e34955a9f\B407018\amdxx64.dll,C:\Windows\System32\DriverStore\FileRepository\u0407412.inf_amd64_101d3d4e34955a9f\B407018\amdxc64.dll" nativegpu[0].NativeDriverVersion="32.0.11027.1003" nativegpu[0].NativeDriverDate="20240827000000.000000-000" nativegpu[0].NativePowerEnvelope="UNKNOWN" nativegpu[0].NativeDeviceAttachment="UNKNOWN" nativegpu[0].NativeAPIVersion="12.0 (12.0)" clgpu[1].CLPlatformVersion="OpenCL 2.1 AMD-APP (3617.0)" clgpu[1].CLDeviceVersion="2.0" clgpu[1].IsIntegratedCLGPU=0 clgpu[1].CLMemoryMB=8573 clgpu[1].CLName="gfx1102" clgpu[1].CLVendor="AMD" clgpu[1].CLBandwidth=2.590000e+11 clgpu[1].CLCompute=1548.970709 clgpu[1].CLRawDeviceName=gfx1102 clgpu[1].CLRawDeviceVendor=Advanced Micro Devices, Inc. clgpu[1].CLRawPlatformName=AMD Accelerated Parallel Processing clgpu[1].CLRawPlatformVendor=Advanced Micro Devices, Inc. nativegpu[1].NativeName="29824:AMD Radeon RX 7600" nativegpu[1].NativeTotalRAMInMB=25222 nativegpu[1].NativeVRAMInMB=8524 nativegpu[1].NativeSharedSystemRAMInMB=16698 nativegpu[1].NativeDedicatedSystemRAMInMB=0 nativegpu[1].NativeVendor="AMD" nativegpu[1].NativeDriver="C:\Windows\System32\DriverStore\FileRepository\u0407412.inf_amd64_101d3d4e34955a9f\B407018\atidx9loader64.dll,C:\Windows\System32\DriverStore\FileRepository\u0407412.inf_amd64_101d3d4e34955a9f\B407018\amdxx64.dll,C:\Windows\System32\DriverStore\FileRepository\u0407412.inf_amd64_101d3d4e34955a9f\B407018\amdxx64.dll,C:\Windows\System32\DriverStore\FileRepository\u0407412.inf_amd64_101d3d4e34955a9f\B407018\amdxc64.dll" nativegpu[1].NativeDriverVersion="32.0.11027.1003" nativegpu[1].NativeDriverDate="20240827000000.000000-000" nativegpu[1].NativePowerEnvelope="UNKNOWN" nativegpu[1].NativeDeviceAttachment="UNKNOWN" nativegpu[1].NativeAPIVersion="12.0 (12.0)" $$$/LE/SysInfo/LicenseType=License Type: $$$/CSerialNumber/LicenseTypeSubscription=Subscription^rSerial number: 90970569667508905307 GUIDBucket:Composite Core (enable_composite_core): onComposite Core GPU (comp_core_gpu): offComposite Core Threads (comp_core_threads): offComposite Core UI (comp_core_ui): offDocument Graph (enable_doc_graph): off Application folder: C:\Program Files\Adobe\Adobe Photoshop 2021\ Temporary file path: C:\Users\C\AppData\Local\Temp\ Photoshop scratch has async I/O enabled Scratch volume(s): D:\, 931.5G, 591.9G free C:\, 930.8G, 826.4G free Required Plugins folder: C:\Program Files\Adobe\Adobe Photoshop 2021\Required\Plug-ins\ Primary Plugins folder: C:\Program Files\Adobe\Adobe Photoshop 2021\Plug-ins\ Installed components: A3DLIBS.dll A3DLIB Dynamic Link Library 9.2.0.112 ACE.dll ACE 2021/01/14-01:08:54 79.626696 79.626696 AdbePM.dll PatchMatch 2020/12/03:18:21:56 1.625721 1.625721 AdobeLinguistic.dll Adobe Linguisitc Library developer.633ca06620e3b28a3ccee5d61e3e97bd84fe66b3 AdobeOwl.dll Adobe Owl 5.5.0 AdobePDFL.dll PDFL 2020/08/08-01:12:48 79.395135 79.395135 AdobePDFSettings.dll Adobe PDFSettings 1.07 AdobePIP.dll Adobe Product Improvement Program 8.1.0.68.49183 AdobeSVGAGM.dll AdobeSVGAGM 79.625377 79.625377 AdobeXMP.dll Adobe XMP Core 2021/01/12-15:52:29 79.164648 79.164648 AdobeXMPFiles.dll Adobe XMP Files 2021/01/12-15:52:29 79.164648 79.164648 AdobeXMPScript.dll Adobe XMP Script 2021/01/12-15:52:29 79.164648 79.164648 adobe_caps.dll Adobe CAPS 10,0,0,6 AGM.dll AGM 2021/01/14-01:08:54 79.626696 79.626696 AID.dll AID DLL 1.0.0.12 AIDE.dll AIDE 2020/11/20-03:50:06 79.625451 79.625451 ARE.dll ARE 2021/01/14-01:08:54 79.626696 79.626696 AXE8SharedExpat.dll AXE8SharedExpat 2020/08/01-01:08:32 79.622927 79.622927 AXEDOMCore.dll AXEDOMCore 2020/08/01-01:08:32 79.622927 79.622927 Bananas.dll photoshopdiva 17.1.1 Bib.dll BIB 2021/01/14-01:08:54 79.626696 79.626696 BIBUtils.dll BIBUtils 2021/01/14-01:08:54 79.626696 79.626696 boost_date_time.dll photoshopdva 14.0.0 boost_filesystem.dll photoshopdva 14.0.0 boost_program_options.dll photoshopdva 14.0.0 boost_regex.dll photoshopdva 14.0.0 boost_system.dll photoshopdva 14.0.0 boost_threads.dll photoshopdva 14.0.0 CoolType.dll CoolType 2021/01/14-01:08:54 79.626696 79.626696 CRClient.dll Adobe Crash Reporter Client DLL 4.6.0.0 DirectML.dll DirectML Redistributable Library 1.0.200514-0504.1.redist-dml-2.1.0.dcd3712 dnssd.dll Bonjour 3,0,0,2 dvaaccelerate.dll photoshopdva 14.0.0 dvaappsupport.dll photoshopdva 14.0.0 dvaaudiodevice.dll photoshopdva 14.0.0 dvacore.dll photoshopdva 14.0.0 dvacrashhandler.dll Adobe Audition CC 2017 10.0.0 dvamarshal.dll photoshopdva 14.0.0 dvamediatypes.dll photoshopdva 14.0.0 dvametadata.dll photoshopdva 14.0.0 dvametadataapi.dll photoshopdva 14.0.0 dvametadataui.dll photoshopdva 14.0.0 dvanet.dll photoshopdva 14.0.0 dvaplayer.dll photoshopdva 14.0.0 dvascripting.dll photoshopdva 14.0.0 dvatransport.dll photoshopdva 14.0.0 dvaui.dll photoshopdva 14.0.0 dvaunittesting.dll photoshopdva 14.0.0 dvavulcansupport.dll photoshopdva 14.0.0 dynamic-torqnative.dll Unified Extensibility Platform uxp-4.3.2.60 dynamiclink.dll photoshopdva 14.0.0 ExtendScript.dll ExtendScript 2019/07/29-10:07:31 82.2 82.2 icucnv66.dll International Components for Unicode Build dev.1a8973dfe99250a665e321702b3d76963c65bdfe icudt66.dll International Components for Unicode Build dev.1a8973dfe99250a665e321702b3d76963c65bdfe icuuc66.dll International Components for Unicode Build dev.1a8973dfe99250a665e321702b3d76963c65bdfe igestep30.dll IGES Reader 9.3.0.113 ippcc.dll ippCC. Intel(R) Integrated Performance Primitives. Color Conversion. 2020.0.1 (r0x35c5ec66) ippcck0.dll ippCC. Intel(R) Integrated Performance Primitives. Color Conversion. 2020.0.1 (r0x35c5ec66) ippccl9.dll ippCC. Intel(R) Integrated Performance Primitives. Color Conversion. 2020.0.1 (r0x35c5ec66) ippccy8.dll ippCC. Intel(R) Integrated Performance Primitives. Color Conversion. 2020.0.1 (r0x35c5ec66) ippcore.dll core. Intel(R) Integrated Performance Primitives. Core Library. 2020.0.1 (r0x35c5ec66) ippcv.dll ippCV. Intel(R) Integrated Performance Primitives. Computer Vision. 2020.0.1 (r0x35c5ec66) ippcvk0.dll ippCV. Intel(R) Integrated Performance Primitives. Computer Vision. 2020.0.1 (r0x35c5ec66) ippcvl9.dll ippCV. Intel(R) Integrated Performance Primitives. Computer Vision. 2020.0.1 (r0x35c5ec66) ippcvy8.dll ippCV. Intel(R) Integrated Performance Primitives. Computer Vision. 2020.0.1 (r0x35c5ec66) ippi.dll ippIP. Intel(R) Integrated Performance Primitives. Image Processing. 2020.0.1 (r0x35c5ec66) ippik0.dll ippIP. Intel(R) Integrated Performance Primitives. Image Processing. 2020.0.1 (r0x35c5ec66) ippil9.dll ippIP. Intel(R) Integrated Performance Primitives. Image Processing. 2020.0.1 (r0x35c5ec66) ippiy8.dll ippIP. Intel(R) Integrated Performance Primitives. Image Processing. 2020.0.1 (r0x35c5ec66) ipps.dll ippSP. Intel(R) Integrated Performance Primitives. Signal Processing. 2020.0.1 (r0x35c5ec66) ippsk0.dll ippSP. Intel(R) Integrated Performance Primitives. Signal Processing. 2020.0.1 (r0x35c5ec66) ippsl9.dll ippSP. Intel(R) Integrated Performance Primitives. Signal Processing. 2020.0.1 (r0x35c5ec66) ippsy8.dll ippSP. Intel(R) Integrated Performance Primitives. Signal Processing. 2020.0.1 (r0x35c5ec66) ippvm.dll ippVM. Intel(R) Integrated Performance Primitives. Vector Math. 2020.0.1 (r0x35c5ec66) ippvmk0.dll ippVM. Intel(R) Integrated Performance Primitives. Vector Math. 2020.0.1 (r0x35c5ec66) ippvml9.dll ippVM. Intel(R) Integrated Performance Primitives. Vector Math. 2020.0.1 (r0x35c5ec66) ippvmy8.dll ippVM. Intel(R) Integrated Performance Primitives. Vector Math. 2020.0.1 (r0x35c5ec66) JP2KLib.dll JP2KLib 2020/11/09-12:12:23 79.277020 79.277020 libifcoremd.dll Intel(r) Visual Fortran Compiler 10.0 (Update A) libiomp5md.dll Intel(R) OpenMP* Runtime Library 5.0 libmmd.dll Intel(R) C/C++/Fortran Compiler Mainline libzip.dll photoshopdva 14.0.0 LogSession.dll LogSession 8.1.0.68.49183 mediacoreif.dll photoshopdva 14.0.0 Microsoft.AI.MachineLearning.dll Microsoft® Windows® Operating System 1.3.20200515.1.eb5da13 MPS.dll MPS 2020/12/17-01:11:32 79.625947 79.625947 onnxruntime.dll Microsoft® Windows® Operating System 1.3.20200515.1.eb5da13 opencv_world440.dll OpenCV library 4.4.0 Photoshop.dll Adobe Photoshop 2021 22.2 Plugin.dll Adobe Photoshop 2021 22.2 PlugPlugExternalObject.dll Adobe(R) CEP PlugPlugExternalObject Standard Dll (64 bit) 10.1.0 PlugPlugOwl.dll Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit) 10.1.0.15 PSCloud.dll 1.0.0.1 PSViews.dll Adobe Photoshop 2021 22.2 ScCore.dll ScCore 2019/07/29-10:07:31 82.2 82.2 SVGRE.dll SVGRE 79.623146 79.623146 svml_dispmd.dll Intel(R) C/C++/Fortran Compiler Mainline tbb.dll Intel(R) Threading Building Blocks for Windows 2020, 2, 2020, 0311 tbbmalloc.dll Intel(R) Threading Building Blocks for Windows 2020, 2, 2020, 0311 TfFontMgr.dll FontMgr 9.3.0.113 TfKernel.dll Kernel 9.3.0.113 TFKGEOM.dll Kernel Geom 9.3.0.113 TFUGEOM.dll Adobe, UGeom© 9.3.0.113 utest.dll photoshopdva 14.0.0 VulcanControl.dll Vulcan Application Control Library 6.6.0.000 VulcanMessage5.dll Vulcan Message Library 6.6.0.000 WinRTSupport.dll Adobe Photoshop Windows RT Support 22.2.0.0 WRServices.dll WRServices Build 16.0.0.4539038 16.0.0.4539038 wu3d.dll U3D Writer 9.3.0.113 Unified Extensibility Platform uxp-4.3.2.60 Required plugins: Accented Edges 22.2 - from the file “Filter Gallery.8bf” Adaptive Wide Angle 22.2 - from the file “Adaptive Wide Angle.8bf” Angled Strokes 22.2 - from the file “Filter Gallery.8bf” Average 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “Average.8bf” Bas Relief 22.2 - from the file “Filter Gallery.8bf” BMP 22.2 - from the file “Standard MultiPlugin.8bf” Camera Raw 16.5 - from the file “Camera Raw.8bi” Camera Raw Filter 16.5 - from the file “Camera Raw.8bi” Chalk && Charcoal 22.2 - from the file “Filter Gallery.8bf” Charcoal 22.2 - from the file “Filter Gallery.8bf” Chrome 22.2 - from the file “Filter Gallery.8bf” Cineon 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “Cineon.8bi” Clouds 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “Clouds.8bf” Color Halftone 22.2 - from the file “Standard MultiPlugin.8bf” Colored Pencil 22.2 - from the file “Filter Gallery.8bf” Conté Crayon 22.2 - from the file “Filter Gallery.8bf” Craquelure 22.2 - from the file “Filter Gallery.8bf” Crop and Straighten Photos 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “CropPhotosAuto.8li” Crop and Straighten Photos Filter 22.2 - from the file “Standard MultiPlugin.8bf” Crosshatch 22.2 - from the file “Filter Gallery.8bf” Crystallize 22.2 - from the file “Standard MultiPlugin.8bf” Cutout 22.2 - from the file “Filter Gallery.8bf” Dark Strokes 22.2 - from the file “Filter Gallery.8bf” De-Interlace 22.2 - from the file “Standard MultiPlugin.8bf” Dicom 22.2 - from the file “Dicom.8bi” Difference Clouds 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “Clouds.8bf” Diffuse Glow 22.2 - from the file “Filter Gallery.8bf” Displace 22.2 - from the file “Standard MultiPlugin.8bf” Dry Brush 22.2 - from the file “Filter Gallery.8bf” Entropy 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “statistics.8ba” Export Color Lookup Tables 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “Export3DLUT.8be” Extrude 22.2 - from the file “Standard MultiPlugin.8bf” FastCore Routines 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “FastCore.8bx” Fibers 22.2 - from the file “Standard MultiPlugin.8bf” Film Grain 22.2 - from the file “Filter Gallery.8bf” Filter Gallery 22.2 - from the file “Filter Gallery.8bf” Fresco 22.2 - from the file “Filter Gallery.8bf” Glass 22.2 - from the file “Filter Gallery.8bf” Glowing Edges 22.2 - from the file “Filter Gallery.8bf” Grain 22.2 - from the file “Filter Gallery.8bf” Graphic Pen 22.2 - from the file “Filter Gallery.8bf” Halftone Pattern 22.2 - from the file “Filter Gallery.8bf” Halide Bottlenecks 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “HalideBottlenecks.8bx” HDRMergeUI 22.2 - from the file “HDRMergeUI.8bf” HSB/HSL 22.2 - from the file “Standard MultiPlugin.8bf” IFF Format 22.2 - from the file “Standard MultiPlugin.8bf” IGES 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “U3D.8bi” Ink Outlines 22.2 - from the file “Filter Gallery.8bf” JPEG 2000 22.2 - from the file “JPEG2000.8bi” Kurtosis 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “statistics.8ba” Lens Blur 22.2 - from the file “Lens Blur.8bf” Lens Correction 22.2 - from the file “Lens Correction.8bf” Lens Flare 22.2 - from the file “Standard MultiPlugin.8bf” Liquify 22.2 - from the file “Liquify.8bf” Matlab Operation 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “ChannelPort.8bf” Maximum 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “statistics.8ba” Mean 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “statistics.8ba” Measurement Core 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “MeasurementCore.8me” Median 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “statistics.8ba” Mezzotint 22.2 - from the file “Standard MultiPlugin.8bf” Minimum 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “statistics.8ba” MMXCore Routines 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “MMXCore.8bx” Mosaic Tiles 22.2 - from the file “Filter Gallery.8bf” Multiprocessor Support 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “MultiProcessor Support.8bx” Neon Glow 22.2 - from the file “Filter Gallery.8bf” Note Paper 22.2 - from the file “Filter Gallery.8bf” NTSC Colors 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “NTSC Colors.8bf” Ocean Ripple 22.2 - from the file “Filter Gallery.8bf” OpenEXR 22.2 - from the file “Standard MultiPlugin.8bf” Paint Daubs 22.2 - from the file “Filter Gallery.8bf” Palette Knife 22.2 - from the file “Filter Gallery.8bf” Patchwork 22.2 - from the file “Filter Gallery.8bf” Paths to Illustrator 22.2 - from the file “Standard MultiPlugin.8bf” PCX 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “PCX.8bi” Photocopy 22.2 - from the file “Filter Gallery.8bf” Picture Package Filter 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “ChannelPort.8bf” Pinch 22.2 - from the file “Standard MultiPlugin.8bf” Pixar 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “Pixar.8bi” Plaster 22.2 - from the file “Filter Gallery.8bf” Plastic Wrap 22.2 - from the file “Filter Gallery.8bf” Pointillize 22.2 - from the file “Standard MultiPlugin.8bf” Polar Coordinates 22.2 - from the file “Standard MultiPlugin.8bf” Portable Bit Map 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “PBM.8bi” Poster Edges 22.2 - from the file “Filter Gallery.8bf” PRC 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “U3D.8bi” Radial Blur 22.2 - from the file “Standard MultiPlugin.8bf” Radiance 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “Radiance.8bi” Range 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “statistics.8ba” Render Color Lookup Grid 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “Export3DLUT.8be” Reticulation 22.2 - from the file “Filter Gallery.8bf” Ripple 22.2 - from the file “Standard MultiPlugin.8bf” Rough Pastels 22.2 - from the file “Filter Gallery.8bf” Save for Web 22.2 - from the file “Save for Web.8be” ScriptingSupport 22.2 - from the file “ScriptingSupport.8li” Shake Reduction 22.2 - from the file “Shake Reduction.8bf” Shear 22.2 - from the file “Standard MultiPlugin.8bf” Skewness 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “statistics.8ba” Smart Blur 22.2 - from the file “Standard MultiPlugin.8bf” Smudge Stick 22.2 - from the file “Filter Gallery.8bf” Solarize 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “Solarize.8bf” Spaces 22.2 - from the file “Spaces.8li” Spatter 22.2 - from the file “Filter Gallery.8bf” Spherize 22.2 - from the file “Standard MultiPlugin.8bf” Sponge 22.2 - from the file “Filter Gallery.8bf” Sprayed Strokes 22.2 - from the file “Filter Gallery.8bf” Stained Glass 22.2 - from the file “Filter Gallery.8bf” Stamp 22.2 - from the file “Filter Gallery.8bf” Standard Deviation 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “statistics.8ba” Sumi-e 22.2 - from the file “Filter Gallery.8bf” Summation 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “statistics.8ba” Targa 22.2 - from the file “Standard MultiPlugin.8bf” Texturizer 22.2 - from the file “Filter Gallery.8bf” Tiles 22.2 - from the file “Standard MultiPlugin.8bf” Torn Edges 22.2 - from the file “Filter Gallery.8bf” Twirl 22.2 - from the file “Standard MultiPlugin.8bf” U3D 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “U3D.8bi” Underpainting 22.2 - from the file “Filter Gallery.8bf” Vanishing Point 22.2 - from the file “VanishingPoint.8bf” Variance 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “statistics.8ba” Water Paper 22.2 - from the file “Filter Gallery.8bf” Watercolor 22.2 - from the file “Filter Gallery.8bf” Wave 22.2 - from the file “Standard MultiPlugin.8bf” WIA Support 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “WIASupport.8li” Wind 22.2 - from the file “Standard MultiPlugin.8bf” Wireless Bitmap 22.2 (20210202.r.183 2021/02/02: a176e5849fa) - from the file “WBMP.8bi” ZigZag 22.2 - from the file “Standard MultiPlugin.8bf” Optional and third party plugins: ScriptListener 13.0 - from the file “C:\Program Files\Adobe\Adobe Photoshop 2021\Plug-ins\ScriptListener.8li” Duplicate and Disabled plugins: NONE Plugins that failed to load: NONE Unified Extensibility Platform - Extensions: Home Screen (Loaded) 3.8.1.5 - from the file "C:\Program Files\Adobe\Adobe Photoshop 2021\Required\UXP/\com.adobe.ccx.start\" CDO: 1.82.0 CmdN: 1.5.18 CDP: 1.106.0 Unified Panel (Loaded) 1.2.0.13 - from the file "C:\Program Files\Adobe\Adobe Photoshop 2021\Required\UXP/\com.adobe.unifiedpanel\" ccx-timeline (Prepared) 2.6.27.0 - from the file "C:\Program Files\Adobe\Adobe Photoshop 2021\Required\UXP/\com.adobe.ccx.timeline\" Neural Filters (Prepared) 1.4.6.0 - from the file "C:\Program Files\Adobe\Adobe Photoshop 2021\Required\UXP/\com.adobe.nfp.gallery\" Photoshop UXP Export-As (Prepared) 5.3.1.0 - from the file "C:\Program Files\Adobe\Adobe Photoshop 2021\Required\UXP/\com.adobe.photoshop.exportAs\" Photoshop Personalization (Loaded) 1.0.0.0 - from the file "C:\Program Files\Adobe\Adobe Photoshop 2021\Required\UXP/\com.adobe.photoshop.personalization\" Plugins Panel (Prepared) 1.2.0.0 - from the file "C:\Program Files\Adobe\Adobe Photoshop 2021\Required\UXP/\com.adobe.pluginspanel\" Extensions: NONE Installed TWAIN devices: NONE
... View more