0
提前致謝。iphone中的波普藝術效果
我想在iphone上使用目標c,在圖像上獲得波普藝術效果(在Photoshop中的波普藝術效果意味着我們將獲得具有不同效果的相同照片的4張照片)。其實我不知道它是否可能,如果可能的話,如何繼續。如果有人知道請幫助我。
提前致謝。iphone中的波普藝術效果
我想在iphone上使用目標c,在圖像上獲得波普藝術效果(在Photoshop中的波普藝術效果意味着我們將獲得具有不同效果的相同照片的4張照片)。其實我不知道它是否可能,如果可能的話,如何繼續。如果有人知道請幫助我。
是的,這是可能的,例如,蘋果的CoreImage架構,算法應該很容易寫,但harded調整:
僞:
image = loadImageFromFile("your image file");
popArt = createImage(/*width:*/ image.width * 2,
/*height:*/ image.height * 2);
subdivisions = [ [ 0, image.width, 0, image.height ],
[ image.width, image.width, 0, image.height ],
[ 0, image.width, image.height, image.height ],
[ image.width, image.width, image.height, image.height ] ];
blendFunctions = [ boost_red, boost_blue, boost_yellow, boost_green ];
for(i=0;i<4;++i) {
fillRectangle(rectangle[i], /*dest. image:*/popArt,
/*source image:*/image,
blendFunctions[i]);
}
感謝您的回覆。但我沒有得到如何實現它。你會給予更多的澄清。 – 2011-05-17 07:02:00
至少,他接受了一些... – SmallChess 2011-05-17 05:50:55
你是否設法以某種方式完成它? – Osi 2013-02-18 14:05:23