Svelte Image Components demo
Generate small, compressed images that can be stored directly in database fields instead of requiring separate file storage infrastructure. Perfect for profile pictures, avatars, thumbnails, and other small images that need to be stored alongside your data.
This repository contains three Svelte components for working with images:
ImageInput: A component that accepts images via drag and drop, clipboard paste, or by clicking a button to open a file dialog. It then allows you to resize and crop the image before creating a compresseddata:URL. It is a combination of the ImageLoader and ImageEncoder components described below.ImageLoader: A component that allows you to load images via drag and drop, clipboard paste, or by clicking a button to open a file dialog.ImageEncoder: A component for creating compresseddata:URLs from images in real time. You can also move and resize the image before encoding.
It supercedes the svelte-image-encoder component, which is now deprecated.
npm install svelte-image-inputThis Svelte component combines the functionality of the ImageEncoder and ImageLoader components, providing an all-in-one solution for loading images, resizing, cropping, and creating data: URLs.
When an image is not loaded, the component displays the ImageLoader component, which allows you to load images via drag and drop, clipboard paste, or by clicking a button to open a file dialog.
Once an image is loaded, the component switches to display the ImageEncoder component, which allows you to move and resize the image before encoding it as a data: URL. A close button (X) appears in the top-right corner, allowing you to clear the image and return to the ImageLoader component.
<script>
import {ImageInput} from 'svelte-image-input';
let url = '';
let src = '';
</script>
<ImageInput
bind:url
{src}
width={256}
height={256}
quality={0.5}
realTime={false}
crossOrigin={false}
classes=""
showCompressedResult={false}
prefixText="Drop, paste, or"
buttonText="load an image"
pasteScope="window"
/>src?: string- The source URL of the image to be displayed in the canvas. Defaults to an empty string.url?: string- The data URL of the modified image. Updated on pan and zoom actions. This is an output property, so you must use thebind:directive to bind it to a variable.width?: number- The width of the canvas. Defaults to256.height?: number- The height of the canvas. Defaults to256.quality?: number- The image quality (0-1) for the JPEG output. Defaults to0.5.realTime?: boolean- Whether to update the data URL in real time. Defaults tofalse.crossOrigin?: boolean- Whether to allow cross-origin images. Defaults tofalse.classes?: string- A space-separated list of classes to apply to the canvas element.showCompressedResult?: boolean- Whether to show the compressed result. Defaults tofalse.
prefixText?: string- Text displayed before the button in ImageLoader. Default:"Drop, paste, or". See i18n documentation.buttonText?: string- Text displayed on the load button in ImageLoader. Default:"load an image". See i18n documentation.pasteScope?: 'window' | 'component'- Control paste event scope. Default:'window'. See paste scope documentation.'window': Paste events anywhere on the page trigger image loading (default)'component': Paste events only work when the component is focused
Paste, drop or load images in Svelte
This Svelte component allows you to load images via drag and drop, clipboard paste, or by clicking a button to open a file dialog. It handles various input methods and calls a callback with the loaded image's data URL.
To use the component, add the ImageLoader component to your Svelte app and provide the onImageLoaded callback.
<script>
import {ImageLoader} from 'svelte-image-input';
function handleImageLoaded(dataUrl) {
console.log('Image loaded:', dataUrl);
}
</script>
<ImageLoader
onImageLoaded={handleImageLoaded}
prefixText="Drop, paste, or"
buttonText="load an image"
pasteScope="window"
/>onImageLoaded?: (dataUrl: string) => void- Callback function called when an image is loaded. Receives the data URL as a string.prefixText?: string- Text displayed before the button. Default:"Drop, paste, or". See i18n documentation.buttonText?: string- Text displayed on the load button. Default:"load an image". See i18n documentation.pasteScope?: 'window' | 'component'- Control paste event scope. Default:'window'. See paste scope documentation.'window': Paste events anywhere on the page trigger image loading (default)'component': Paste events only work when the component is focused
Pan, Zoom, and Compress Images in Svelte
This Svelte component allows you to display an image in a canvas, apply pan and zoom actions to it, and create compressed data: URLs from images in real time. The generated data URL is a small, base64-encoded JPEG string that can be stored directly in database string columns, eliminating the need for separate file storage systems or CDN infrastructure.
Key Benefits:
- Simple storage: Store images directly in your database alongside related data
- No file system required: No need for S3, cloud storage, or file servers
- Easy serialization: Data URLs work seamlessly with JSON APIs and can be sent/received in HTTP requests
- Small file sizes: Configurable quality settings (default 0.5) produce compact images ideal for thumbnails and profile pictures
- Real-time preview: See the compressed result as you pan and zoom
The component provides a customizable user experience with various configuration options. The original intended use is for profile picture editors, allowing users to resize and crop images before storing them as small data: URLs in database fields.
<script>
import {ImageEncoder} from 'svelte-image-input';
let outputUrl = '';
let imageUrl = 'https://example.com/image.jpg';
</script>
<ImageEncoder
bind:url={outputUrl}
src={imageUrl}
width={256}
height={256}
quality={0.5}
realTime={false}
crossOrigin={false}
classes=""
showCompressedResult={false}
/>src: string- Required. The source URL of the image to be displayed in the canvas.url: string- Required. The data URL of the modified image. Updated on pan and zoom actions. This is an output property, so you must use thebind:directive to bind it to a variable.quality: number- The image quality (0-1) for the JPEG output. Defaults to0.5.width: number- The width of the canvas. Defaults to256.height: number- The height of the canvas. Defaults to256.realTime: boolean- Whether to update the data URL in real time. Defaults tofalse.crossOrigin: boolean- Whether to allow cross-origin images. Defaults tofalse.classes: string- A space-separated list of classes to apply to the canvas element.showCompressedResult: boolean- Whether to show the compressed result. Defaults tofalse.
For advanced usage and customization options, see the following documentation:
- Theming Guide - Customize component appearance with CSS variables
- Internationalization (i18n) - Support multiple languages and customize text
- Paste Event Scope - Control how paste events are handled