WFCCImageMessageContent.h 665 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // WFCCImageMessageContent.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/9/2.
  6. // Copyright © 2017年 wildfire chat. All rights reserved.
  7. //
  8. #import "WFCCMediaMessageContent.h"
  9. #import <UIKit/UIKit.h>
  10. /**
  11. 图片消息
  12. */
  13. @interface WFCCImageMessageContent : WFCCMediaMessageContent
  14. /**
  15. 构造方法
  16. @param image 图片
  17. @return 图片消息
  18. */
  19. + (instancetype)contentFrom:(UIImage *)image;
  20. /**
  21. 缩略图,自动生成
  22. */
  23. @property (nonatomic, strong)UIImage *thumbnail;
  24. /**
  25. 图片尺寸
  26. */
  27. @property (nonatomic, assign, readonly)CGSize size;
  28. /**
  29. 图片缩略图参数
  30. */
  31. @property (nonatomic, strong)NSString *thumbParameter;
  32. @end