12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- //
- // WFCCImageMessageContent.m
- // WFChatClient
- //
- // Created by heavyrain on 2017/9/2.
- // Copyright © 2017年 wildfire chat. All rights reserved.
- //
- #import "WFCCImageMessageContent.h"
- #import "WFCCNetworkService.h"
- #import "WFCCIMService.h"
- #import "WFCCUtilities.h"
- #import "Common.h"
- @implementation WFCCImageMessageContent
- + (instancetype)contentFrom:(UIImage *)image {
- WFCCImageMessageContent *content = [[WFCCImageMessageContent alloc] init];
- UInt64 recordTime = [[NSDate date] timeIntervalSince1970]*1000;
-
- NSString *path = [[WFCCUtilities getDocumentPathWithComponent:@"/IMG"] stringByAppendingPathComponent:[NSString stringWithFormat:@"img%lld.jpg", recordTime]];
-
-
- NSData *imgData = UIImageJPEGRepresentation([WFCCUtilities generateThumbnail:image withWidth:1024 withHeight:1024], 0.85);
-
- [imgData writeToFile:path atomically:YES];
-
- content.localPath = path;
- content.thumbnail = [WFCCUtilities generateThumbnail:image withWidth:120 withHeight:120];
-
- return content;
- }
- - (WFCCMessagePayload *)encode {
- WFCCMediaMessagePayload *payload = [[WFCCMediaMessagePayload alloc] init];
- payload.contentType = [self.class getContentType];
- payload.searchableContent = @"[图片]";
- payload.binaryContent = UIImageJPEGRepresentation(self.thumbnail, 0.45);
- payload.mediaType = Media_Type_IMAGE;
- payload.remoteMediaUrl = self.remoteUrl;
- payload.localMediaPath = self.localPath;
- return payload;
- }
- - (void)decode:(WFCCMessagePayload *)payload {
- if ([payload isKindOfClass:[WFCCMediaMessagePayload class]]) {
- WFCCMediaMessagePayload *mediaPayload = (WFCCMediaMessagePayload *)payload;
- self.thumbnail = [UIImage imageWithData:payload.binaryContent];
- self.remoteUrl = mediaPayload.remoteMediaUrl;
- self.localPath = mediaPayload.localMediaPath;
- }
- }
- - (UIImage *)thumbnail {
- if (!_thumbnail) {
- UIImage *image = [UIImage imageWithContentsOfFile:self.localPath];
- _thumbnail = [WFCCUtilities generateThumbnail:image withWidth:120 withHeight:120];
- }
- return _thumbnail;
- }
- + (int)getContentType {
- return MESSAGE_CONTENT_TYPE_IMAGE;
- }
- + (int)getContentFlags {
- return WFCCPersistFlag_PERSIST_AND_COUNT;
- }
- + (void)load {
- [[WFCCIMService sharedWFCIMService] registerMessageContent:self];
- }
- - (NSString *)digest {
- return @"[图片]";
- }
- @end
|