CGImageRef 的 参数解释

CGImageRef CGImageCreate (
   size_t width,
   size_t height,
   size_t bitsPerComponent,
   size_t bitsPerPixel,
   size_t bytesPerRow,
   CGColorSpaceRef colorspace,
   CGBitmapInfo bitmapInfo,
   CGDataProviderRef provider,
   const CGFloat decode[],
   bool shouldInterpolate,
   CGColorRenderingIntent intent
);

 
 
  
  Sample:
 
 
 
 
  
      width = 500;
 
 
 
 
  
      height = 500;
 
 
 
 
  
      bitsPerComponent = 8;// RGBA  
 
 
 
 
  
      bitsPerPixel = 32; //RGBA
 
 
 
 
  
      bytesPerRow = (32/8)*500;  (bitsPerPixel/bitsPerComponent)*width, bitsPerPixel/bitsPerComponent is bytes per pixel
 
 
 
 
  
      colorspace = CGContextGetDeviceRGB();
 
 
 
 
  
      bitmapInfo =
  
  

kCGImageAlphaPremultipliedLast

provider = CGDataProviderRef;

decode

width

The width, in pixels, of the required image. 图像的宽度

height

The height, in pixels, of the required image 图像的高度

bitsPerComponent

The number of bits for each component in a source pixel. For example, if the source image uses the RGBA-32 format, you would specify 8 bits per component.

参数bitsPerComponent被渲染内存区域中组件在屏幕每个像素点上需要使用的bits(位数),举例来说,如果使用32-bit 像素和RGB颜色格式,那么RGBA颜色格式中每个组件在屏幕每个像素点上需要使用的bits位就为32/4=8。

bitsPerPixel

The total number of bits in a source pixel. This value must be at least bitsPerComponent times the number of components per pixel.

参数bitsPerPixel表示每个像素所占的bits(位数), 这个值必需是 bitsPerComponent的倍数

bytesPerRow

The number of bytes of memory for each horizontal row of the bitmap.

参数bytesPerRow代表被渲染内存区域中每行所使用的bytes(字节数)。

colorspace

The color space for the image. Quartz retains the color space you pass in; on return, you may safely release it.

参数colorspace用于被渲染内存区域的“位图上下文”

bitmapInfo

CGBitmapInfo constant that specifies whether the bitmap should contain an alpha channel and its relative location in a pixel, along with whether the components are floating-point or integer values.

参数bitmapInfo指定被渲染内存区域的“视图”是否包含一个alpha(透视)通道以及每个像素相应的位置,除此之 
外还可以指定组件式是浮点值还是整数值。 

provider

The source of data for the bitmap. For information about supported data formats, see the discussion below. Quartz retains this object; on return, you may safely release it.

参数provider指定bitmap的数据

decode

The decode array for the image. If you do not want to allow remapping of the image’s color values, pass NULL for the decode array. For each color component in the image’s color space (including the alpha component), a decode array provides a pair of values denoting the upper and lower limits of a range. For example, the decode array for a source image in the RGB color space would contain six entries total, consisting of one pair each for red, green, and blue. When the image is rendered, Quartz uses a linear transform to map the original component value into a relative number within your designated range that is appropriate for the destination color space.

shouldInterpolate

A Boolean value that specifies whether interpolation should occur. The interpolation setting specifies whether Quartz should apply a pixel-smoothing algorithm to the image. Without interpolation, the image may appear jagged or pixelated when drawn on an output device with higher resolution than the image data.

intent

A rendering intent constant that specifies how Quartz should handle colors that are not located within the gamut of the destination color space of a graphics context. The rendering intent determines the exact method used to map colors from one color space to another. For descriptions of the defined rendering-intent constants, see Color Rendering Intents.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值