发送不同格式图片 (jpg/HEIC/png/gif/raw/bmp/tif/pcx/tga/exif/fpx/svg/psd/cdr/pcd/dxf/ufo/eps/ai/WMF/webp/avif等)
时间: 2023-12-20 17:05:22 浏览: 192
可以上传多种格式的文件和图片
以下是发送不同格式图片的示例代码:
1. 发送jpg格式图片:
```html
<input type="file" accept="image/jpeg" />
```
2. 发送png格式图片:
```html
<input type="file" accept="image/png" />
```
3. 发送gif格式图片:
```html
<input type="file" accept="image/gif" />
```
4. 发送bmp格式图片:
```html
<input type="file" accept="image/bmp" />
```
5. 发送tif格式图片:
```html
<input type="file" accept="image/tiff" />
```
6. 发送webp格式图片:
```html
<input type="file" accept="image/webp" />
```
请注意,以上示例代码中的`accept`属性用于指定可接受的文件类型。您可以根据需要修改`accept`属性的值来发送不同格式的图片。
阅读全文