mirror of
https://gitlab1.ptb.de/waltem01/Matrix
synced 2024-11-14 00:43:50 +00:00
read image, create data url
This commit is contained in:
parent
a1d177678c
commit
ad72d2582e
@ -10,7 +10,31 @@
|
|||||||
let imageURL: string | null, lastImage: File;
|
let imageURL: string | null, lastImage: File;
|
||||||
let uploadData: UploadData;
|
let uploadData: UploadData;
|
||||||
|
|
||||||
async function sendImage() {}
|
async function fileAsDataURL(file: File, width: number, height: number): Promise<string> {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
const img = new Image();
|
||||||
|
img.onload = () => {
|
||||||
|
const canvas = document.createElement('canvas');
|
||||||
|
const context = canvas.getContext('2d');
|
||||||
|
|
||||||
|
// Set the canvas dimensions
|
||||||
|
canvas.width = width;
|
||||||
|
canvas.height = height;
|
||||||
|
|
||||||
|
// Draw the image onto the canvas, resizing it to fit the canvas
|
||||||
|
context?.drawImage(img, 0, 0, width, height);
|
||||||
|
|
||||||
|
// Convert the canvas image to a Data URL
|
||||||
|
const dataURL = canvas.toDataURL();
|
||||||
|
resolve(dataURL);
|
||||||
|
};
|
||||||
|
img.onerror = reject;
|
||||||
|
|
||||||
|
// Create an object URL for the file and set it as the image source
|
||||||
|
const objectURL = URL.createObjectURL(file);
|
||||||
|
img.src = objectURL;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function uploadImage(event: Event) {
|
function uploadImage(event: Event) {
|
||||||
// Revoke previous image url, if any
|
// Revoke previous image url, if any
|
||||||
@ -46,12 +70,11 @@
|
|||||||
<input type="file" name="image" accept="image/*" on:change={uploadImage} />
|
<input type="file" name="image" accept="image/*" on:change={uploadImage} />
|
||||||
{#if imageURL}
|
{#if imageURL}
|
||||||
<img src={imageURL} alt="User uploaded" />
|
<img src={imageURL} alt="User uploaded" />
|
||||||
{#await sendImage()}
|
{#await fileAsDataURL(lastImage, 192, 192)}
|
||||||
<p>Sending image . . .</p>
|
<p>Loading image data . . .</p>
|
||||||
<p>{uploadData.elapsed} seconds elapsed.</p>
|
<p>{uploadData.elapsed} seconds elapsed.</p>
|
||||||
{:then}
|
{:then}
|
||||||
<p>Done!</p>
|
<p>Done!</p>
|
||||||
<p>{uploadData.elapsed} seconds elapsed.</p>
|
<p>{uploadData.elapsed} seconds elapsed.</p>
|
||||||
{clearInterval(uploadData.interval)}
|
|
||||||
{/await}
|
{/await}
|
||||||
{/if}
|
{/if}
|
||||||
|
Loading…
Reference in New Issue
Block a user