0

2 つの画像を横に並べてマージする次のコードがあります。

        CGFloat firstWidth = ImageLeft.size.width;
        CGFloat firstHeight = ImageLeft.size.height;


        CGFloat secondWidth = ImageRight.size.width;
        CGFloat secondHeight = ImageRight.size.height;

        CGSize sizetoNewImage = CGSizeMake(firstWidth+secondWidth , firstHeight); // Here merging two images horizontally ,

        UIGraphicsBeginImageContext(sizetoNewImage);

        [ImageLeft drawInRect : CGRectMake(0,0,firstWidth,firstHeight)];
        [ImageRight drawInRect:CGRectMake(firstWidth,0,secondWidth,secondHeight)];// Here merging two images horizontally ,

        backgroundImage = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();

問題は、backgroundImage を表示すると、すべてのテキストがぼやけていることです。ただし、1 つの画像に結合するために使用された個別の画像を表示すると、すべてのテキストが正常に表示されます。私がそこに欠けているもの???

前もって感謝します

4

1 に答える 1