Class SaveFormat
Specifies the formats to be used to save images.
Inheritance
System.Object
SaveFormat
Namespace: Syncfusion.Blazor.RichTextEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class SaveFormat : Enum
Remarks
Determines how images are stored after being uploaded.
Fields
Base64
Saves the uploaded images as Base64 format.
Declaration
public const SaveFormat Base64
Field Value
Type | Description |
---|---|
SaveFormat | Base64 encoding format for images. |
Remarks
Embeds image data directly within documents.
Blob
Saves the uploaded images as Blob format.
Declaration
public const SaveFormat Blob
Field Value
Type | Description |
---|---|
SaveFormat | Blob storage format for images. |
Remarks
Suitable for large or external image file handling.