Archivo:Subpixel demonstration (Quartz).png

Contenido de la página no disponible en otros idiomas.
De Wikipedia, la enciclopedia libre

Subpixel_demonstration_(Quartz).png(666 × 474 píxeles; tamaño de archivo: 88 kB; tipo MIME: image/png)

Resumen

Descripción
English: This is an illustration of subpixel rendering. The first column displays the original text at 100% size. A part of the text has been magnified 600% (each pixel in the magnification is 6×6 pixels) in a regular image editing program. The upper image does not use subpixel rendering, but does use anti-aliasing. It is completely gray-scale. The lower does use subpixel rendering. At the edges of the strokes of the letters there is noticeable colour deviations. The normal-sized, subpixel-rendered text should appear significantly sharper than the regularly rendered text, but only on a TFT display with RGB subpixels in that exact order.

The second column displays the pixels as they would look if one enlarged an image of the monitor. The white pixels do not appear white, since the display elements are red, green and blue. In the regular rendition, the red, green and blue pixels are only controlled in triplets, i.e. a triplet of subpixels must have the same colour value. There is no such restriction in the subpixel-rendered version, below.

The third column shows, enlarged, how the text is perceived when the light from the red, green and blue pixels mix and form various shades of gray.

The text was generated by the Quartz engine used by Mac OS X. Microsoft's ClearType subpixel rendering technology would have produced slightly different results, but the principle is the same. The font used for the example is Optima. Helvetica Neue is used for the labels.
Español: Esta es una ilustración de la representación por subpíxeles. La primera columna muestra el texto original con el zum al 100 %. Parte del texto se ha aumentado al 600 % (cada píxel en la ampliación abarca un área de 6 × 6 px) en un programa de edición de imágenes ordinario. La imagen superior no utiliza representación por subpíxeles, pero sí emplea antidentado. Es de escala de grises en su totalidad. La inferior sí que utiliza representación por subpíxeles. En los bordes de los trazos de las letras hay divergencias de color perceptibles. El texto representado por subpíxeles de tamaño normal debería aparecer mucho más nítido que el representado de la forma normal, pero este será el caso solamente en una pantalla TFT que tenga los subpíxeles RGB en el mismo orden exacto.

La segunda columna muestra los píxeles como se podrían ver si se agrandara una imagen del monitor. Los píxeles blancos no aparecerían blancos, porque los elementos del visualizador son rojos, verdes y azules. En la reproducción usual, los píxeles rojo, verde y azul solo se controlan en tripletes; esto es, cada triplete de subpíxeles debe tener el mismo valor cromático. Esta restricción no existe en la versión representada por subpíxeles, más abajo.

La tercera columna muestra, de forma ampliada, cómo se percibe el texto cuando la luz de los píxeles rojo, verde y azul se mezclan y forman varias tonalidades de gris.

El texto se ha generado en el motor Quartz que utiliza Mac OS X. La tecnología de representación por subpíxeles ClearType de Microsoft habría producido resultados algo diferentes, pero el principio es el mismo. La letra utilizada para el ejemplo es Optima; Helvetica Neue se utiliza para los rótulos.
Fecha
Fuente Trabajo propio
Autor © 2004 David Remahl

How the image was created

First, Apple's text editing program TextEdit was used to draw the text at 12 and 18 pt (72 dpi) and captured by taking a screenshot. The images were imported in Photoshop and positioned. The two images were then duplicated and scaled up with nearest-neighbour sampling, 600%. Then the following Python script was used to split the components of the source image into three vertical components:

#!/usr/bin/env python

from AppKit import *
from Foundation import *
import sys

image = NSImage.alloc().initWithContentsOfFile_(sys.argv[1])
imageRep = image.representations()[0]

bmpData = imageRep.bitmapData()

numPixels = len(bmpData) / 3

if sys.argv[2] == "1":
 for p in range(numPixels):
 (r,g,b) = bmpData[p*3:(p+1)*3]
 sys.stdout.write(3*r)
 sys.stdout.write(3*g)
 sys.stdout.write(3*b)
elif sys.argv[2] == "2":
 nul = '\0'
 for p in range(numPixels):
 (r,g,b) = bmpData[p*3:(p+1)*3]
 sys.stdout.write(r+nul+nul)
 sys.stdout.write(nul+g+nul)
 sys.stdout.write(nul+nul+b)

The above script was used twice per text image (the raw screenshot), producing four distorted image that were three times as wide as normal. They were imported into Photoshop using the RAW format import. Each of the four images was scaled like this, with nearest-neighbour sampling:

  • Scale height 300%.
  • Scale width and height 200%.

The resulting images had the same scale as the original text that had been enlarged 6 times. The enlarged images were cropped to an approximate square and positioned like they appear in the final image.

The Photoshop file, with intact layers, can be acquired by mailing the copyright holder. In the future, I plan to upload it to the wiki, but right now Photoshop files are unfortunately not supported by MediaWiki.

Licencia

Chmod007 at the English Wikipedia, titular de los derechos de autor de esta obra, la publica en los términos de la siguiente licencia:
GNU head Se autoriza la copia, distribución y modificación de este documento bajo los términos de la licencia de documentación libre GNU, versión 1.2 o cualquier otra que posteriormente publique la Fundación para el Software Libre; sin secciones invariables, textos de portada, ni textos de contraportada. Se incluye una copia de la dicha licencia en la sección titulada Licencia de Documentación Libre GNU.
w:es:Creative Commons
atribución compartir igual
Este archivo se encuentra bajo la licencia Creative Commons Genérica de Atribución/Compartir-Igual 3.0.
Atribución: Chmod007 at the English Wikipedia
Eres libre:
  • de compartir – de copiar, distribuir y transmitir el trabajo
  • de remezclar – de adaptar el trabajo
Bajo las siguientes condiciones:
  • atribución – Debes otorgar el crédito correspondiente, proporcionar un enlace a la licencia e indicar si realizaste algún cambio. Puedes hacerlo de cualquier manera razonable pero no de manera que sugiera que el licenciante te respalda a ti o al uso que hagas del trabajo.
  • compartir igual – En caso de mezclar, transformar o modificar este trabajo, deberás distribuir el trabajo resultante bajo la misma licencia o una compatible como el original.
Esta etiqueta de licencia fue agregada a este archivo como parte de la actualización de la licencia GFDL.

Registro original de carga

Aquí se muestra la página de descripción original. Los siguientes nombres de usuario se refieren a en.wikipedia.
  • 2004-10-27 20:10 Chmod007 666×474×8 (90438 bytes) Infinitesimally small tweak to the position of one of the texts.
  • 2004-10-27 20:05 Chmod007 666×474×8 (90427 bytes) New version, luminance corrected (though the lack of colour management will probably make it look just as bad on many computers.) Still (c) David Remahl, {{GFDL}}
  • 2004-10-27 13:09 Chmod007 666×474×8 (75149 bytes) minor correction of the colours in the mid-lower cell
  • 2004-10-27 11:54 Chmod007 666×474×8 (93082 bytes) Demonstration of subpixels. Detailed description forthcoming. © [[2004]] [[User:Chmod007|David Remahl]]. {{GFDL}}

Leyendas

Añade una explicación corta acerca de lo que representa este archivo

Elementos representados en este archivo

representa a

Historial del archivo

Haz clic sobre una fecha y hora para ver el archivo tal como apareció en ese momento.

Fecha y horaMiniaturaDimensionesUsuarioComentario
actual15:07 9 dic 2018Miniatura de la versión del 15:07 9 dic 2018666 × 474 (88 kB)OgreBot(BOT): Reverting to most recent version before archival
15:07 9 dic 2018Miniatura de la versión del 15:07 9 dic 2018666 × 474 (88 kB)OgreBot(BOT): Uploading old version of file from en.wikipedia; originally uploaded on 2004-10-27 20:05:59 by Chmod007
15:07 9 dic 2018Miniatura de la versión del 15:07 9 dic 2018666 × 474 (73 kB)OgreBot(BOT): Uploading old version of file from en.wikipedia; originally uploaded on 2004-10-27 13:09:34 by Chmod007
15:06 9 dic 2018Miniatura de la versión del 15:06 9 dic 2018666 × 474 (91 kB)OgreBot(BOT): Uploading old version of file from en.wikipedia; originally uploaded on 2004-10-27 11:54:22 by Chmod007
08:46 18 oct 2007Miniatura de la versión del 08:46 18 oct 2007666 × 474 (88 kB)Liftarn{{Information |Description=Demonstration of subpixels. © en:2004 David Remahl. This is an illustration of en:subpixel rendering. The first column displays the original text at 100% size. A part of the text has been magnif

La siguiente página usa este archivo:

Uso global del archivo

Las wikis siguientes utilizan este archivo:

Metadatos