Restrict the image uploading while uploading with large size

17 Feb 20221 minute to read

By using the Rich text editor’s ImageUploading event, you can get the image size before uploading and restrict the image to upload, when the given image size is greater than the allowed size.

In the following, we have validated the image size before uploading and determined whether the image has been uploaded or not.

@Html.EJS().RichTextEditor("editor").InsertImageSettings(obj => obj.SaveUrl("https://aspnetmvc.syncfusion.com/services/api/uploadbox/Save").Path("../Images/")).ImageUploading("onImageUploading").Render()

<script>
    function onImageUploading(args) {
    console.log("file is uploading");
    var imgSize = 500000;
    var sizeInBytes = args.fileData.size;
    if ( imgSize < sizeInBytes ) {
        args.cancel = true;
    }
    }
</script>
public class HomeController : Controller
{

    public ActionResult Index()
    {
        return View();
    }
}