- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
如果我使用以下内容
for(int i = 255; i > 0; i--)
{
Color transparentBlack = new Color(0, 0, 0, i);
}
我有使用这种颜色绘制的对象的效果,从黑色变为浅灰色,然后当 alpha 值变为零时不可见。但是,如果我从白色值开始:
new Color(255, 255, 255, i);
对象永远不会变得不可见,只会保持白色。我还注意到,如果我使用比黑色稍浅的值(比如 50、50、50),绘图会从深色变为不可见,再变为白色。
我假设我只是不明白 alpha 混合是如何工作的,但是有没有办法让白色逐渐变成半透明?
编辑:我绘制的背景是 Color.CornflowerBlue (100,149,237,255)
编辑:再现解释的示例 XNA 程序。使用;创建一个新的 XNA Game Studio 4.0 项目 - Windows Game (4.0),将其命名为 AlphaBlendTest - & 在内容项目中添加一个新的 SpriteFont 并将其命名为 testfont
using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Audio;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.GamerServices;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework.Media;
namespace AlphaBlendTest
{
/// <summary>
/// This is the main type for your game
/// </summary>
public class Game1 : Microsoft.Xna.Framework.Game
{
GraphicsDeviceManager graphics;
SpriteBatch spriteBatch;
SpriteFont font;
public Game1()
{
graphics = new GraphicsDeviceManager(this);
Content.RootDirectory = "Content";
}
/// <summary>
/// Allows the game to perform any initialization it needs to before starting to run.
/// This is where it can query for any required services and load any non-graphic
/// related content. Calling base.Initialize will enumerate through any components
/// and initialize them as well.
/// </summary>
protected override void Initialize()
{
// TODO: Add your initialization logic here
base.Initialize();
}
/// <summary>
/// LoadContent will be called once per game and is the place to load
/// all of your content.
/// </summary>
protected override void LoadContent()
{
// Create a new SpriteBatch, which can be used to draw textures.
spriteBatch = new SpriteBatch(GraphicsDevice);
font = Content.Load<SpriteFont>("testfont");
}
/// <summary>
/// UnloadContent will be called once per game and is the place to unload
/// all content.
/// </summary>
protected override void UnloadContent()
{
// TODO: Unload any non ContentManager content here
}
/// <summary>
/// Allows the game to run logic such as updating the world,
/// checking for collisions, gathering input, and playing audio.
/// </summary>
/// <param name="gameTime">Provides a snapshot of timing values.</param>
protected override void Update(GameTime gameTime)
{
// Allows the game to exit
if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed)
this.Exit();
// TODO: Add your update logic here
base.Update(gameTime);
}
/// <summary>
/// This is called when the game should draw itself.
/// </summary>
/// <param name="gameTime">Provides a snapshot of timing values.</param>
protected override void Draw(GameTime gameTime)
{
GraphicsDevice.Clear(Color.CornflowerBlue);
spriteBatch.Begin();
//spriteBatch.Draw(tR, new Rectangle(100, 100, 100, 100), Color.Red);
Vector2 v2 = new Vector2(0, 0);
spriteBatch.DrawString(font, "Test - White", v2, Color.White);
v2.Y = v2.Y + 50;
spriteBatch.DrawString(font, "Test - Black", v2, Color.Black);
v2.Y = v2.Y + 50;
Color BlackTransparent = new Color(0, 0, 0, 0);
spriteBatch.DrawString(font, "Test - Black Transparent", v2, BlackTransparent);
v2.Y = v2.Y + 50;
Color WhiteTransparent = new Color(255, 255, 255, 0);
spriteBatch.DrawString(font, "Test - White Transparent", v2, WhiteTransparent);
spriteBatch.End();
base.Draw(gameTime);
}
}
}
编辑:这是这段代码绘制的图像:
编辑:其中一条评论担心这是一个仅与文本相关的窗口“功能”。我使用文本作为例子来保持演示程序的小;使用图像进行测试会得到相同的结果。
将方框添加到演示程序中;创建一个方形白色 PNG 图像并将其添加到内容目录(使用内容管道的默认值)。然后将其添加到类中:
Texture2D tWhiteBox;
将此添加到加载方法中:
tWhiteBox = Content.Load<Texture2D>("whitebox");
然后在 draw 中的其他 draw 语句下面添加以下内容:
v2.Y = v2.Y + 50;
spriteBatch.Draw(tWhiteBox, v2, WhiteTransparent);
最佳答案
灰色是您在 XNA 4.0 中得到的(如果您尝试只调整 alpha channel 而不同时调整 RGB channel ,则为全白色)。透明度是使用预乘 alpha 完成的(默认情况下)。如果您正在寻找旧的非 pre-mul XNA 3.1 行为,请参阅 Shawn Hargreaves 的这篇文章:http://blogs.msdn.com/b/shawnhar/archive/2010/04/08/premultiplied-alpha-in-xna-game-studio-4-0.aspx .在帖子的底部,它会告诉您如何操作。
我建议在阅读之前先阅读他关于预乘 alpha 的所有帖子(您可以使用他页面顶部附近左侧的“博客索引”链接)- pre-mul 确实很多更好,逻辑上更一致。
关于c# - 是否存在使白色不可见的 alpha 值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3849569/
对于我正在使用的启动画面: setContentView(R.layout.activity_home); new Handler().postDelayed(new Runnable() {
这是我的问题。我有一个应用程序,它打开一个文件打开对话框,我试图将文件路径和文件名输入到“文件名:”组合框部分。 应用程序加载了您登录的表单。这将打开另一个表单,其中有许多按钮。选择其中一个按钮会打开
我正在使用 sjPlot 的 plot_model() 绘制回归模型。我想将我的线条颜色从 sjPlot 主题(红色和蓝色线条)更改为黑白或灰度。但是,当我使用 set_theme(theme_bw(
所以看起来SpriteMaterial的默认颜色是0xFFFFFF。这似乎意味着 Sprite 没有颜色。如果我将 Material 的颜色属性更改为 0xFF0000, Sprite 将显示为红色。
我需要在文档中找到最大的空白区域,并使用python在其中放置QR码,以显示其坐标,中心点和区域。 我认为OpenCV和Numpy应该足以完成此任务。 使用什么样的THRESH?由于扫描类型很多: 灰
Android 选项卡上的波纹效果默认为白色。我想在 tablayout 上添加波纹效果,但我的选项卡背景已经是白色的,并且波纹效果在其上不可见。 有没有办法改变 tabLayout 波纹效果的颜
我正在尝试在我的应用程序上显示一个基本的谷歌地图,但它不起作用,它显示一个白屏,即使我有网络连接,我也检查了我的 MANEFIST 一百次,我生成了一个 deubg key ,并确定它是是的 我想是否
我有一个带有框阴影的蓝色框,文本颜色为白色,如下所示: . 是否可以添加内阴影?喜欢this (jsfiddle)?它不适用于白色文本,就像我的示例一样。 body { /* This has t
这是我的代码: body{ background: url(https://static.pexels.com/photos/29628/pexels-photo.jpg) no-repeat
我已经从 w3school 实现了一个 slider 。我还从另一个例子中实现了这些点来跟踪幻灯片。如果我单击它们,它们工作正常,问题是我无法使当前/事件点(从实际位置的幻灯片)显示为纯白色,让你知道
我是 bootstrap 的新手,试图提高我的技能,我已经制作了 5 个盒子,如您所见(左侧两个,右侧 3 个),我的问题是为什么盒子编号“5”看起来不同,而不是相应的与数字 2 和 4 不在同一行,
我一直在研究一种导航,它会在滚动过标题后获得不透明度并缩小 Logo - 一切都很好,除了当导航栏覆盖白色背景上的段落时,它会变成透明并造成视觉困惑.我猜这可能是使用 rgba 的问题?我想保持不透明
有一个关于名为 Rockwell Std Light 的字体的问题。我在 Photoshop 中用蓝色背景显示白色文本,在 Dreamweaver 中也做了同样的事情。但是,网页中的字体总是看起来比较
我正在创建一个应用程序,它会在某个时候打开照片库。问题是照片库中的状态栏是黑色透明的,而我想要一个默认的应用程序(纯白色)。有什么办法可以改变它..? 我想补充一点,我试过这个:iOS SDK - H
我正在尝试使用 AForge.NET 来检测图像中的粗白线。 这就像我得到的管道一样,是应用阈值过滤器后我想要的结果。 我知道如何检测形状并且我已经在这样做了,但是这在任何形状下都不匹配,因为它没有边
我正在尝试让 Tabs 在 Android 上通过 compose 与 TabRow 一起使用。我想要的是 TabRow 有白色背景。 如文档 (https://developer.android.c
我已经为我的 Visual Studio 安装了最新的 WiX(安装程序),当我想设置图标时,它总是以空白结束。我正在尝试设置“所有 Windows 软件”中条目的图标 在下面的图片中你可以看到图标的
为什么选择后微调器文本会变成空白? 如果我使用 getActivity().recreate(),微调器文本会闪烁,然后变为空白;做出选择后。 我正在使用 recreate 根据微调器选择加载区域设置
我最近遇到了 的问题每当我滚动时,网站顶部/底部都会出现白色块 它更大一点。白色块是 的一部分正文背景 ,因为改变 body backgroundcolor 会使块也改变颜色。 我已经试过了设置 bo
我在 iOS7、iPhone 4 及更高版本的状态栏上遇到了一些问题。因为我的应用程序的背景是深色的,所以我需要状态栏是白色的,这样看起来不错。但是,当最小化应用程序、等待几秒钟并返回应用程序时,它会
我是一名优秀的程序员,十分优秀!