1c36cf2e9Sopenharmony_ci/*
2c36cf2e9Sopenharmony_ci * Copyright (c) 2023-2023 Huawei Device Co., Ltd.
3c36cf2e9Sopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License");
4c36cf2e9Sopenharmony_ci * you may not use this file except in compliance with the License.
5c36cf2e9Sopenharmony_ci * You may obtain a copy of the License at
6c36cf2e9Sopenharmony_ci *
7c36cf2e9Sopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
8c36cf2e9Sopenharmony_ci *
9c36cf2e9Sopenharmony_ci * Unless required by applicable law or agreed to in writing, software
10c36cf2e9Sopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
11c36cf2e9Sopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12c36cf2e9Sopenharmony_ci * See the License for the specific language governing permissions and
13c36cf2e9Sopenharmony_ci * limitations under the License.
14c36cf2e9Sopenharmony_ci */
15c36cf2e9Sopenharmony_ci
16c36cf2e9Sopenharmony_ciimport type image from '@ohos.multimedia.image';
17c36cf2e9Sopenharmony_ciimport { StringUtil } from '@ohos/common';
18c36cf2e9Sopenharmony_ci
19c36cf2e9Sopenharmony_ci/**
20c36cf2e9Sopenharmony_ci * 文件类
21c36cf2e9Sopenharmony_ci */
22c36cf2e9Sopenharmony_ciexport default class FileModel {
23c36cf2e9Sopenharmony_ci  fd: number; // 文件句柄
24c36cf2e9Sopenharmony_ci  name: string; // 文件名称
25c36cf2e9Sopenharmony_ci  path: string; //路径
26c36cf2e9Sopenharmony_ci  width: number; // 图片宽度
27c36cf2e9Sopenharmony_ci  height: number; // 图片高度
28c36cf2e9Sopenharmony_ci  imageSource: image.ImageSource;
29c36cf2e9Sopenharmony_ci
30c36cf2e9Sopenharmony_ci
31c36cf2e9Sopenharmony_ci  constructor(fd: number, name: string, path: string, width: number, height: number, imageSource: image.ImageSource) {
32c36cf2e9Sopenharmony_ci    this.fd = fd;
33c36cf2e9Sopenharmony_ci    this.name = name;
34c36cf2e9Sopenharmony_ci    this.path = path;
35c36cf2e9Sopenharmony_ci    this.width = width;
36c36cf2e9Sopenharmony_ci    this.height = height;
37c36cf2e9Sopenharmony_ci    this.imageSource = imageSource;
38c36cf2e9Sopenharmony_ci  }
39c36cf2e9Sopenharmony_ci}
40