You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes, base64 images are supported. The docs will be updated accordingly.
This is not a bug. Your code just needs few adjustments.
Source="ImageSource" has to have the at sign, otherwise it's perceived as a string
the <Image Source="@ImageSource" Border="Border.Is1" /> has to have the result<Image Source="@result" Border="Border.Is1" /> . That's the reason why it showed the full image.
using (MemoryStream result = new MemoryStream()) should not be named result as you already have one.
Blazorise Version
1.4.2
What Blazorise provider are you running on?
Bootstrap5
Link to minimal reproduction, or a simple code snippet
Steps to reproduce
Upload an image using the FileEdit component
What is expected?
I expect the Cropper component to display the image I upload through the FileEdit component.
What is actually happening?
Nothing is happening to the cropper component. But the Image component also present in the code updates correctly and displays the uploaded image.
What browsers are you seeing the problem on?
Chrome, Microsoft Edge
Any additional comments?
It is not clear from the documentation if the Source of the cropper allows for base64 inputs or not.
If i use a static file from wwwroot then the cropper works.
The text was updated successfully, but these errors were encountered: