Is possible to save only the Layers? #268
-
I want to save only the layers. with a transparency background also I tried to clear the editorImage but that didnt work (also I think that is a bad awful idea) My last hope is to save the history and rebuild the ProImageEditor.memory with a transparent background and in the onAfterViewInit add all the history. But I think this is not optimal any suggestions? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Could you share how you are currently using the If you prefer the two-editor strategy, it should work as intended. If you haven’t already done so, ensure that the configs: ProImageEditorConfigs(
imageGenerationConfigs: const ImageGenerationConfigs(
generateImageInBackground: false,
processorConfigs: ProcessorConfigs(
processorMode: ProcessorMode.minimum
)
)
) There is also a function, generateHighQualityImage, that you could use. This function generates the image in a separate thread (web worker/isolated), but it requires you to provide the raw image data. To obtain the raw image data, you'll need to wrap all layers inside a Anyway, it would be best if you shared the code for your |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
So far having 2 editors is the solution for my case |
Beta Was this translation helpful? Give feedback.
So far having 2 editors is the solution for my case