最終ターゲットとして GPUImageView を使用してベース GPUImagePicture とブレンドされた透明なテキスト GPUImagePicture で奇妙な黒いエイリアシングが発生します。これは私がやっていることです:
textOverlay = [[GPUImagePicture alloc] initWithImage:self.rootViewController.previewImageTextOverlay];
GPUImageAlphaBlendFilter *textBlend = [[[GPUImageAlphaBlendFilter alloc] init] autorelease];
[upstreamOutputFilter addTarget:textBlend];
[textOverlay addTarget:textBlend];
[textBlend addTarget:gpuPreviewImageView];
[textOverlay processImage];
(出典: kevinharringtonphoto.com )
エイリアシングを削除するにはどうすればよいですか?
これが欲しい(2つのUIImageを重ねることで得られる):(
ソース:kevinharringtonphoto.com)