iOS-06-兩種獲取某個點(diǎn)上的顏色值用于點(diǎn)擊測試

在平常開發(fā)中我們有時候會遇到要求我們獲取屏幕上某個點(diǎn)的顏色值胀蛮,或者對點(diǎn)擊的點(diǎn)上的顏色值進(jìn)行比較和判斷的院刁。接下來我們提供給大家兩種方法進(jìn)行操作與調(diào)用糯钙。

第一種

- (UIColor*)colorAtPixel:(CGPoint)point { // Cancel if point is outside image coordinates if (!CGRectContainsPoint(CGRectMake(0.0f, 0.0f, self.view.frame.size.width, self.view.frame.size.height), point)) { return nil; } NSInteger pointX = trunc(point.x); NSInteger pointY = trunc(point.y); CGImageRef cgImage = self.iconView.image.CGImage; NSUInteger width = self.view.frame.size.width; NSUInteger height = self.view.frame.size.height; CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); int bytesPerPixel = 4; int bytesPerRow = bytesPerPixel * 1; NSUInteger bitsPerComponent = 8; unsigned char pixelData[4] = { 0, 0, 0, 0 }; CGContextRef context = CGBitmapContextCreate(pixelData,1,1, bitsPerComponent, bytesPerRow, colorSpace, kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big); CGColorSpaceRelease(colorSpace); CGContextSetBlendMode(context, kCGBlendModeCopy); // Draw the pixel we are interested in onto the bitmap context CGContextTranslateCTM(context, -pointX, pointY - (CGFloat)height); CGContextDrawImage(context, CGRectMake(0.0f, 0.0f, (CGFloat)width, (CGFloat)height), cgImage); CGContextRelease(context); // Convert color values [0..255] to floats [0.0..1.0] CGFloat red = (CGFloat)pixelData[0] / 255.0f; CGFloat green = (CGFloat)pixelData[1] / 255.0f; CGFloat blue = (CGFloat)pixelData[2] / 255.0f; CGFloat alpha = (CGFloat)pixelData[3] / 255.0f; NSLog(@" colors: RGB %f %f %f %f", red, green, blue, alpha); return [UIColor colorWithRed:red green:green blue:blue alpha:alpha]; }

第二種

- (UIColor*)getPixelColorAtLocation:(CGPoint)point { UIColor* color = nil; CGImageRef inImage = self.iconView.image.CGImage; // Create off screen bitmap context to draw the image into. Format ARGB is 4 bytes for each pixel: Alpa, Red, Green, Blue CGContextRef cgctx = [self createARGBBitmapContextFromImage:inImage]; if (cgctx == NULL) { return nil; } size_t w = CGImageGetWidth(inImage); size_t h = CGImageGetHeight(inImage); CGRect rect = { { 0, 0 }, { w, h } }; // Draw the image to the bitmap context. Once we draw, the memory // allocated for the context for rendering will then contain the // raw image data in the specified color space. CGContextDrawImage(cgctx, rect, inImage); // Now we can get a pointer to the image data associated with the bitmap // context. unsigned char* data = CGBitmapContextGetData(cgctx); if (data != NULL) { //offset locates the pixel in the data from x,y. //4 for 4 bytes of data per pixel, w is width of one row of data. @try { int offset = 4 * ((w * round(point.y)) + round(point.x)); NSLog(@"offset: %d", offset); int alpha = data[offset]; int red = data[offset + 1]; int green = data[offset + 2]; int blue = data[offset + 3]; NSLog(@"offset: %i colors: RGB A %i %i %i %i", offset, red, green, blue, alpha); color = [UIColor colorWithRed:(red / 255.0f) green:(green / 255.0f) blue:(blue / 255.0f) alpha:(alpha / 255.0f)]; } @catch (NSException* e) { NSLog(@"%@", [e reason]); } @finally { } } // When finished, release the context CGContextRelease(cgctx); // Free image data memory for the context if (data) { free(data); } return color; }
- (CGContextRef)createARGBBitmapContextFromImage:(CGImageRef)inImage { CGContextRef context = NULL; CGColorSpaceRef colorSpace; void* bitmapData; int bitmapByteCount; int bitmapBytesPerRow; // Get image width, height. We'll use the entire image. size_t pixelsWide = CGImageGetWidth(inImage); size_t pixelsHigh = CGImageGetHeight(inImage); // Declare the number of bytes per row. Each pixel in the bitmap in this // example is represented by 4 bytes; 8 bits each of red, green, blue, and // alpha. bitmapBytesPerRow = (pixelsWide * 4); bitmapByteCount = (bitmapBytesPerRow * pixelsHigh); // Use the generic RGB color space. colorSpace = CGColorSpaceCreateDeviceRGB(); if (colorSpace == NULL) { fprintf(stderr, "Error allocating color spacen"); return NULL; } // Allcate memory for image data. This is the destination in memory // where any drawing to the bitmap context will be rendered. bitmapData = malloc(bitmapByteCount); if (bitmapData == NULL) { fprintf(stderr, "Memory not allocated!"); CGColorSpaceRelease(colorSpace); return NULL; } // Create the bitmap context. We want pre-multiplied ARGB, 8-bits // per component. Regardless of what the source image format is // (CMYK, Grayscale, and so on) it will be converted over to the format // specified here by CGBitmapContextCreate. context = CGBitmapContextCreate(bitmapData, pixelsWide, pixelsHigh, 8, // bits per component bitmapBytesPerRow, colorSpace, kCGImageAlphaPremultipliedFirst);if (context == NULL) { free(bitmapData); fprintf(stderr, "Context not created!");} // Make sure and release colorspace before returning CGColorSpaceRelease(colorSpace); return context; }

在我項(xiàng)目中應(yīng)用到的實(shí)例中 我測試第一種測試顏色較準(zhǔn)粪狼,但是還沒有找到很好的解決完全正確的辦法退腥,如果各位游客有好的辦法,希望能夠留言給我再榄,謝謝

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末狡刘,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子困鸥,更是在濱河造成了極大的恐慌嗅蔬,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件疾就,死亡現(xiàn)場離奇詭異澜术,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)猬腰,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進(jìn)店門鸟废,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人姑荷,你說我怎么就攤上這事盒延。” “怎么了鼠冕?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵添寺,是天一觀的道長。 經(jīng)常有香客問我懈费,道長计露,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任憎乙,我火速辦了婚禮薄坏,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘寨闹。我一直安慰自己胶坠,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布繁堡。 她就那樣靜靜地躺著沈善,像睡著了一般。 火紅的嫁衣襯著肌膚如雪椭蹄。 梳的紋絲不亂的頭發(fā)上闻牡,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天,我揣著相機(jī)與錄音绳矩,去河邊找鬼罩润。 笑死,一個胖子當(dāng)著我的面吹牛翼馆,可吹牛的內(nèi)容都是我干的割以。 我是一名探鬼主播金度,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼严沥!你這毒婦竟也來了猜极?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤消玄,失蹤者是張志新(化名)和其女友劉穎跟伏,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體翩瓜,經(jīng)...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡受扳,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了兔跌。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片辞色。...
    茶點(diǎn)故事閱讀 38,163評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖浮定,靈堂內(nèi)的尸體忽然破棺而出相满,到底是詐尸還是另有隱情,我是刑警寧澤桦卒,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布立美,位于F島的核電站,受9級特大地震影響方灾,放射性物質(zhì)發(fā)生泄漏建蹄。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一裕偿、第九天 我趴在偏房一處隱蔽的房頂上張望洞慎。 院中可真熱鬧,春花似錦嘿棘、人聲如沸劲腿。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽焦人。三九已至,卻和暖如春重父,著一層夾襖步出監(jiān)牢的瞬間花椭,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工房午, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留矿辽,地道東北人。 一個月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像袋倔,于是被迫代替她去往敵國和親雕蔽。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,925評論 2 344

推薦閱讀更多精彩內(nèi)容

  • --繪圖與濾鏡全面解析 概述 在iOS中可以很容易的開發(fā)出絢麗的界面效果奕污,一方面得益于成功系統(tǒng)的設(shè)計(jì)萎羔,另一方面得益...
    韓七夏閱讀 2,710評論 2 10
  • 1液走、禁止手機(jī)睡眠[UIApplication sharedApplication].idleTimerDisabl...
    DingGa閱讀 1,116評論 1 6
  • 1碳默、禁止手機(jī)睡眠 [UIApplication sharedApplication].idleTimerDisab...
    FF_911閱讀 1,395評論 0 3
  • 城市套路深,我要回農(nóng)村缘眶。 最近這些日子嘱根,接觸到一些人,經(jīng)歷了一些事巷懈,也領(lǐng)略了一下什么叫套路该抒。 在我的概念里,所謂套...
    人生偶記閱讀 1,357評論 10 12
  • 說走就走的旅行顶燕,我做不到凑保。 也許是牽掛太多,也許是責(zé)任心太重涌攻。眼前這份工作欧引,其實(shí)做得日漸上軌道,看著一本本書出版恳谎,...
    Sky閱讀 194評論 0 2