0

グリッドのように、約10x10の他のUIImageから作成されたUIImageを作成したいと思います。これを行う方法はありますか?

編集 1: lnafziger のリンクに基づいてこれまでに作成したコードは次のとおりです。

- (void)displayFullMap
{
NSInteger x, y;

UIGraphicsBeginImageContext(CGSizeMake(xMapLength * 64, yMapLength * 64));

CGRect rect = CGRectMake(0, 0, xMapLength * 64, yMapLength * 64);

UIImage *imageToAdd = [[UIImage alloc] init];

for (int i = 0; i < xMapLength; i++) {
    for (int j = 0; j < yMapLength; j++) {
        imageToAdd = some64x64image;
        [imageToAdd drawInRect:rect];
        rect.origin.x += 64;
    }
    rect.origin.x = 0;
    rect.origin.y += 64;
}

UIImage *fullMapImage = [[UIImage alloc] init];
fullMapImage = UIGraphicsGetImageFromCurrentImageContext();

UIImageView *fullMapImageView = [[UIImageView alloc] init];
[fullMapImageView setFrame:CGRectMake(0, 0, 360, 480)];
[fullMapImageView setImage:fullMapImage];
[self.view addSubview:fullMapImageView];

UIGraphicsEndImageContext();
}

ただし、画像は表示されません。私は何を間違っていますか?

4

2 に答える 2

0

複数の画像をマージする方法を示すブログは次のとおりです。

www.mindfiresolutions.com

そして、これがそのページのコードです(少しクリーンアップすることができますが、テクニックを示しています):

@implementation LandscapeImage

- (void) createLandscapeImages
{

    CGSize offScreenSize = CGSizeMake(2048, 1380);  
    UIGraphicsBeginImageContext(offScreenSize);

    //Fetch First image and draw in rect
    UIImage* imageLeft = [UIImage imageNamed:@"file1.png"];
    CGRect rect = CGRectMake(0, 0, 1024, 1380);
    [imageLeft drawInRect:rect];  
    [imageLeft release];

    //Fetch second image and draw in rect    
    UIImage* imageRight = [UIImage imageNamed:@"file2.jpg"];
    rect.origin.x += 1024;
    [imageRight drawInRect:rect];    
    [imageRight release];

    UIImage* imagez = UIGraphicsGetImageFromCurrentImageContext();// it will  returns an image based on the contents of the current bitmap-based graphics context.

    if (imageLeft && imageRight)
    {
        //Write code for save imagez in local cache
    }
    UIGraphicsEndImageContext();
}

@end
于 2012-11-13T05:43:33.470 に答える
0

別の UIImage から UIImage を作成する方法はありませんが、たとえば、UIIMages を UIView に追加して、それらをグリッド パターンに配置することはできます。

それ以外の場合は、Photoshop などを使用して画像を作成し、それを UIImageView に使用することをお勧めします。

于 2012-11-13T04:29:23.120 に答える