Music_Player3/Pods/DownloadButton/Pod/Classes/UIImage+PKDownloadButton.m
2024-06-03 09:48:39 +08:00

68 lines
2.3 KiB
Objective-C

//
// UIImage+PKDownloadButton.m
// Download
//
// Created by Pavel on 31/05/15.
// Copyright (c) 2015 Katunin. All rights reserved.
//
#import "UIImage+PKDownloadButton.h"
@implementation UIImage (PKDownloadButton)
+ (UIImage *)stopImageOfSize:(CGFloat)size color:(UIColor *)color {
UIGraphicsBeginImageContextWithOptions(CGSizeMake(size, size), NO, 1.0f);
CGContextRef context = UIGraphicsGetCurrentContext();
[color setStroke];
CGRect stopImageRect = CGRectMake(0.f, 0.f, size, size);
CGContextSetFillColorWithColor(context, color.CGColor);
CGContextAddRect(context, stopImageRect);
CGContextFillRect(context, stopImageRect);
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
+ (UIImage *)buttonBackgroundWithColor:(UIColor *)color {
UIGraphicsBeginImageContextWithOptions(CGSizeMake(30.f, 30.f), NO, 0.0f);
CGContextRef context = UIGraphicsGetCurrentContext();
[color setStroke];
UIBezierPath *bezierPath = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(2.f, 2.f, 26.f, 26.f)
cornerRadius:4.f];
CGContextSetStrokeColorWithColor(context, color.CGColor);
bezierPath.lineWidth = 1.f;
[bezierPath stroke];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return [image resizableImageWithCapInsets:UIEdgeInsetsMake(10.f, 10.f, 10.f, 10.f)];
}
+ (UIImage *)highlitedButtonBackgroundWithColor:(UIColor *)color {
UIGraphicsBeginImageContextWithOptions(CGSizeMake(30.f, 30.f), NO, 0.0f);
CGContextRef context = UIGraphicsGetCurrentContext();
[color setStroke];
UIBezierPath *bezierPath = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(2.f, 2.f, 26.f, 26.f)
cornerRadius:4.f];
CGContextSetStrokeColorWithColor(context, color.CGColor);
bezierPath.lineWidth = 1.f;
[bezierPath stroke];
[color setFill];
[bezierPath fill];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return [image resizableImageWithCapInsets:UIEdgeInsetsMake(10.f, 10.f, 10.f, 10.f)];
}
@end