Несколько обрезанных прямоугольников для создания коллажа в основной графике - PullRequest
6 голосов
/ 10 февраля 2010

Я создаю коллаж в сочетании с элементами из других изображений. Вот несколько примеров ASCII, чтобы объяснить, что я делаю:

Given images A, B and C,
AAA, BBB, CCC
AAA, BBB, CCC
AAA, BBB, CCC

I take part of A, part of B and part of C as columns:

Axx, xBx, xxC
Axx, xBx, xxC
Axx, xBx, xxC

...and combine them in one image like this:

ABC
ABC
ABC

where the first 1/3rd of the image is a colum of A's pic, the middle is a column of B's pic and the last is a column of C's pic.

У меня есть некоторый написанный код, но он показывает только первый столбец, а не остальные… Я думаю, что мне нужно как-то очистить вырезку, но я не уверен, как это сделать или это даже лучший подход.

+ (UIImage *)collageWithSize:(NSInteger)size fromImages:(NSArray *)images {
    NSMutableArray *selectedImages = [NSMutableArray array];
    [selectedImages addObjectsFromArray:images];

    // use the selectedImages for generating the thumbnail
    float columnWidth = (float)size/(float)[selectedImages count];

    //create a context to do our clipping in
    UIGraphicsBeginImageContext(CGSizeMake(size, size));
    CGContextRef currentContext = UIGraphicsGetCurrentContext();

    for (int i = 0; i < [selectedImages count]; i++) {
        // get the current image
        UIImage *image = [selectedImages objectAtIndex:i];

        //create a rect with the size we want to crop the image to
        CGRect clippedRect = CGRectMake(i*columnWidth, 0, columnWidth, size);
        CGContextClipToRect(currentContext, clippedRect);

        //create a rect equivalent to the full size of the image
        CGRect drawRect = CGRectMake(0, 0, size, size);

        //draw the image to our clipped context using our offset rect
        CGContextDrawImage(currentContext, drawRect, image.CGImage);
    }

    //pull the image from our cropped context
    UIImage *collage = UIGraphicsGetImageFromCurrentImageContext();

    //pop the context to get back to the default
    UIGraphicsEndImageContext();

    //Note: this is autoreleased
    return collage;
}

Что я делаю не так?

PS изображение тоже переворачивается вверх ногами.

Ответы [ 2 ]

9 голосов
/ 10 февраля 2010

CGContextClipToRect пересекает текущий прямоугольник отсечения с предоставленным аргументом. Итак, во второй раз, когда вы это называете, вы фактически превращаете свою область отсечения в ничто.

Невозможно восстановить область отсечения без восстановления графического состояния. Итак, позвоните на CGContextSaveGState вверху цикла и на CGContextRestoreGState внизу.

Перевернутая часть может быть исправлена ​​путем корректировки текущей матрицы преобразования: вызовите CGContextTranslateCTM, чтобы переместить начало координат, а затем CGContextScaleCTM, чтобы перевернуть ось Y.

0 голосов
/ 04 декабря 2012

Перевернутое изображение можно исправить, вызвав следующий метод:

CGImageRef flip (CGImageRef im) {
CGSize sz = CGSizeMake(CGImageGetWidth(im), CGImageGetHeight(im));
UIGraphicsBeginImageContextWithOptions(sz, NO, 0);
CGContextDrawImage(UIGraphicsGetCurrentContext(),
                   CGRectMake(0, 0, sz.width, sz.height), im);
CGImageRef result = [UIGraphicsGetImageFromCurrentImageContext() CGImage];
UIGraphicsEndImageContext();
return result;

}

Получите помощь из приведенного ниже кода относительно того, куда вы положите этот код:

UIGraphicsBeginImageContextWithOptions(CGSizeMake(leftRect.size.width, leftRect.size.height), NO, 0);
CGContextRef con = UIGraphicsGetCurrentContext();
CGContextDrawImage(con, leftRect,flip(leftReference));
...