下采样冲突解决

This commit is contained in:
24186 2024-05-02 09:59:14 +08:00
parent 246a359a39
commit 69a0313b03
1 changed files with 4 additions and 1 deletions

View File

@ -17,5 +17,8 @@ import { GIFFrame } from './GIFFrame'
import worker from '@ohos.worker'; import worker from '@ohos.worker';
export interface IParseGif{ export interface IParseGif{
// gif解析 // gif解析
parseGifs:(imageinfo: ArrayBuffer, callback: (data?:GIFFrame[], err?:BusinessError|string) => void, worker?:worker.ThreadWorker,runMainThread?:boolean)=>void parseGifs:(imageinfo: ArrayBuffer,
callback: (data?:GIFFrame[], err?:BusinessError|string) => void,
request:ESObject,
worker?:worker.ThreadWorker,runMainThread?:boolean)=>void,
} }