如何使用 SDWebImage 库加载图像

How to load images using SDWebImage library

您好,我正在使用 SDWebImage 加载图片,没问题

这里我从服务中获取图像,我想调整这些图像的大小,我想使用 SDWebImage

加载它们

为此我写了下面的代码

Obj.imageYH---> this is imageURL

  NSData *imageData = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:Obj.imageYH]];

    UIImage *actualImage = [UIImage imageWithData:imageData];
    UIGraphicsBeginImageContext(CGSizeMake(150, 150));
    [actualImage drawInRect:CGRectMake(0,0,150, 150)];
    UIImage* newImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    NSData *smallData = UIImagePNGRepresentation(newImage);

    NSString *Finalstring = [[NSString alloc] initWithData:smallData encoding:NSUTF8StringEncoding] ;


    [Mainimage sd_setImageWithURL:[NSURL URLWithString: Finalstring] placeholderImage:[UIImage imageNamed:@"collectionViewIcon.png"]];

但是在上面的代码中,我在 Finalstring 中得到了空值。如何调整它的大小以及如何使用 SDWebImage?

加载图像
 SDWebImageManager *manager = [SDWebImageManager sharedManager];
 [manager downloadWithURL:url delegate:self options:0 success:^(UIImage
 *image)  {
     cell.profilePicture.image = [self imageByScalingAndCroppingForSize:CGSizeMake(cell.profilePicture.frame.size.width,
 cell.profilePicture.frame.size.height) image:image]; } failure:nil];

别忘了包含

#import <SDWebImage/UIImageView+WebCache.h>
@interface YourViewController : UIViewController <SDWebImageManagerDelegate>

使用下面的代码行代替您的代码:

UIImage *actualImage = [UIImage imageWithData:imageData];
UIGraphicsBeginImageContext(CGSizeMake(150, 150));
[actualImage drawInRect:CGRectMake(0,0,150, 150)];
UIImage* newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
NSData *smallData = UIImagePNGRepresentation(newImage);

[smallData writeToFile:Finalstring atomically:YES];// Finalstring is file path of resize image 

[Mainimage sd_setImageWithURL:[NSURL URLWithString: Finalstring] placeholderImage:[UIImage imageNamed:@"collectionViewIcon.png"]];

第一步:安装SDWebImage

首先,请确保您使用的是最新版本的 SDWebImage,并通过 CocoaPods 安装(不建议 link 手动更新库)。

您的 Podfile 应包含此行:

pod 'SDWebImage', '~>3.7'

之后,关闭项目目录中的Xcode项目和运行pod install。安装后使用Xcode工作区


第 2 步:使用代码

首先,你有导入库

#import <SDWebImage/UIImageView+WebCache.h>

此时,尝试清理并构建工作区。如果一切顺利,应该可以正常构建项目。

然后,在你的函数中:

SDWebImageManager *manager = [SDWebImageManager sharedManager];
[manager downloadImageWithURL:Obj.imageYH
                  options:0
                 progress:^(NSInteger receivedSize, NSInteger expectedSize) {
                     // progression tracking code, optional. 
                     // You can set the progress block to nil
                 }
                 completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished, NSURL *imageURL) {
                     if (image) {
                         // Resize your image here, then set it to UIImageView
                         Mainimage.image = [UIImage imageWithData:UIImagePNGRepresentation(image) scale:0.5f]; 
                         // resize to 0.5x, function available since iOS 6
                     }
                 }];

完成。