你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iOS像素對齊概念解析

iOS像素對齊概念解析

編輯:IOS開發綜合

在iOS中,有一個概念叫做像素對齊,如果像素不對齊,那麼在GPU渲染時,需要進行插值計算,這個插值計算的過程會有性能損耗。 

在模擬器上,有一個選項可以把像素不對齊的部分顯示出來。

邏輯像素與物理像素

在iOS設備上,有point(邏輯像素)的概念,以及pixel(物理像素)的概念。
 在編程序時,用的是point,實際渲染時用的是pixel。一個point可以對應多個pixel。
 point和pixel的比例是可以通過[[UIScreen mainScreen] scale]來制定。

UIImage的scale概念 

If you load an image from a file whose name includes the @2x modifier, the scale is set to 2.0. You can also specify an explicit scale factor when initializing an image from a Core Graphics image. All other images are assumed to have a scale factor of 1.0. 

image也有size的概念。

This value reflects the logical size of the image and takes the image's current orientation into account. Multiply the size values by the value in the scale property to get the pixel dimensions of the image. 

就是說image的size和image和scale相乘,得到物理像素的大小。

問題

那麼像素不對齊指的是物理像素(pixel)和邏輯像素(point)對齊呢?

實驗

使用300*225像素的png圖片。分別使用不同的方法load到內存中,得到不同的size和scale,然後放在不同size的imageview裡。使用color misaligned images來判定是否像素對齊。
 這裡模擬器使用的iPhone 6,屏幕的 scale是2。

部分代碼

  NSLog(@"screen scale is %f",[[UIScreen mainScreen] scale]);
  UIImage *image = [UIImage imageNamed:@"test.png"];
  NSLog(@"image size %@, scale %f ", [NSValue valueWithCGSize:image.size], image.scale);
  UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
//  imageView.frame = CGRectMake(50, 100, imageView.bounds.size.width * 2/3, imageView.bounds.size.height * 2/3);
  imageView.frame = CGRectMake(50, 100, imageView.bounds.size.width, imageView.bounds.size.height);
  NSLog(@"imageView frame %@", [NSValue valueWithCGRect:imageView.frame]);
  [self.view addSubview:imageView];

 結論
 1.所謂的像素對齊,指的是物理像素對齊。
 2.如果是2x的圖像,放在3x的屏幕上(6sp),也會發生像素不對齊的情況。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持本站。

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved