forked from Cocoanetics/DTCoreText
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDTTextAttachment.m
More file actions
299 lines (254 loc) · 7.04 KB
/
Copy pathDTTextAttachment.m
File metadata and controls
299 lines (254 loc) · 7.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
//
// DTTextAttachment.m
// CoreTextExtensions
//
// Created by Oliver on 14.01.11.
// Copyright 2011 Drobnik.com. All rights reserved.
//
#import "DTTextAttachment.h"
#import "DTCoreText.h"
#import "NSData+DTBase64.h"
@implementation DTTextAttachment
{
CGSize _originalSize;
CGSize _displaySize;
DTTextAttachmentVerticalAlignment _verticalAlignment;
id contents;
NSDictionary *_attributes;
DTTextAttachmentType contentType;
NSURL *_contentURL;
NSURL *_hyperLinkURL;
CGFloat _fontLeading;
CGFloat _fontAscent;
CGFloat _fontDescent;
}
+ (DTTextAttachment *)textAttachmentWithElement:(DTHTMLElement *)element options:(NSDictionary *)options
{
// determine type
DTTextAttachmentType attachmentType;
if ([element.tagName isEqualToString:@"img"])
{
attachmentType = DTTextAttachmentTypeImage;
}
else if ([element.tagName isEqualToString:@"video"])
{
attachmentType = DTTextAttachmentTypeVideoURL;
}
else if ([element.tagName isEqualToString:@"iframe"])
{
attachmentType = DTTextAttachmentTypeIframe;
}
else if ([element.tagName isEqualToString:@"object"])
{
attachmentType = DTTextAttachmentTypeObject;
}
else
{
return nil;
}
// determine if there is a display size restriction
CGSize maxImageSize = CGSizeZero;
NSValue *maxImageSizeValue =[options objectForKey:DTMaxImageSize];
if (maxImageSizeValue)
{
maxImageSize = [maxImageSizeValue CGSizeValue];
}
// width, height from tag
CGSize displaySize = element.size; // width/height from attributes or CSS style
CGSize originalSize = element.size;
// get base URL
NSURL *baseURL = [options objectForKey:NSBaseURLDocumentOption];
// decode URL
NSString *src = [element attributeForKey:@"src"];
NSURL *contentURL = nil;
DTImage *decodedImage = nil;
// decode content URL
if ([src hasPrefix:@"data:"])
{
NSRange range = [src rangeOfString:@"base64,"];
if (range.length)
{
NSString *encodedData = [src substringFromIndex:range.location + range.length];
NSData *decodedData = [NSData dataFromBase64String:encodedData];
decodedImage = [[DTImage alloc] initWithData:decodedData];
if (!displaySize.width || !displaySize.height)
{
displaySize = decodedImage.size;
}
}
}
else // normal URL
{
contentURL = [NSURL URLWithString:src];
if (![contentURL scheme])
{
// possibly a relative url
if (baseURL)
{
contentURL = [NSURL URLWithString:src relativeToURL:baseURL];
}
else
{
// file in app bundle
NSString *path = [[NSBundle mainBundle] pathForResource:src ofType:nil];
if (path) {
// Prevent a crash if path turns up nil.
contentURL = [NSURL fileURLWithPath:path];
}
}
}
}
DTTextAttachment *attachment = [[DTTextAttachment alloc] init];
// for local images we can get their size by inspecting them
if (attachmentType == DTTextAttachmentTypeImage)
{
// if it's a local file we need to inspect it to get it's dimensions
if (!displaySize.width || !displaySize.height)
{
// inspect local file
if ([contentURL isFileURL])
{
DTImage *image = [[DTImage alloc] initWithContentsOfFile:[contentURL path]];
originalSize = image.size;
if (!displaySize.width || !displaySize.height)
{
displaySize = originalSize;
}
}
else
{
// remote image, we have to relayout once this size is known
displaySize = CGSizeMake(1, 1); // one pixel so that loading is triggered
}
}
// we copy the link because we might need for it making the custom view
if (element.link)
{
attachment.hyperLinkURL = element.link;
}
}
// if you have no display size we assume original size
if (CGSizeEqualToSize(displaySize, CGSizeZero))
{
displaySize = originalSize;
}
// adjust the display size if there is a restriction and it's too large
CGSize adjustedSize = displaySize;
if (maxImageSize.width>0 && maxImageSize.height>0)
{
if (maxImageSize.width < displaySize.width || maxImageSize.height < displaySize.height)
{
adjustedSize = sizeThatFitsKeepingAspectRatio(displaySize, maxImageSize);
}
// still no display size? use max size
if (CGSizeEqualToSize(displaySize, CGSizeZero))
{
adjustedSize = maxImageSize;
}
}
attachment.contentType = attachmentType;
attachment.contentURL = contentURL;
attachment.contents = decodedImage;
attachment.originalSize = originalSize;
attachment.displaySize = adjustedSize;
attachment.attributes = element.attributes;
return attachment;
}
// makes a data URL of the image
- (NSString *)dataURLRepresentation
{
if ((contents==nil) || contentType != DTTextAttachmentTypeImage)
{
return nil;
}
DTImage *image = (DTImage *)contents;
NSData *data = [image dataForPNGRepresentation];
NSString *encoded = [data base64EncodedString];
return [@"data:image/png;base64," stringByAppendingString:encoded];
}
- (void)adjustVerticalAlignmentForFont:(CTFontRef)font
{
_fontLeading = CTFontGetLeading(font);
_fontAscent = CTFontGetAscent(font);
_fontDescent = CTFontGetDescent(font);
}
- (CGFloat)ascentForLayout
{
switch (_verticalAlignment)
{
case DTTextAttachmentVerticalAlignmentBaseline:
{
return _displaySize.height;
}
case DTTextAttachmentVerticalAlignmentTop:
{
return _fontAscent;
}
case DTTextAttachmentVerticalAlignmentCenter:
{
CGFloat halfHeight = (_fontAscent + _fontDescent) / 2.0f;
return halfHeight - _fontDescent + _displaySize.height/2.0f;
}
case DTTextAttachmentVerticalAlignmentBottom:
{
return _displaySize.height - _fontDescent;
}
}
}
- (CGFloat)descentForLayout
{
switch (_verticalAlignment)
{
case DTTextAttachmentVerticalAlignmentBaseline:
{
return 0;
}
case DTTextAttachmentVerticalAlignmentTop:
{
return _displaySize.height - _fontAscent;
}
case DTTextAttachmentVerticalAlignmentCenter:
{
CGFloat halfHeight = (_fontAscent + _fontDescent) / 2.0f;
return halfHeight - _fontAscent + _displaySize.height/2.0f;
}
case DTTextAttachmentVerticalAlignmentBottom:
{
return _fontDescent;
}
}
}
#pragma mark Properties
/** Mutator for originalSize. Sets displaySize to the same value as originalSize.
@param The CGSize to store in originalSize. */
- (void)setOriginalSize:(CGSize)originalSize
{
_originalSize = originalSize;
self.displaySize = _originalSize;
}
/**
Accessor for the contents instance variable. If the content type is DTTextAttachmentTypeImage this returns a DTImage instance of the contents.
@returns Contents. If it is an image, a DTImage instance is returned. Otherwise it is returned as is.
*/
- (id)contents
{
if (!contents)
{
if (contentType == DTTextAttachmentTypeImage && _contentURL && [_contentURL isFileURL])
{
DTImage *image = [[DTImage alloc] initWithContentsOfFile:[_contentURL path]];
return image;
}
}
return contents;
}
@synthesize originalSize = _originalSize;
@synthesize displaySize = _displaySize;
@synthesize contents;
@synthesize contentType;
@synthesize contentURL = _contentURL;
@synthesize hyperLinkURL = _hyperLinkURL;
@synthesize attributes = _attributes;
@synthesize verticalAlignment = _verticalAlignment;
@synthesize hyperLinkGUID;
@end