目錄
站在用戶的角度思考問題,與客戶深入溝通,找到南城網(wǎng)站設(shè)計(jì)與南城網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名與空間、虛擬空間、企業(yè)郵箱。業(yè)務(wù)覆蓋南城地區(qū)。
零基礎(chǔ) OpenGL (ES) 學(xué)習(xí)路線推薦 : OpenGL (ES) 學(xué)習(xí)目錄 >> OpenGL ES 基礎(chǔ)
零基礎(chǔ) OpenGL (ES) 學(xué)習(xí)路線推薦 : OpenGL (ES) 學(xué)習(xí)目錄 >> OpenGL ES 轉(zhuǎn)場
零基礎(chǔ) OpenGL (ES) 學(xué)習(xí)路線推薦 : OpenGL (ES) 學(xué)習(xí)目錄 >> OpenGL ES 特效
零基礎(chǔ) OpenGL (ES) 學(xué)習(xí)路線推薦 : OpenGL (ES) 學(xué)習(xí)目錄 >> OpenGL ES 函數(shù)
零基礎(chǔ) OpenGL (ES) 學(xué)習(xí)路線推薦 : OpenGL (ES) 學(xué)習(xí)目錄 >> OpenGL ES GPUImage 使用
零基礎(chǔ) OpenGL (ES) 學(xué)習(xí)路線推薦 : OpenGL (ES) 學(xué)習(xí)目錄 >> OpenGL ES GLSL 編程
GPUImage 共 125 個(gè)濾鏡, 分為四類
1、Color adjustments : 31 filters , 顏色處理相關(guān)
2、Image processing : 40 filters , 圖像處理相關(guān).
3、Blending modes : 29 filters , 混合模式相關(guān).
4、Visual effects : 25 filters , 視覺效果相關(guān).
GPUImageNormalBlendFilter 屬于 GPUImage 圖像混合模式相關(guān),用于圖像 alpha 混合。shader 源碼如下:
/******************************************************************************************/
//@Author:猿說編程
//@Blog(個(gè)人博客地址): www.codersrc.com
//@File:IOS – OpenGL ES GPUImage GPUImageNormalBlendFilter
//@Time:2022/07/02 06:30
//@Motto:不積跬步無以至千里,不積小流無以成江海,程序人生的精彩需要堅(jiān)持不懈地積累!
/******************************************************************************************/
#if TARGET_IPHONE_SIMULATOR || TARGET_OS_IPHONE
NSString *const kGPUImageNormalBlendFragmentShaderString = SHADER_STRING
(
varying highp vec2 textureCoordinate;
varying highp vec2 textureCoordinate2;
uniform sampler2D inputImageTexture;
uniform sampler2D inputImageTexture2;
void main()
{
lowp vec4 c2 = texture2D(inputImageTexture, textureCoordinate);
lowp vec4 c1 = texture2D(inputImageTexture2, textureCoordinate2);
lowp vec4 outputColor;
// outputColor.r = c1.r + c2.r * c2.a * (1.0 - c1.a);
// outputColor.g = c1.g + c2.g * c2.a * (1.0 - c1.a);
// outputColor.b = c1.b + c2.b * c2.a * (1.0 - c1.a);
// outputColor.a = c1.a + c2.a * (1.0 - c1.a);
lowp float a = c1.a + c2.a * (1.0 - c1.a);
lowp float alphaDivisor = a + step(a, 0.0); // Protect against a divide-by-zero blacking out things in the output
outputColor.r = (c1.r * c1.a + c2.r * c2.a * (1.0 - c1.a))/alphaDivisor;
outputColor.g = (c1.g * c1.a + c2.g * c2.a * (1.0 - c1.a))/alphaDivisor;
outputColor.b = (c1.b * c1.a + c2.b * c2.a * (1.0 - c1.a))/alphaDivisor;
outputColor.a = a;
gl_FragColor = outputColor;
}
);
#else
NSString *const kGPUImageNormalBlendFragmentShaderString = SHADER_STRING
(
varying vec2 textureCoordinate;
varying vec2 textureCoordinate2;
uniform sampler2D inputImageTexture;
uniform sampler2D inputImageTexture2;
void main()
{
vec4 c2 = texture2D(inputImageTexture, textureCoordinate);
vec4 c1 = texture2D(inputImageTexture2, textureCoordinate2);
vec4 outputColor;
// outputColor.r = c1.r + c2.r * c2.a * (1.0 - c1.a);
// outputColor.g = c1.g + c2.g * c2.a * (1.0 - c1.a);
// outputColor.b = c1.b + c2.b * c2.a * (1.0 - c1.a);
// outputColor.a = c1.a + c2.a * (1.0 - c1.a);
float a = c1.a + c2.a * (1.0 - c1.a);
float alphaDivisor = a + step(a, 0.0); // Protect against a divide-by-zero blacking out things in the output
outputColor.r = (c1.r * c1.a + c2.r * c2.a * (1.0 - c1.a))/alphaDivisor;
outputColor.g = (c1.g * c1.a + c2.g * c2.a * (1.0 - c1.a))/alphaDivisor;
outputColor.b = (c1.b * c1.a + c2.b * c2.a * (1.0 - c1.a))/alphaDivisor;
outputColor.a = a;
gl_FragColor = outputColor;
}
);
#endif
使用**GPUImageNormalBlendFilter,**源圖和目標(biāo)圖如下:
使用GPUImageNormalBlendFilter 效果如下:
OpenGL ES Demo 下載地址 : IOS OpenGL ES GPUImage 圖像混合 GPUImageNormalBlendFilter
本文由博客 - 猿說編程 猿說編程 發(fā)布!