mirror of
https://github.com/zebrajr/ollama-webui.git
synced 2026-01-15 12:15:13 +00:00
feat: dynamically load heic2any in channel MessageInput
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
<script lang="ts">
|
||||
import { toast } from 'svelte-sonner';
|
||||
import { v4 as uuidv4 } from 'uuid';
|
||||
import heic2any from 'heic2any';
|
||||
|
||||
import { tick, getContext, onMount, onDestroy } from 'svelte';
|
||||
|
||||
@@ -9,7 +8,7 @@
|
||||
|
||||
import { config, mobile, settings, socket, user } from '$lib/stores';
|
||||
import {
|
||||
blobToFile,
|
||||
convertHeicToJpeg,
|
||||
compressImage,
|
||||
extractInputVariables,
|
||||
getAge,
|
||||
@@ -379,7 +378,7 @@
|
||||
|
||||
reader.readAsDataURL(
|
||||
file['type'] === 'image/heic'
|
||||
? await heic2any({ blob: file, toType: 'image/jpeg' })
|
||||
? await convertHeicToJpeg(file)
|
||||
: file
|
||||
);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user