I'd like to request a native Blazor Image Component that allows to provide different parameters to control the image.
This could also help to connect it to the upload component, for user to see the image while still in browser and make some changes, i.e resizing, cropping, Black/White, before sending it to server to be stored.
Thanks!
..Ben
Hello Rodolfo,
Yes, please follow the Image Editor feature request for future status updates.
Regards,
Dimo
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.
Hello Ben,
If you need a component that exposes parameters to control an image, you should wrap a simple <img /> tag and expose the logic you need. I do not see this as a component that we should be working on, because you can us the standard razor (blazor) logic on the parameters of the standard <img /> tag.
On connecting to an Upload component - the Upload component sends a file to a server endpoint, it is not a file selector dialog that puts the file in the Blazor app code. If you want such a thing you can take a peek at our examples - we have such a FileSelector implemented for some of our Document Processing demos - you can use it as base for getting the image data into Blazor to do a preview (make sure to also review the related JS Interop). You would then have to upload the file to your server in your own code, though, which would also let you manipulate the image before uploading.
Regards,
Marin Bratanov
Progress Telerik