gpt4 book ai didi

ios - 将图像绘制到图形上下文中的奇怪行为

转载 作者:行者123 更新时间:2023-11-28 22:35:23 24 4
gpt4 key购买 nike

我有以下代码可以水平并排合并两张图片:

        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 时,所有文本都模糊了。虽然,如果我显示单独的图像,这些图像用于连接到一个图像中 - 它们可以很好地显示所有文本。我在那里缺少什么???

提前致谢

最佳答案

来自 another answer ,当使用视网膜图像时,使用以下创建图像上下文。

UIGraphicsBeginImageContextWithOptions(size, NO, 0.0f); // 0.0 means [UIScreen mainScreen].scale

关于ios - 将图像绘制到图形上下文中的奇怪行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16207873/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com