NIMSDK-iOS
载入中...
搜索中...
未找到
V2NIMStorageUtil.h
浏览该文件的文档.
1//
2// V2NIMStorageUtil.h
3// NIMLib
4//
5// Created by Netease.
6// Copyright (c) 2024 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13/// 存储相关帮助类
14@interface V2NIMStorageUtil : NSObject
15
16/**
17 * 生成图片缩略链接
18 *
19 * @param url 图片原始链接
20 * @param thumbSize 缩放的尺寸
21 * @return 返回图片缩略链接
22 * @discussion
23 */
24+ (NSString *)imageThumbUrl:(NSString *)url
25 thumbSize:(NSInteger)thumbSize;
26
27/**
28 * 生成视频封面图链接
29 *
30 * @param url 视频原始链接
31 * @param offset 从第几秒开始截
32 * @return 返回生成视频封面图链接
33 * @discussion
34 */
35+ (NSString *)videoCoverUrl:(NSString *)url
36 offset:(NSInteger)offset;
37
38@end
39
40NS_ASSUME_NONNULL_END
存储相关帮助类
Definition: V2NIMStorageUtil.h:15