Dependency: wasm instantiate error

I am trying to develop a new plugin for Photoshop using a Web Assembly (wasm) module. I am generating the wasm file and the associated Javascript file using emscripten applied to a C++ source file. I can successfully generate and run a very simple example file using Adobe UXP Developer Tools. However, I have yet to successfully run the more complex C++ program that I am targeting. Instead, I get the error ‘still waiting on run dependency’, ‘dependency: wasm instantiate’. As far as I can tell the setup for my complex code is no different from that for the simple code. The basic difference is the contents of the C++ file.

All of the preceding applies to Photoshop 2024. Now that Photoshop 2025 has just become available even the simple example will not run. It generates the message “Adobe Photoshop has encountered a problem and needs to close”.

So, as of today, a new user trying to run a simple wasm program based on C++ will necessarily fail. That new user will not realise that the deficiency is in Photoshop and not a deficiency in his/her programming. That of course raises an important question. Is my inability to run my wasm code on Photoshop 2024 a deficiency on my part or a deficiency of Photoshop 2024? I have downloaded a copy of Photoshop 2024 and I could continue to try and get my code to run, but would I be wasting my time? If anyone has any relevant experience or insights, I would be grateful to hear them.

Clearly Adobe needs to rectify Photoshop 2025 so that at least it runs a simple WASM example. When they do this, could I please make a plea that they try to make it more robust for more complex examples.

You might want a read a book: Professional Photoshop UXP

I didn’t try wasm in UXP myself yet.

Thank you. Yes, I already have a copy of the book. I would recommend it for most purposes but unfortunately the section on WASM is largely based on React rather than C++. My initial impression was that there wasn’t that much read across from one to the other, but maybe I should go back and look again.

As it is I have paid for a book and I have invested considerable time this year familiarising with UXP and writing code. All the more disappointing that Photoshop 2025 is a retrograde step.

I am not sure if I understand… did it work in 2024 and in 2025 it is not working? Or it didn’t work in 2024 and in 2025 it is broken even more?

I think Davide Book and this sample are the only things on the internet I am aware of about Wasm in UXP: uxp-photoshop-plugin-samples/wasm-rust-sample at main · AdobeDocs/uxp-photoshop-plugin-samples · GitHub

If you have C++ code you could try hybrid plugins instead. I tried and it worked on Windows.

If you are looking for a good documentation Photoshop and UXP are not good options to work with. Adobe extensibility documentation was not good most of the times in last 12 years. I think it improved in the years 2020-2022 and it is on the decline again.

I can’t even find documentation on supported CSS features to update my UXP Validator.

Maybe you could try Wasm in Webview.

Thank you again for your interest, I am sorry if I didn’t make myself clear.

So, the simple demo example for C++ → wasm runs on Photoshop 2024 but not on Photoshop 2025. Instead, it crashes out with the message “Adobe Photoshop has encountered a problem and needs to close”.

The actual C++ code which I am trying to run as wasm gives a debug message ‘still waiting on run dependency’, ‘dependency: wasm instantiate’ on Photoshop 2024 but on 2025 it crashes out before it can provide any debug information.

Clearly Photoshop 2025 is a retrograde update for this particular realm of processing.

Yes, I could try a hybrid plugin instead, but Adobe will only allow multiplatform hybrids in their marketplace. According to the author of ‘Professional Photoshop UXP’ (and he has reconfirmed this with Adobe recently) a hybrid plugin which only runs on Windows is not admissible.

1 Like

It is a great shame and highly discouraging that Adobe has provided a notional capability for wasm integration that now seems to be fully non-functional on the latest update of Photoshop. If they wish to see innovative new image processing then they need to provide an appropriate environment for wasm-based plugin development. I and an associate have developed a standalone online web app which offers an improvement over the Photoshop Match Colour function. (Type ‘Petapixel Terry Johnson’ into your search engine.) This App has had over 40,000 hits but it would clearly be of greater utility if it could be integrated within Photoshop. Over and above this, I have developed a new innovative method of image colour transfer aimed at a new application. (See for example, the discussion from Dec 31 onwards here https://community.adobe.com/t5/photoshop-elements-discussions/match-color-command-in-photoshop-elements/m-p/14335876#M95462). Adobe needs to provide a more stable platform for wasm-based plugins if they wish for this and other innovations to be offered to their users.

  1. Is something preventing you from making a multiplatform hybrid plugin? On several occasions, my clients reported weird bugs and those happened only on MacOS. So there is very high chance you need access to MacOS machine anyway.
  2. Do you need to be on Marketplace at all? It has few pros e.g. it is easy way to install plugin. It has built-in auto update. For free plugins when you want to upload it and forget about it… it is great. But for business, it is a pain. Only basic statistics. If someone leaves bad review you don’t see contact for that person… you can’t create discount codes yourself, you can’t refund plugin yourself, even price changes have to be approved by someone. I can’t even delete plugins I uploaded by myself that was never published. There was some issue with subscriptions… You could expect some organic traffic but it won’t make huge sales automatically. If you want to get rich you need to spend on Marketing same effort/time as you spend on development.

Out of marketplace, you can do pretty much you need without external approvals.

Thank you Jarda,

It was interesting and instructive to read your view on Marketplace. Food for thought.

I am in my mid-seventies, with a retirement income. I have no experience or access to MacOs machinery and I probably don’t want to divert my energies at this stage.

I need to think and decide what might work best for me in my circumstances.

It is a considerable nuisance that the wasm processing and support is so fragile on Photoshop. It is greatly inhibiting my plans to move forward.

I think cheap Mac Mini from “secondhand” could be like $600-700 and it should be able to do the job. I connect to it monitor, keyboard and mouse I use for my Windows machine. And it is small so no problem to store it.

The thing is even if I did not have hybrid plugin or wasm… some features still worked on Windows but not on MacOS. It is quite rare but without access to that hardware, you can’t reproduce error and is very hard to fix it.

How about running WASM in webview? It should have a modern browser inside.

QUESTION TO CHATGTP

I am running code, as generated by emscripten, under Photoshop.

The emscripten generates a ’name’.js file. Within that file is the following code (console output statements added by myself). …

*** START CODE SEGMENT

// / should be present at the end if scriptDirectory is not empty

var scriptDirectory = ‘’;

function locateFile(path) {

console.log(path);

if (Module[‘locateFile’]) {

console.log(path);

console.log(scriptDirectory);

return Module[‘locateFile’](path, scriptDirectory);

}

console.log(scriptDirectory + path);

return scriptDirectory + path;

}

*** END CODE SEGMENT

Now if I run code from a very small simple C++ program (TestPlugin.cpp) I get the following output from the Adobe UXP Developer Tools debugger.

VM15 TestPlugin.js:83 TestPlugin.wasm

VM15 TestPlugin.js:89 TestPlugin.wasm

TestPlugin.js:83 TestPlugin.wasm

TestPlugin.js:89: TestPlugin.wasm

and the code runs successfully.

If I run the code for a bigger more complex C++ program (ARcore.cpp) I get the following output from the Adobe UXP Developer Tools debugger.

ARcore.js:83 ARcore.wasm

ARcore.js:89 ARcore.wasm

ARcore.js:83 ARcore.wasm

ARcore.js:89 ARcore.wasm

ARcore.js:529 still waiting on run dependencies:

ARcore.js:531 dependency: wasm-instantiate

ARcore.js:534 (end of list)

ARcore.js:529 still waiting on run dependencies:

ARcore.js:531 dependency: wasm-instantiate

ARcore.js:534 (end of list)

Here the wasm fails to initiate, where in the first example it did.

It seems to me that the main difference here is that in the first instance VM15 is invoked but not in the second instance. How can I overcome this?

RESPONSE FROM CHATGTP:

The behavior you’re seeing could be due to differences in how the UXP environment is handling the module loading, specifically the WebAssembly instantiation. Here are some areas to investigate and potential steps to debug this issue:

  1. Review the LocateFile Function’s Return

Confirm that locateFile() is returning the correct path to the .wasm file. Since scriptDirectory is empty, it’s possible that locateFile() might not be resolving correctly for ARcore.js.

Try hardcoding the path to the .wasm file in locateFile() temporarily to verify if the loading issue is related to an incorrect path.

  1. Check the Module Loading Order

Adobe’s UXP environment can sometimes run JavaScript in different execution contexts (like VM15 in your simpler example). It’s possible that ARcore.js is loaded differently, impacting the module instantiation order.

Confirm if Module[‘locateFile’] is set and resolving correctly in both cases by checking if Module properties differ between TestPlugin.js and ARcore.js.

  1. Enable Synchronous Compilation

Sometimes, asynchronous WebAssembly compilation in larger files can cause issues. Try forcing synchronous compilation with WebAssembly.instantiate() or by setting Module.instantiateWasm to handle instantiation synchronously.

Check the UXP Developer Tools console for any clues related to async handling that may indicate wasm-instantiate is pending longer than expected.

  1. Experiment with VM Context

To mimic the behavior of VM15 with the more complex ARcore.js, try wrapping your code in an immediately-invoked function expression (IIFE) to see if that affects how it’s run in UXP’s execution context. This can sometimes help if the environment requires isolation.

OBSERVATION:

I am not entirely sure at present that I understand the response but maybe it will become clearer if I work on it.

I will be away from my desktop for a while so I thought I should post an update.

It is beginning to look as if the 6 messages in red font on the debug page are in fact commentary, even though they are flagged as 6 errors. Now that I have begun to debug beyond the ‘load wasm’ part of the code, it seems as if the wasm module has been loaded and subsequent operations are proceeding consistent with this. I will post a ‘problem solved’ comment here if and when the code runs and can I finally confirm this.

I can confirm that output of the messages ‘still waiting on run dependency’, ‘dependency: wasm instantiate’ does not prevent the wasm code from running to completion. However, the output messages are indicative that some underlying a process is being undertaken which involves significant delay. This delay applies not just for compilation of the wasm but also when the compiled plugin is run.

I have tried numerous different approaches to overcome this but none have worked.

For the present, in order to proceed with the development of my plugin I have decided to treat the symptoms rather than the cause, though I recognise that I may have to address the cause before I can release the plugin for general use. See the next entry for my temporary workaround.

For the present, I have decided to treat the symptoms rather than the cause of this issue.

The temporary fix is as follows.

Reduce the implicit time delay by a factor of twenty by amending the Emscripten generated JavaScript file such that interval timing constant is changed from 10,000 to 500. Comment out the three error messages in the function addRunDependency. (Note:- depending on your choice of compilation flags, ‘10,000’ may actually appear as ‘1e4’.)

This allows the plugin to run satisfactorily under Photoshop 2024. It does not address the fact that there is a regression in this regard under Photoshop 2025. (Critical Issue: Photoshop 2025 Crashes When Using ... - Adobe Community - 14986114)

How are you running a C++ file from your UXP plugin? I want to try either python or C++ to have faster processing in the background but I cannot find a way to do it as “exec” or nodejs is impossible to install in uxp, would you mind to share a small insight?

Thanks!

Hi photonic,

First please note that my plugin currently runs on Photoshop 2024 but not Photoshop 2025.

Please add a comment to the referenced bug report expressing your displeasure if you wish to use, on 2025, the functionality that I am currently using on 2024.

So, at present I have downloaded Photoshop 2024 (in addition to 2025) and I have installed Emscripten. The latter is very easy, so easy in fact that I have forgotten the details. I think I just went to the website and hit download.

Within the thread referenced above, I have included files (plus one direct listing) which enable you to run a test program. The Emscripten coverts the C++ code into Web Assembly which you can then run from Photoshop (2024 only at present). There are some further instructions in the file ‘TestPlugin_cpp.txt’.

To run from Photoshop, you need to update your status to ‘developer’ and download the ‘Adobe UXP Developer Tools’ facility. Load an image into Photoshop 2024, hit ‘Add Plugin’ on the Developer tool and search and load the ‘manifest.json’ file. You should then be up and running.

Please ask for further information if you require it, but generally ChatGTP has more expertise and a quicker turnaround time than myself. Good luck.

Forgot to mention:- ‘TestPlugin_cpp.txt’ should be renamed ‘TestPlugin.cpp’ etc. Adobe allows the upload of .txt files but not .cpp files. The ‘index.html’ file cannot be uploaded and so its contents are listed separately within the thread. Read the whole thread from beginning to end and it should make sense.

PLEASE NOTE: The solution proposed here is now redundant since it has been overtaken by events. A solution which seemingly circumvents ‘wasm instantiate’ is offered under ‘Critical Issue: Photoshop 2025 Crashes When Using Web Assembly-Based Plugins’ as referenced above.