2013-10-01 3 views
1

이 경우,iOS - PNG 이미지를 4 비트 비트 맵 회색조로 변환하는 방법은 무엇입니까?

PNG 이미지 (또는 JPEG)를 4 비트 비트 맵 회색조 이미지로 변환하려면 iOS6 +를 사용하고 4 비트 비트 맵은 16 회색 색상 만 지원하면됩니다.

어떻게하면됩니까?

미리 감사드립니다.

+0

http://stackoverflow.com/questions/1298867/convert-image-to-grayscale – Spynet

+0

감사합니다. 코드가 저에게 어떤 의미가 있는지 확인해 드리겠습니다. –

답변

0

당신은 8 비트 그레이 스케일 이미지 (Convert UIImage to 8 bits 참조하거나 다른 순열을 포함 the link that Spynet shared 참조)로 변환 할 수 있습니다,하지만 난 CGBitmapContextCreate이 유효한 아니라고 불평 (4 비트 그레이 스케일 비트 맵을 만들 것을 적용 할 수 없습니다 매개 변수 조합). 이론적으로 가능해야합니다 (4 비트 형식이 CVPixelBufferpixel format types 아래에 나열되어 있음). 그러나이 기술을 작동시키지 못했습니다.

+0

답해 주셔서 감사합니다. –

0

이미지를 4 비트 회색조로 변환하는 솔루션을 찾았습니다.

-(UIImage *)grayscaleImageAt4Bits:(UIImage *)_image 
{ 
    CGImageRef imageRef = [_image CGImage]; 
    int width = CGImageGetWidth(imageRef); 
    int height = CGImageGetHeight(imageRef); 
    NSInteger _bitsPerComponent = 8; 
    NSInteger _bytesPerPixel = 1; 
    NSInteger _bytesPerRow  = _bytesPerPixel * width; 
    CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceGray(); 
    uint8_t *sourceData = malloc(height * width * _bytesPerPixel); 
    CGContextRef context = CGBitmapContextCreate(sourceData, 
               width, 
               height, 
               _bitsPerComponent, 
               _bytesPerRow, 
               colorSpace, 
               kCGImageAlphaNone); 
    CGContextDrawImage(context, CGRectMake(0, 0, width, height), imageRef); 

    const int _redIndex = 0; 
    const int _greenIndex = 1; 
    const int _blueIndex = 2; 
    int _byteIndex = 0; 
    int _bitIndex = 0; 
    uint8_t *_newImageBits = malloc(height * width * _bytesPerPixel/2); 
    for(int j=0;j<height;j++) 
    { 
     for(int k=0;k<width;k++) 
     { 
      UInt8 _perPixel = _newImageBits[_byteIndex]; 
      UInt8 *rgbPixel = (UInt8 *) &sourceData[j * width + k]; 
      int _red = rgbPixel[_redIndex]; 
      int _green = rgbPixel[_greenIndex]; 
      int _blue = rgbPixel[_blueIndex]; 
      int _pixelGrayValue = (_green + _red + _blue)/16; 
      UInt8 _pixelByte = (UInt8)_pixelGrayValue; 
      _perPixel |= (_pixelByte<<4); 
      _newImageBits[_byteIndex] = _perPixel; 
      _bitIndex += 4; 
      if(_bitIndex > 7) 
      { 
       _byteIndex++; 
       _bitIndex = 0; 
      } 
     } 
    } 
    free(sourceData); 
    //Direct fetch Bytes of 4-Bits, then you can use this Bytes (sourceData) to do something. 
    sourceData = _newImageBits; 
    CGImageRef cgImage = CGBitmapContextCreateImage(context); 
    UIImage *_grayImage = [UIImage imageWithCGImage:cgImage]; 
    CGContextRelease(context); 
    CGColorSpaceRelease(colorSpace); 
    //Convert to NSData type, then you can use this NSData (_sourceImageData) to do something. 
    NSData *_sourceImageData = [NSData dataWithBytes:sourceData length:(width * height * _bytesPerPixel)]; 
    free(sourceData); 
    return _grayImage; 
} 

및 iOS 만 표시 적어도 8 비트 컬러를 지원하므로 사용의 OpenGL 텍스처에 4 비트의 데이터만을 전송.

+0

iOS 8에서는 다음과 같은 경고 메시지가 나타납니다. '열거 형'열거 형 CGImageAlphaInfo '를 다른 열거 형'CGBitmapInfo '(일명'열거 형 CGBitmapInfo ')로 암시 적 변환' –