-
Notifications
You must be signed in to change notification settings - Fork 87
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] Can I change the transparency of all handwriting uniformly? #55
Comments
Yes, you can export the state history and import that state history the next time, allowing you to change the previous edits. The example in the dev branch here shows you how to do it. |
Thanks for your reply and thanks for the wonderful project,it's help a lot…
Can I change the transparency of all handwriting uniformly?
|
Currently, it's not possible to change the transparency from the drawing. However, I have put it on my roadmap here and will release it with the new version |
Okay, thank you very much. My current project requirement is to adjust the transparency of all handwriting, including those that have already been drawn. Do I currently have any methods to implement this feature? |
Currently, there's no way to do this. But I can try to add this feature for you. |
You are so kind, thank you so much! |
Sorry to bother you again. Thank you very much. |
Currently, it's not possible to listen to the text input field. However, I will add a callback for you where you can listen to it. I can't say exactly when I'll have time to do it, but I'll definitely do it today and text you here after I upload it. I will also post then an example of how you can listen to it. |
Okay, I have now released version ProImageEditor.asset(
'demo.jpg',
key: editorKey,
callbacks: ProImageEditorCallbacks(
textEditorCallbacks: TextEditorCallbacks(
onChanged: (value) {
print(value);
},
onEditingComplete: () {
print('onEditingComplete');
},
onSubmitted: (value) {
print(value);
},
),
),
) Btw, if you have any further questions, I'd appreciate it if you could initiate a new Q&A thread in the discuss-tab. This would be beneficial for other users, allowing them to find answers to similar questions directly. |
Thank you so much!! |
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
Can I change the transparency of all handwriting uniformly?
Also, when I save the currently edited image, can I modify the previous edits the next time I open it?
thx!
The text was updated successfully, but these errors were encountered: