gpt4 book ai didi

ios - 将多个 EAGLView 转换为 UIImage

转载 作者:行者123 更新时间:2023-11-29 13:00:58 28 4
gpt4 key购买 nike

我有一个 UITableView,每个单元格内有 3 个 EAGLView,用户可以在其中绘制一些东西(在 apple GLPaint 之后,我只是使用该示例中的 PaintingView 类)

我试图在按钮压力事件上将这 3 个 EAGLView 转换为 3 个不同的 UIImage,但生成的 UIImages 始终等于最后一个 EAGLView 已编辑

这是我正在使用的代码(从 here 复制):

- (UIImage*)saveImageFromGLView:(UIView *)glView withName:(NSString *)name{

if(glCheckFramebufferStatusOES(GL_FRAMEBUFFER_OES) != GL_FRAMEBUFFER_COMPLETE_OES)
{
/// This IS being activated with code 0
NSLog(@"failed to make complete framebuffer object %x", glCheckFramebufferStatusOES(GL_FRAMEBUFFER_OES));
}

int s = 1;
UIScreen* screen = [ UIScreen mainScreen ];
if ( [ screen respondsToSelector:@selector(scale) ] )
s = (int) [ screen scale ];

const int w = self.frame.size.width;
const int h = self.frame.size.height;
const NSInteger myDataLength = w * h * 4 * s * s;
// allocate array and read pixels into it.
GLubyte *buffer = (GLubyte *) malloc(myDataLength);
glReadPixels(0, 0, w*s, h*s, GL_RGBA, GL_UNSIGNED_BYTE, buffer);
// gl renders "upside down" so swap top to bottom into new array.
// there's gotta be a better way, but this works.
GLubyte *buffer2 = (GLubyte *) malloc(myDataLength);
for(int y = 0; y < h*s; y++)
{
memcpy( buffer2 + (h*s - 1 - y) * w * 4 * s, buffer + (y * 4 * w * s), w * 4 * s );
}
free(buffer); // work with the flipped buffer, so get rid of the original one.

// make data provider with data.
CGDataProviderRef provider = CGDataProviderCreateWithData(NULL, buffer2, myDataLength, NULL);
// prep the ingredients
int bitsPerComponent = 8;
int bitsPerPixel = 32;
int bytesPerRow = 4 * w * s;
CGColorSpaceRef colorSpaceRef = CGColorSpaceCreateDeviceRGB();
CGBitmapInfo bitmapInfo = kCGBitmapByteOrderDefault;
CGColorRenderingIntent renderingIntent = kCGRenderingIntentDefault;
// make the cgimage
CGImageRef imageRef = CGImageCreate(w*s, h*s, bitsPerComponent, bitsPerPixel, bytesPerRow, colorSpaceRef, bitmapInfo, provider, NULL, NO, renderingIntent);
// then make the uiimage from that
UIImage *myImage = [ UIImage imageWithCGImage:imageRef scale:s orientation:UIImageOrientationUp ];

// Create path.
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *filePath = [[paths objectAtIndex:0] stringByAppendingPathComponent:name];

// Save image.
[UIImagePNGRepresentation(myImage) writeToFile:filePath atomically:YES];

CGImageRelease( imageRef );
CGDataProviderRelease(provider);
CGColorSpaceRelease(colorSpaceRef);
free(buffer2);

return myImage;
}

我认为这是一个上下文问题,我如何获得三个不同的图像?

最佳答案

假设您是 using retained backing对于这些 View (否则 glReadPixels() 在您呈现在屏幕上后不起作用),我的猜测是每个 View 都有不同的 OpenGL ES 上下文。 glReadPixels() 只会从当前事件的上下文中提取,因此是最后呈现的 View 。

在上面的方法中读取每个 View 的上下文之前,您需要使用如下代码:

[EAGLContext setCurrentContext:context];

上下文是从您的 OpenGL ES 渲染 UIView 中提取的。您可能希望将该上下文设置为 UIView 子类的只读属性,然后更改上述方法以接收该子类。然后,您可以在使用 glReadPixels() 之前切换到适当的上下文。

作为附带问题,您不应该在上面使用 glCheckFramebufferStatusOES()。这只真正属于您的帧缓冲区创建代码,并且在您的上述方法中没有任何实际用途。

关于ios - 将多个 EAGLView 转换为 UIImage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19772502/

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