美文网首页
GPUImage使用

GPUImage使用

作者: 笑破天 | 来源:发表于2021-01-05 23:12 被阅读0次

1、下载https://github.com/BradLarson/GPUImage
2、拖拽GPUImage-master/framework/目录下的GPUImage.xcodeproj到工程
3、切换到项目targets-Build Phases。在Dependencies中加入GPUImageFramework。在Link Binary With Libraries中加入GPUImage。点击左上角的+号,选择new Copy Files build phase,把Destination设置为Frameworks,点击下面的+号,添加GPUImage.framework。注意:若是没有添加new Copy Files build phase,会报错dyld: Library not loaded: @rpath/GPUImage.framework
github原文:

Xcode 6 and iOS 8 support the use of full frameworks, as does the Mac, which simplifies the process of adding this to your application. To add this to your application, I recommend dragging the .xcodeproj project file into your application's project (as you would in the static library target).
For your application, go to its target build settings and choose the Build Phases tab. Under the Target Dependencies grouping, add GPUImageFramework on iOS (not GPUImage, which builds the static library) or GPUImage on the Mac. Under the Link Binary With Libraries section, add GPUImage.framework.
You then need to add a new Copy Files build phase, set the Destination to Frameworks, and add the GPUImage.framework build product to that. This will allow the framework to be bundled with your application (otherwise, you'll see cryptic "dyld: Library not loaded: @rpath/GPUImage.framework/GPUImage" errors on execution).

4、import GPUImage
5、设置info.plist相机相册麦克风权限

iOS 解决dyld: Library not loaded: @rpath/xxx.framework/ Reason: image not found

注:GPUImage有三个版本:GPUImage、GPUImage2、GPUImage3。可以用pod下载,但只能下第一版,要用后俩版本需要手动下载配置工程

相关文章

  • 视频滤镜

    GPUImage原生美颜 GPUImage原生美颜 步骤一:使用Cocoapods导入GPUImage步骤二:创建...

  • GPUImage源码分析与使用(三)

    使用GPUImage拍照添加滤镜 使用GPUImage拍视频添加滤镜 VideoManager.h VideoMa...

  • iOS-DIY美颜相机

    本例是使用GPUImage开源框架,生成美颜相机。实时采集画面,进行美颜。 GPUImage GPUImage是开...

  • iOS滤镜那些事儿

    一. GPUImage 框架的介绍及基本使用 1.GPUImage 的介绍 GPUImage是基于OpenGL E...

  • GPUImage详细解析(十)用GPUImage和指令配合合并视

    前言 GPUImage详细解析在GPUImage文集,在前文GPUImage详细解析(八)视频合并混音中使用了gi...

  • GPUImage

    1.添加GPUImage静态库 关于导入GPUimage到工程已经简单使用:只能用于真机关于GPUImage的导入...

  • GPUImage的基本用法

    建议CocoaPods导入GPUImage类库,引入头文件即可使用:#import "GPUImage.h" 视频...

  • GPUImage视频滤镜

    前言 简单介绍下使用GPUImage以及遇到的问题,GPUImage下载地址https://github.com/...

  • GPUImage使用

    1、下载https://github.com/BradLarson/GPUImage[https://github...

  • GPUImage阅读笔记-概述

    GPUImage主要由AVFoundation和OpenGL ES两个框架组成 GPUImage框架是使用了链式结...

网友评论

      本文标题:GPUImage使用

      本文链接:https://www.haomeiwen.com/subject/jowvoktx.html