1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-02 09:27:55 +01:00
Telegram/legacy/TelegraphKit/TGImageUtils.mm
2015-10-01 19:19:52 +03:00

923 lines
33 KiB
Plaintext

#import "TGImageUtils.h"
#import <Accelerate/Accelerate.h>
#import <libkern/OSAtomic.h>
#include <map>
#import <objc/runtime.h>
#import "TGStringUtils.h"
static bool retinaInitialized = false;
static bool isRetina()
{
static bool retina = false;
if (!retinaInitialized)
{
retina = [[UIScreen mainScreen] scale] > 1.9f;
retinaInitialized = true;
}
return retina;
}
static void addRoundedRectToPath(CGContextRef context, CGRect rect, float ovalWidth, float ovalHeight)
{
CGFloat fw, fh;
if (ovalWidth == 0 || ovalHeight == 0)
{
CGContextAddRect(context, rect);
return;
}
CGContextSaveGState(context);
CGContextTranslateCTM (context, CGRectGetMinX(rect), CGRectGetMinY(rect));
CGContextScaleCTM (context, ovalWidth, ovalHeight);
fw = CGRectGetWidth (rect) / ovalWidth;
fh = CGRectGetHeight (rect) / ovalHeight;
CGContextMoveToPoint(context, fw, fh/2);
CGContextAddArcToPoint(context, fw, fh, fw/2, fh, 1);
CGContextAddArcToPoint(context, 0, fh, 0, fh/2, 1);
CGContextAddArcToPoint(context, 0, 0, fw/2, 0, 1);
CGContextAddArcToPoint(context, fw, 0, fw, fh/2, 1);
CGContextClosePath(context);
CGContextRestoreGState(context);
}
UIImage *TGScaleImage(UIImage *image, CGSize size)
{
return TGScaleAndRoundCornersWithOffset(image, size, CGPointZero, size, 0, nil, true, nil);
}
UIImage *TGScaleAndRoundCorners(UIImage *image, CGSize size, CGSize imageSize, int radius, UIImage *overlay, bool opaque, UIColor *backgroundColor)
{
return TGScaleAndRoundCornersWithOffset(image, size, CGPointZero, imageSize, radius, overlay, opaque, backgroundColor);
}
UIImage *TGScaleAndRoundCornersWithOffset(UIImage *image, CGSize size, CGPoint offset, CGSize imageSize, int radius, UIImage *overlay, bool opaque, UIColor *backgroundColor)
{
return TGScaleAndRoundCornersWithOffsetAndFlags(image, size, offset, imageSize, radius, overlay, opaque, backgroundColor, 0);
}
UIImage *TGScaleAndRoundCornersWithOffsetAndFlags(UIImage *image, CGSize size, CGPoint offset, CGSize imageSize, int radius, UIImage *overlay, bool opaque, UIColor *backgroundColor, int flags)
{
if (CGSizeEqualToSize(imageSize, CGSizeZero))
imageSize = size;
float scale = 1.0f;
if (isRetina())
{
scale = 2.0f;
size.width *= 2;
size.height *= 2;
imageSize.width *= 2;
imageSize.height *= 2;
radius *= 2;
}
UIGraphicsBeginImageContextWithOptions(imageSize, opaque, 1.0f);
CGContextRef context = UIGraphicsGetCurrentContext();
//if (flags & TGScaleImageScaleSharper)
// CGContextSetInterpolationQuality(context, kCGInterpolationLow);
if (overlay != nil)
CGContextSaveGState(context);
if (backgroundColor != nil)
{
CGContextSetFillColorWithColor(context, backgroundColor.CGColor);
CGContextFillRect(context, CGRectMake(0, 0, imageSize.width, imageSize.height));
}
else if (opaque)
{
static UIColor *whiteColor = nil;
if (whiteColor == nil)
whiteColor = [UIColor whiteColor];
CGContextSetFillColorWithColor(context, whiteColor.CGColor);
CGContextFillRect(context, CGRectMake(0, 0, imageSize.width, imageSize.height));
}
if (radius > 0)
{
CGContextBeginPath(context);
CGRect rect = (flags & TGScaleImageRoundCornersByOuterBounds) ? CGRectMake(offset.x * scale, offset.y * scale, imageSize.width, imageSize.height) : CGRectMake(offset.x * scale, offset.y * scale, size.width, size.height);
addRoundedRectToPath(context, rect, radius, radius);
CGContextClosePath(context);
CGContextClip(context);
}
CGPoint actualOffset = CGPointEqualToPoint(offset, CGPointZero) ? CGPointMake((int)((imageSize.width - size.width) / 2), (int)((imageSize.height - size.height) / 2)) : CGPointMake(offset.x * scale, offset.y * scale);
if (flags & TGScaleImageFlipVerical)
{
CGContextTranslateCTM(context, actualOffset.x + size.width / 2, actualOffset.y + size.height / 2);
CGContextScaleCTM(context, 1.0f, -1.0f);
CGContextTranslateCTM(context, -actualOffset.x - size.width / 2, -actualOffset.y - size.height / 2);
}
[image drawInRect:CGRectMake(actualOffset.x, actualOffset.y, size.width, size.height) blendMode:kCGBlendModeCopy alpha:1.0f];
if (overlay != nil)
{
CGContextRestoreGState(context);
if (flags & TGScaleImageScaleOverlay)
{
CGContextScaleCTM(context, scale, scale);
[overlay drawInRect:CGRectMake(0, 0, imageSize.width / scale, imageSize.height / scale)];
}
else
{
[overlay drawInRect:CGRectMake(0, 0, overlay.size.width * scale, overlay.size.height * scale)];
}
}
UIImage *result = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return result;
}
UIImage *TGScaleAndBlurImage(NSData *data, __unused CGSize size, __autoreleasing NSData **blurredData)
{
CFAbsoluteTime startTime = CFAbsoluteTimeGetCurrent();
UIImage *image = [[UIImage alloc] initWithData:data];
//image = TGScaleImageToPixelSize(image, CGSizeMake(128, 128));
float blur = 0.05f;
int boxSize = (int)(blur * 100);
boxSize = boxSize - (boxSize % 2) + 1;
CGImageRef img = image.CGImage;
vImage_Buffer inBuffer, outBuffer;
vImage_Error error;
void *pixelBuffer = NULL;
CGDataProviderRef inProvider = CGImageGetDataProvider(img);
CFDataRef inBitmapData = CGDataProviderCopyData(inProvider);
inBuffer.width = CGImageGetWidth(img);
inBuffer.height = CGImageGetHeight(img);
inBuffer.rowBytes = CGImageGetBytesPerRow(img);
inBuffer.data = (void*)CFDataGetBytePtr(inBitmapData);
pixelBuffer = malloc(CGImageGetBytesPerRow(img) *
CGImageGetHeight(img));
if(pixelBuffer == NULL)
NSLog(@"No pixelbuffer");
outBuffer.data = pixelBuffer;
outBuffer.width = CGImageGetWidth(img);
outBuffer.height = CGImageGetHeight(img);
outBuffer.rowBytes = CGImageGetBytesPerRow(img);
error = vImageBoxConvolve_ARGB8888(&inBuffer,
&outBuffer,
NULL,
0,
0,
boxSize,
boxSize,
NULL,
kvImageEdgeExtend);
error = vImageBoxConvolve_ARGB8888(&outBuffer,
&inBuffer,
NULL,
0,
0,
boxSize,
boxSize,
NULL,
kvImageEdgeExtend);
if (error) {
NSLog(@"error from convolution %ld", error);
}
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
CGContextRef ctx = CGBitmapContextCreate(
inBuffer.data,
inBuffer.width,
inBuffer.height,
8,
inBuffer.rowBytes,
colorSpace,
kCGImageAlphaNoneSkipLast);
CGImageRef imageRef = CGBitmapContextCreateImage (ctx);
UIImage *returnImage = [UIImage imageWithCGImage:imageRef];
//clean up
CGContextRelease(ctx);
CGColorSpaceRelease(colorSpace);
free(pixelBuffer);
CFRelease(inBitmapData);
CGColorSpaceRelease(colorSpace);
CGImageRelease(imageRef);
if (blurredData != NULL)
*blurredData = UIImageJPEGRepresentation(returnImage, 0.6f);
TGLog(@"Blur time: %f ms", (CFAbsoluteTimeGetCurrent() - startTime) * 1000.0);
return returnImage;
}
static void matrixMul(CGFloat *a, CGFloat *b, CGFloat *result)
{
for (int i = 0; i != 4; ++i)
{
for (int j = 0; j != 4; ++j)
{
CGFloat sum = 0;
for (int k = 0; k != 4; ++k)
{
sum += a[i + k * 4] * b[k + j * 4];
}
result[i + j * 4] = sum;
}
}
}
UIImage *TGSecretAttachmentImage(UIImage *source, __unused CGSize sourceSize, CGSize destSize)
{
static UIImage *borderImage = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^
{
UIImage *rawImage = [UIImage imageNamed:@"ModernMessageImageBorder.png"];
borderImage = [rawImage stretchableImageWithLeftCapWidth:(int)(rawImage.size.width / 2) topCapHeight:(int)(rawImage.size.height / 2)];
});
CGFloat scale = TGIsRetina() ? 2.0f : 1.0f;
CGSize contextSize = CGSizeMake(destSize.width * scale, destSize.height * scale);
size_t bytesPerRow = 4 * (int)contextSize.width;
bytesPerRow = (bytesPerRow + 15) & ~15;
void *sourceMemory = malloc((int)(bytesPerRow * contextSize.height));
void *destMemory = malloc((int)(bytesPerRow * contextSize.height));
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
CGBitmapInfo bitmapInfo = kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host;
CGContextRef sourceContext = CGBitmapContextCreate(sourceMemory, (int)contextSize.width, (int)contextSize.height, 8, bytesPerRow, colorSpace, bitmapInfo);
CGContextRef destContext = CGBitmapContextCreate(destMemory, (int)contextSize.width, (int)contextSize.height, 8, bytesPerRow, colorSpace, bitmapInfo);
CGColorSpaceRelease(colorSpace);
UIGraphicsPushContext(sourceContext);
CGContextTranslateCTM(sourceContext, contextSize.width / 2.0f, contextSize.height / 2.0f);
CGContextScaleCTM(sourceContext, 1.0f, -1.0f);
CGContextTranslateCTM(sourceContext, -contextSize.width / 2.0f, -contextSize.height / 2.0f);
CGContextScaleCTM(sourceContext, scale, scale);
[source drawInRect:CGRectMake(0, 0, destSize.width, destSize.height) blendMode:kCGBlendModeCopy alpha:1.0f];
UIGraphicsPopContext();
float blur = 0.65f;
int boxSize = (int)(blur * 100);
boxSize = boxSize - (boxSize % 2) + 1;
vImage_Buffer inBuffer;
inBuffer.data = sourceMemory;
inBuffer.height = (int)contextSize.height;
inBuffer.width = (int)contextSize.width;
inBuffer.rowBytes = bytesPerRow;
vImage_Buffer outBuffer;
outBuffer.data = destMemory;
outBuffer.height = (int)contextSize.height;
outBuffer.width = (int)contextSize.width;
outBuffer.rowBytes = bytesPerRow;
vImageBoxConvolve_ARGB8888(&inBuffer, &outBuffer, NULL, 0, 0, boxSize, boxSize, NULL, kvImageEdgeExtend);
CGFloat s = 2.2f;
CGFloat offset = 0.1f;
CGFloat factor = 1.7f;
CGFloat satMatrix[] = {
0.0722f + 0.9278f * s, 0.0722f - 0.0722f * s, 0.0722f - 0.0722f * s, 0,
0.7152f - 0.7152f * s, 0.7152f + 0.2848f * s, 0.7152f - 0.7152f * s, 0,
0.2126f - 0.2126f * s, 0.2126f - 0.2126f * s, 0.2126f + 0.7873f * s, 0,
0.0f, 0.0f, 0.0f, 1,
};
CGFloat contrastMatrix[] = {
factor, 0.0f, 0.0f, 0.0f,
0.0f, factor, 0.0f, 0.0f,
0.0f, 0.0f, factor, 0.0f,
offset, offset, offset, 1.0f
};
CGFloat colorMatrix[16];
matrixMul(satMatrix, contrastMatrix, colorMatrix);
const int32_t divisor = 256;
NSUInteger matrixSize = sizeof(colorMatrix)/sizeof(colorMatrix[0]);
int16_t saturationMatrix[matrixSize];
for (NSUInteger i = 0; i < matrixSize; ++i) {
saturationMatrix[i] = (int16_t)CGRound(colorMatrix[i] * divisor);
}
vImageMatrixMultiply_ARGB8888(&outBuffer, &inBuffer, saturationMatrix, divisor, NULL, NULL, kvImageNoFlags);
vImageBoxConvolve_ARGB8888(&inBuffer, &outBuffer, NULL, 0, 0, boxSize, boxSize, NULL, kvImageEdgeExtend);
CGContextRelease(sourceContext);
free(sourceMemory);
UIGraphicsPushContext(destContext);
CGContextTranslateCTM(destContext, contextSize.width / 2.0f, contextSize.height / 2.0f);
CGContextScaleCTM(destContext, 1.0f, -1.0f);
CGContextTranslateCTM(destContext, -contextSize.width / 2.0f, -contextSize.height / 2.0f);
CGContextScaleCTM(destContext, scale, scale);
const CGFloat borderRadius = 16.0f;
const CGFloat horizontalPadding = 1.0f;
const CGFloat verticalPadding = 1.0f;
CGContextSetBlendMode(destContext, kCGBlendModeCopy);
CGContextBeginPath(destContext);
CGContextMoveToPoint(destContext, horizontalPadding, verticalPadding + borderRadius);
CGContextAddArcToPoint(destContext, horizontalPadding, verticalPadding, horizontalPadding + borderRadius, verticalPadding, borderRadius);
CGContextAddLineToPoint(destContext, destSize.width - horizontalPadding - borderRadius, verticalPadding);
CGContextAddArcToPoint(destContext, destSize.width - horizontalPadding, verticalPadding, destSize.width - horizontalPadding, verticalPadding + borderRadius, borderRadius);
CGContextAddLineToPoint(destContext, destSize.width, verticalPadding + borderRadius);
CGContextAddLineToPoint(destContext, destSize.width, 0.0f);
CGContextAddLineToPoint(destContext, 0.0f, 0.0f);
CGContextAddLineToPoint(destContext, 0.0f, verticalPadding + borderRadius);
CGContextClosePath(destContext);
CGContextSetFillColorWithColor(destContext, [UIColor clearColor].CGColor);
CGContextFillPath(destContext);
CGContextBeginPath(destContext);
CGContextMoveToPoint(destContext, horizontalPadding, verticalPadding + borderRadius);
CGContextAddLineToPoint(destContext, horizontalPadding, destSize.height - verticalPadding - borderRadius);
CGContextAddArcToPoint(destContext, horizontalPadding, destSize.height - verticalPadding, horizontalPadding + borderRadius, destSize.height - verticalPadding, borderRadius);
CGContextAddLineToPoint(destContext, destSize.width - horizontalPadding - borderRadius, destSize.height - verticalPadding);
CGContextAddArcToPoint(destContext, destSize.width - horizontalPadding, destSize.height - verticalPadding, destSize.width - horizontalPadding, destSize.height - verticalPadding - borderRadius, borderRadius);
CGContextAddLineToPoint(destContext, destSize.width - horizontalPadding, verticalPadding + borderRadius);
CGContextAddLineToPoint(destContext, destSize.width, verticalPadding + borderRadius);
CGContextAddLineToPoint(destContext, destSize.width, destSize.height);
CGContextAddLineToPoint(destContext, 0.0f, destSize.height);
CGContextAddLineToPoint(destContext, 0.0f, verticalPadding + borderRadius);
CGContextClosePath(destContext);
CGContextSetFillColorWithColor(destContext, [UIColor clearColor].CGColor);
CGContextFillPath(destContext);
[borderImage drawInRect:CGRectMake(0, 0, destSize.width, destSize.height) blendMode:kCGBlendModeNormal alpha:1.0f];
UIGraphicsPopContext();
CGImageRef bitmapImage = CGBitmapContextCreateImage(destContext);
UIImage *image = [[UIImage alloc] initWithCGImage:bitmapImage];
CGImageRelease(bitmapImage);
CGContextRelease(destContext);
free(destMemory);
return image;
}
UIImage *TGScaleImageToPixelSize(UIImage *image, CGSize size)
{
UIGraphicsBeginImageContextWithOptions(size, true, 1.0f);
[image drawInRect:CGRectMake(0, 0, size.width, size.height) blendMode:kCGBlendModeCopy alpha:1.0f];
UIImage *result = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return result;
}
UIImage *TGRotateAndScaleImageToPixelSize(UIImage *image, CGSize size)
{
UIGraphicsBeginImageContextWithOptions(size, true, 1.0f);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextTranslateCTM(context, size.height / 2, size.width / 2);
CGContextRotateCTM(context, -(float)M_PI_2);
CGContextTranslateCTM(context, -size.height / 2 + (size.width - size.height) / 2, -size.width / 2 + (size.width - size.height) / 2);
CGContextScaleCTM (context, size.width / image.size.height, size.height / image.size.width);
[image drawAtPoint:CGPointMake(0, 0) blendMode:kCGBlendModeCopy alpha:1.0f];
UIImage *result = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return result;
}
UIImage *TGFixOrientationAndCrop(UIImage *source, CGRect cropFrame, CGSize imageSize)
{
/*float scale = 1.0f;
if (isRetina())
{
scale = 2.0f;
imageSize.width *= 2;
imageSize.height *= 2;
}*/
UIGraphicsBeginImageContextWithOptions(CGSizeMake(imageSize.width, imageSize.height), true, 1.0f);
CGContextRef context = UIGraphicsGetCurrentContext();
CGSize sourceSize = source.size;
CGFloat sourceScale = source.scale;
sourceSize.width *= sourceScale;
sourceSize.height *= sourceScale;
CGContextScaleCTM (context, imageSize.width / cropFrame.size.width, imageSize.height / cropFrame.size.height);
[source drawAtPoint:CGPointMake(-cropFrame.origin.x, -cropFrame.origin.y) blendMode:kCGBlendModeCopy alpha:1.0f];
//[source drawInRect:CGRectMake(-cropFrame.origin.x, -cropFrame.origin.y, sourceSize.width, sourceSize.height) blendMode:kCGBlendModeCopy alpha:1.0f];
UIImage *croppedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return croppedImage;
}
UIImage *TGRotateAndCrop(UIImage *source, CGRect cropFrame, CGSize imageSize)
{
UIGraphicsBeginImageContextWithOptions(CGSizeMake(imageSize.width, imageSize.height), true, 1.0f);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextTranslateCTM(context, imageSize.width / 2, imageSize.height / 2);
CGContextRotateCTM(context, (float)M_PI_2);
CGContextTranslateCTM(context, -imageSize.width / 2, -imageSize.height / 2);
CGContextScaleCTM (context, imageSize.width / cropFrame.size.width, imageSize.height / cropFrame.size.height);
[source drawAtPoint:CGPointMake(-cropFrame.origin.x, -cropFrame.origin.y) blendMode:kCGBlendModeCopy alpha:1.0f];
UIImage *croppedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return croppedImage;
}
UIImage *TGModernAttachmentImage(UIImage *source, CGSize sourceSize, CGSize targetSize)
{
static UIImage *borderImage = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^
{
UIImage *rawImage = [UIImage imageNamed:@"ModernMessageImageBorder.png"];
borderImage = [rawImage stretchableImageWithLeftCapWidth:(int)(rawImage.size.width / 2) topCapHeight:(int)(rawImage.size.height / 2)];
});
CGFloat scale = TGIsRetina() ? 2.0f : 1.0f;
CGSize contextSize = CGSizeMake(targetSize.width * scale, targetSize.height * scale);
size_t bytesPerRow = 4 * (int)contextSize.width;
bytesPerRow = (bytesPerRow + 15) & ~15;
void *memory = calloc(1, (int)(bytesPerRow * contextSize.height));
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
CGBitmapInfo bitmapInfo = kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host;
CGContextRef context = CGBitmapContextCreate(memory, (int)contextSize.width, (int)contextSize.height, 8, bytesPerRow, colorSpace, bitmapInfo);
CGColorSpaceRelease(colorSpace);
CGContextTranslateCTM(context, contextSize.width / 2.0f, contextSize.height / 2.0f);
CGContextScaleCTM(context, 1.0f, -1.0f);
CGContextTranslateCTM(context, -contextSize.width / 2.0f, -contextSize.height / 2.0f);
CGContextScaleCTM(context, scale, scale);
UIGraphicsPushContext(context);
const CGFloat cornerRadius = 14.0f;
CGRect pathRect = CGRectMake(1.0f, 1.0f, targetSize.width - 2.0f, targetSize.height - 2.0f);
CGContextSaveGState(context);
CGContextMoveToPoint(context, pathRect.origin.x, pathRect.origin.y + cornerRadius);
CGContextAddArcToPoint(context, pathRect.origin.x, pathRect.origin.y, pathRect.origin.x + cornerRadius, pathRect.origin.y, cornerRadius);
CGContextAddLineToPoint(context, pathRect.origin.x + pathRect.size.width - cornerRadius, pathRect.origin.y);
CGContextAddArcToPoint(context, pathRect.origin.x + pathRect.size.width, pathRect.origin.y, pathRect.origin.x + pathRect.size.width, pathRect.origin.y + cornerRadius, cornerRadius);
CGContextAddLineToPoint(context, pathRect.origin.x + pathRect.size.width, pathRect.origin.y + pathRect.size.height - cornerRadius);
CGContextAddArcToPoint(context, pathRect.origin.x + pathRect.size.width, pathRect.origin.y + pathRect.size.height, pathRect.origin.x + pathRect.size.width - cornerRadius, pathRect.origin.y + pathRect.size.height, cornerRadius);
CGContextAddLineToPoint(context, pathRect.origin.x + cornerRadius, pathRect.origin.y + pathRect.size.height);
CGContextAddArcToPoint(context, pathRect.origin.x, pathRect.origin.y + pathRect.size.height, pathRect.origin.x, pathRect.size.height - cornerRadius, cornerRadius);
CGContextAddLineToPoint(context, pathRect.origin.x, pathRect.origin.y + cornerRadius);
CGContextClosePath(context);
CGContextClip(context);
CGContextSetFillColorWithColor(context, [UIColor blackColor].CGColor);
CGContextFillRect(context, pathRect);
//CGSize previousSourceSize = sourceSize;
//sourceSize = TGFitSize(TGFillSize(sourceSize, pathRect.size), pathRect.size);
pathRect.origin.x -= (sourceSize.width - pathRect.size.width) / 2;
pathRect.size.width += sourceSize.width - pathRect.size.width;
pathRect.origin.y -= (sourceSize.height - pathRect.size.height) / 2;
pathRect.size.height += sourceSize.height - pathRect.size.height;
[source drawInRect:pathRect blendMode:kCGBlendModeCopy alpha:1.0f];
CGContextRestoreGState(context);
[borderImage drawInRect:CGRectMake(0, 0, targetSize.width, targetSize.height) blendMode:kCGBlendModeNormal alpha:1.0f];
UIGraphicsPopContext();
CGImageRef contextImageRef = CGBitmapContextCreateImage(context);
CGContextRelease(context);
free(memory);
UIImage *resultImage = [[UIImage alloc] initWithCGImage:contextImageRef scale:scale orientation:UIImageOrientationUp];
CGImageRelease(contextImageRef);
return resultImage;
}
UIImage *TGAttachmentImage(UIImage *source, CGSize sourceSize, CGSize size, __unused bool incoming, bool location)
{
return TGModernAttachmentImage(source, sourceSize, size);
static UIImage *bubbleOverlay = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^
{
UIImage *rawImage = [UIImage imageNamed:@"AttachmentPhotoBubble.png"];
bubbleOverlay = [rawImage stretchableImageWithLeftCapWidth:(int)(rawImage.size.width / 2) topCapHeight:(int)(rawImage.size.height / 2)];
});
float scale = 1.0f;
if (isRetina())
{
scale = 2.0f;
size.width *= 2;
size.height *= 2;
}
UIGraphicsBeginImageContextWithOptions(size, false, 1.0f);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSaveGState(context);
CGContextBeginPath(context);
CGRect rect = CGRectMake(2 * scale, 1.5f * scale, size.width - 4 * scale, size.height - (1.5f + 2) * scale);
float radius = 8.0f * scale;
CGContextMoveToPoint(context, rect.origin.x, rect.origin.y + radius);
CGContextAddArcToPoint(context, rect.origin.x, rect.origin.y, rect.origin.x + radius, rect.origin.y, radius);
CGContextAddLineToPoint(context, rect.origin.x + rect.size.width - radius, rect.origin.y);
CGContextAddArcToPoint(context, rect.origin.x + rect.size.width, rect.origin.y, rect.origin.x + rect.size.width, rect.origin.y + radius, radius);
CGContextAddLineToPoint(context, rect.origin.x + rect.size.width, rect.origin.y + rect.size.height - radius);
CGContextAddArcToPoint(context, rect.origin.x + rect.size.width, rect.origin.y + rect.size.height, rect.origin.x + rect.size.width - radius, rect.origin.y + rect.size.height, radius);
CGContextAddLineToPoint(context, rect.origin.x + radius, rect.origin.y + rect.size.height);
CGContextAddArcToPoint(context, rect.origin.x, rect.origin.y + rect.size.height, rect.origin.x, rect.size.height - radius, radius);
CGContextAddLineToPoint(context, rect.origin.x, rect.origin.y + radius);
CGContextClosePath(context);
CGContextClip(context);
if (location)
[source drawAtPoint:CGPointMake(0, 4) blendMode:kCGBlendModeCopy alpha:1.0f];
else
{
//CGSize sourceSize = source.size;
//float sourceScale = source.scale;
//sourceSize.width *= sourceScale;
//sourceSize.height *= sourceScale;
sourceSize = TGFillSize(sourceSize, rect.size);
rect.origin.x -= (sourceSize.width - rect.size.width) / 2;
rect.size.width += sourceSize.width - rect.size.width;
rect.origin.y -= (sourceSize.height - rect.size.height) / 2;
rect.size.height += sourceSize.height - rect.size.height;
[source drawInRect:rect blendMode:kCGBlendModeCopy alpha:1.0f];
}
//CGContextSetFillColorWithColor(context, [UIColor redColor].CGColor);
//CGContextFillRect(context, CGRectMake(0, 0, size.width, size.height));
CGContextRestoreGState(context);
if (location)
{
static UIImage *markerImage = nil;
static dispatch_once_t onceToken;
static CGSize imageSize;
dispatch_once(&onceToken, ^
{
markerImage = [UIImage imageNamed:@"MapThumbnailMarker.png"];
imageSize = markerImage.size;
});
[markerImage drawInRect:CGRectMake(CGFloor((size.width - imageSize.width) / 2) - 4 * scale, CGFloor((size.height - imageSize.height) / 2) - 5 * scale, imageSize.width * scale, imageSize.height * scale)];
}
CGContextScaleCTM(context, scale, scale);
[bubbleOverlay drawInRect:CGRectMake(0, 0, size.width / scale, size.height / scale) blendMode:kCGBlendModeNormal alpha:1.0f];
UIImage *result = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return result;
}
static int32_t get_bits(uint8_t const *bytes, unsigned int bitOffset, unsigned int numBits)
{
uint8_t const *data = bytes;
numBits = (unsigned int)pow(2, numBits) - 1; //this will only work up to 32 bits, of course
data += bitOffset / 8;
bitOffset %= 8;
return (*((int*)data) >> bitOffset) & numBits;
}
UIImage *TGIdenticonImage(NSData *data, CGSize size)
{
uint8_t bits[128];
memset(bits, 0, 128);
[data getBytes:bits length:MIN((NSUInteger)128, data.length)];
static CGColorRef colors[6];
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^
{
static const int textColors[] =
{
0xffffff,
0xd5e6f3,
0x2d5775,
0x2f99c9
};
for (int i = 0; i < 4; i++)
{
colors[i] = CGColorRetain(UIColorRGB(textColors[i]).CGColor);
}
});
UIGraphicsBeginImageContextWithOptions(size, true, 0.0f);
CGContextRef context = UIGraphicsGetCurrentContext();
int bitPointer = 0;
CGFloat rectSize = CGFloor(size.width / 8.0f);
for (int iy = 0; iy < 8; iy++)
{
for (int ix = 0; ix < 8; ix++)
{
int32_t byteValue = get_bits(bits, bitPointer, 2);
bitPointer += 2;
int colorIndex = ABS(byteValue) % 4;
CGContextSetFillColorWithColor(context, colors[colorIndex]);
CGContextFillRect(context, CGRectMake(ix * rectSize, iy * rectSize, rectSize, rectSize));
}
}
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
UIImage *TGCircleImage(CGFloat radius, UIColor *color)
{
UIGraphicsBeginImageContextWithOptions(CGSizeMake(radius, radius), false, 0.0f);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, color.CGColor);
CGContextFillEllipseInRect(context, CGRectMake(0.0f, 0.0f, radius, radius));
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
@implementation UIImage (Preloading)
- (UIImage *)preloadedImage
{
UIGraphicsBeginImageContextWithOptions(self.size, false, 0);
[self drawInRect:CGRectMake(0, 0, self.size.width, self.size.height)];
UIImage *result = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return result;
}
- (void)tgPreload
{
UIGraphicsBeginImageContextWithOptions(CGSizeMake(1, 1), true, 0);
[self drawAtPoint:CGPointZero];
UIGraphicsEndImageContext();
}
static const char *mediumImageKey = "mediumImage";
- (void)setMediumImage:(UIImage *)image
{
objc_setAssociatedObject(self, mediumImageKey, image, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
- (UIImage *)mediumImage
{
return (UIImage *)objc_getAssociatedObject(self, mediumImageKey);
}
- (CGSize)screenSize
{
float scale = TGIsRetina() ? 2.0f : 1.0f;
if (ABS(self.scale - 1.0) < FLT_EPSILON)
return CGSizeMake(self.size.width / scale, self.size.height / scale);
return self.size;
}
- (CGSize)pixelSize
{
return CGSizeMake(self.size.width * self.scale, self.size.height * self.scale);
}
@end
CGSize TGFitSize(CGSize size, CGSize maxSize)
{
if (size.width < 1)
size.width = 1;
if (size.height < 1)
size.height = 1;
if (size.width > maxSize.width)
{
size.height = CGFloor((size.height * maxSize.width / size.width));
size.width = maxSize.width;
}
if (size.height > maxSize.height)
{
size.width = CGFloor((size.width * maxSize.height / size.height));
size.height = maxSize.height;
}
return size;
}
CGSize TGFitSizeF(CGSize size, CGSize maxSize)
{
if (size.width < 1)
size.width = 1;
if (size.height < 1)
size.height = 1;
if (size.width > maxSize.width)
{
size.height = (size.height * maxSize.width / size.width);
size.width = maxSize.width;
}
if (size.height > maxSize.height)
{
size.width = (size.width * maxSize.height / size.height);
size.height = maxSize.height;
}
return size;
}
CGSize TGFillSize(CGSize size, CGSize maxSize)
{
if (size.width < 1)
size.width = 1;
if (size.height < 1)
size.height = 1;
if (/*size.width >= size.height && */size.width < maxSize.width)
{
size.height = CGFloor(maxSize.width * size.height / MAX(1.0f, size.width));
size.width = maxSize.width;
}
if (/*size.width <= size.height &&*/ size.height < maxSize.height)
{
size.width = CGFloor(maxSize.height * size.width / MAX(1.0f, size.height));
size.height = maxSize.height;
}
return size;
}
CGSize TGFillSizeF(CGSize size, CGSize maxSize)
{
if (size.width < 1)
size.width = 1;
if (size.height < 1)
size.height = 1;
if (/*size.width >= size.height && */size.width < maxSize.width)
{
size.height = maxSize.width * size.height / MAX(1.0f, size.width);
size.width = maxSize.width;
}
if (/*size.width <= size.height &&*/ size.height < maxSize.height)
{
size.width = maxSize.height * size.width / MAX(1.0f, size.height);
size.height = maxSize.height;
}
return size;
}
CGSize TGCropSize(CGSize size, CGSize maxSize)
{
if (size.width < 1)
size.width = 1;
if (size.height < 1)
size.height = 1;
return CGSizeMake(MIN(size.width, maxSize.width), MIN(size.height, maxSize.height));
}
CGSize TGScaleToFill(CGSize size, CGSize boundsSize)
{
if (size.width < 1.0f || size.height < 1.0f)
return CGSizeMake(1.0f, 1.0f);
CGFloat scale = MAX(boundsSize.width / size.width, boundsSize.height / size.height);
return CGSizeMake(CGFloor(size.width * scale), CGFloor(size.height * scale));
}
CGFloat TGRetinaPixel = 0.5f;
CGFloat TGRetinaFloor(CGFloat value)
{
return TGIsRetina() ? (CGFloor(value * 2.0f)) / 2.0f : CGFloor(value);
}
CGFloat TGScreenPixelFloor(CGFloat value)
{
static CGFloat scale = 2.0f;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^
{
scale = [UIScreen mainScreen].scale;
});
return CGFloor(value * scale) / scale;
}
bool TGIsRetina()
{
static bool value = true;
static bool initialized = false;
if (!initialized)
{
value = [[UIScreen mainScreen] scale] > 1.5f;
initialized = true;
TGRetinaPixel = value ? 0.5f : 0.0f;
}
return value;
}
CGFloat TGScreenScaling()
{
static CGFloat value = 2.0f;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^
{
value = [UIScreen mainScreen].scale;
});
return value;
}
bool TGIsPad()
{
static bool value = false;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^
{
value = [[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad;
});
return value;
}
CGSize TGScreenSize()
{
static CGSize size;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^
{
UIScreen *screen = [UIScreen mainScreen];
if ([screen respondsToSelector:@selector(fixedCoordinateSpace)])
size = [screen.coordinateSpace convertRect:screen.bounds toCoordinateSpace:screen.fixedCoordinateSpace].size;
else
size = screen.bounds.size;
});
return size;
}