LKImageKit icon indicating copy to clipboard operation
LKImageKit copied to clipboard

A high-performance image framework, including a series of capabilities such as image views, image downloader, memory caches, disk caches, image decoders and image processors.

Results 9 LKImageKit issues
Sort by recently updated
recently updated
newest added

- (void)dataWithRequest:(LKImageRequest *)request callback:(LKImageDataCallback)callback { if (![request isKindOfClass:[LKImageURLRequest class]]) { NSError *error = [LKImageError errorWithCode:LKImageErrorCodeInvalidLoader]; callback(request, nil, 0, error); return; } NSString *URL = ((LKImageURLRequest *) request).URL; NSURL *fileURL =...

inline static void LKDispatch(BOOL sync, dispatch_queue_t _Nonnull queue, dispatch_block_t _Nonnull block) { if (sync) { block(); } else { if (dispatch_queue_get_label(queue) == dispatch_queue_get_label(DISPATCH_CURRENT_QUEUE_LABEL)) { block(); } else { dispatch_sync(queue, block);...

源码为 ``` - (void)generateIdentify { if (self.processorList.count == 0) { self.identifier = self.keyForLoader; // return; ??? } self.identifier = [NSString stringWithFormat:@"%@:%@", self.keyForLoader, [LKImageProcessorManager keyForProcessorList:self.processorList]]; } ```

例如,图片使用AES128加密了,使用LKImageKit能否解密AES128?

Current cache size calculates everytime when `cacheImage: URL:` calls,which will cause unnecessary traverse.When collectionView or tableview scroll fast,this will be somehow bottleneck. So store the cost in every node may...

计算的方法好像没看到,清除的方法不知道是不是[[LKImageCacheManager defaultManager] clearAll]

没有文档,单纯看代码,走断点有点吃不消,不能完全看懂这份代码。

help wanted
good first issue

Can you add a performance test report ?