强制增加亮度

强制增加亮度

我是一名台式机用户,由于我的 LCD 屏幕坏了,我不得不使用有问题的旧 CRT 屏幕。我将其对比度和亮度设置都设置为 100%,但屏幕上的某些东西我还是看不清楚,因为它们太模糊了。

似乎有办法通过软件增加亮度,但可能是因为这台电脑本身不是笔记本电脑,所以这些都被禁用了。有没有办法强制启用这些选项,无论任何条件,这样我就可以强制我的东西看起来更亮?我不介意图像质量损失。

谢谢

答案1

嗯……可能@AB 是对的。但我有一台 CRT,问题实际上是伽马(应用于亮度的曲线,使其与眼睛呈线性)。您可以尝试使用曲线值。所以:

  1. 查找您的设备名称:

    [romano:~] % xrandr --current
    Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 32767 x 32767
    VGA1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 477mm x 268mm
       1920x1080      60.0*+
       1680x1050      60.0  
       1280x1024      75.0     60.0  
       1152x864       75.0  
       1024x768       75.1     60.0  
       800x600        75.0     60.3  
       640x480        75.0     60.0  
       720x400        70.1  
    HDMI1 disconnected (normal left inverted right x axis y axis)
    DP1 disconnected (normal left inverted right x axis y axis)
    HDMI2 disconnected (normal left inverted right x axis y axis)
    DP2 disconnected (normal left inverted right x axis y axis)
    VIRTUAL1 disconnected (normal left inverted right x axis y axis)   
    
  2. 这是VGA1为我准备的...用这个命令玩:

    [romano:~] % xrandr --output VGA1 --brightness 1.5
    
  3. 如果这是一团糟(在我的液晶显示屏上,大部分都是白色;-) --- 无法用屏幕截图显示,因为拍摄没问题 --- 像素仍然相同),请返回

    [romano:~] % xrandr --output VGA1 --brightness 1.0
    

(在另一个终端上准备好它以便盲目执行它并不是一个坏主意)。您也可以查看--gamma以获得更精细的控制。来自xrandr手册:

   --gamma red:green:blue
          Set the specified floating point values as gamma  correction  on
          the crtc currently attached to this output. Note that you cannot
          get two different values for cloned outputs (i.e.:  which  share
          the  same  crtc)  and  that  switching an output to another crtc
          doesn't change the crtc gamma corrections at all.

   --brightness brightness
          Multiply the gamma values on the crtc currently attached to  the
          output  to specified floating value. Useful for overly bright or
          overly dim outputs.  However, this is a software only  modifica‐
          tion,  if  your  hardware  has  support  to  actually change the
          brightness, you will probably prefer to use xbacklight.

默认值大概--gamma 1.0:1.0:1.0 --brightness 1.0,但你可以检查一下xrandr --verbose

答案2

CRT 显示器随着使用时间的增加,亮度会逐渐降低。您应该购买一台新显示器。或者,您也可以为 GUI 使用高对比度的主题。

相关内容