- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 Canvas 更改形状和文本相交处的颜色。 我有 2 种形状和 1 种不同颜色的文字。
这没有任何 PorterDuffXfermode
和 PorterDuffColorFilter
模式添加到任何绘画。我希望形状的交集具有特定的颜色,例如白色,文本为红色或白色,如下图所示。
在我的例子中,文本在底部,圆圈中间和矩形在上面,但它是微不足道的,我只是想弄清楚它是如何工作的,以及交叉点应该如何设置为特定颜色。
正如您在此图片中所见 背景为黑色,圆圈为白色,文字为黑色。当圆圈重叠时,圆圈的交叉点变为黑色,文本的重叠部分变为白色。
我可以用
canvas.drawColor(Color.TRANSPARENT, Mode.CLEAR);
paint.setXfermode(new PorterDuffXfermode(Mode.SRC_OUT));
如果圆形和矩形都是白色,背景是黑色。当我将背景颜色更改为任何其他颜色时,文本不可见,形状为黑色。
最佳答案
Android Canvas change color of intersection of shapes and texts
和:
"If circle and rectangle are both white and background is black. When I change background color to any other color, text is not visible, shapes are black."
(1) 是的,我们可以用 PorterDuff.Mode
(Mode.ADD
):
PorterDuff.Mode mode = Mode.ADD;
(2) Canvas
背景必须是透明
,合成
才能工作。如果您需要任何其他背景颜色,那么我们需要在单独 Canvas
上进行合成。然后我们将绘图复制到原始的Canvas
。
"I also wonder how can i get similar results like in this image"
这是代码输出(PorterDuff
决定混合色 ;O( ):
(Q1:) "Can overlapping sections for circle, rectangle and text can be set to specific color?"
@Override
protected void onDraw(Canvas canvas)
{
super.onDraw(canvas);
Paint paint = new Paint();
Paint paintClear = new Paint();
TextPaint textPaint = new TextPaint();
int width = getWidth();
int height = getHeight();
int x = 100;
int y = 100;
int radius = 100;
PorterDuff.Mode mode = Mode.ADD; // mode Mode.ADD
paintClear.setStyle(Style.FILL);
paint.setStyle(Style.FILL);
textPaint.setAntiAlias(true);
textPaint.setTextSize(100 * getResources().getDisplayMetrics().density);
textPaint.setColor(Color.GREEN);
textPaint.setStrokeWidth(3);
// ** clear canvas backgound to white**
paintClear.setColor(Color.WHITE);
canvas.drawPaint(paintClear);
//canvas.save();
Bitmap compositeBitmap = Bitmap.createBitmap(getWidth(), getHeight(), Bitmap.Config.ARGB_8888);
Canvas compositeCanvas = new Canvas(compositeBitmap);
paintClear.setColor(Color.TRANSPARENT);
compositeCanvas.drawPaint(paintClear);
// ** draw destination circle in red **
paint.setColor(Color.RED);
compositeCanvas.drawCircle(x+100, y+100, radius, paint);
// ** set Xfermode **
paint.setXfermode(new PorterDuffXfermode(mode));
textPaint.setXfermode(new PorterDuffXfermode(mode));
// ** draw source circle in blue **
paint.setColor(Color.BLUE);
compositeCanvas.drawCircle(x-0, y-0, radius, paint);
// ** draw text in Green **
compositeCanvas.save();
compositeCanvas.rotate(-45, x, y+150);
compositeCanvas.drawText("- 65,6", x, y+150, textPaint);
compositeCanvas.restore();
//copy compositeCanvas to canvas
canvas.drawBitmap(compositeBitmap, 0, 0, null);
//canvas.restore();
}//onDraw
使用 RectF包含并相交:
public Rect mBound = new Rect(0 , 0 , 10 , 10);
public RectF a1 = new Rect(0f , 0f , 10f, 10f);
public RectF b1 = new Rect(5f , 5f , 20f, 20f);
public RectF c1 = new Rect(30f, 30f, 40f, 40f);
int boolean hit = false;
int boolean intersect = false;
hit = hitTest(20,15); // returns false
hit = hitTest(5,5); // returns true
intersect = intersectsTest(a1,b1);// returns true
intersect = intersectsTest(a1,c1);// returns false
public boolean hitTest(int x, int y)
{
return mBound.contains(x, y);
}//
// Returns true if the two specified rectangles intersect
public boolean intersectsTest(RectF a, RectF b)
{
return intersects ( a, b);
}//
你表示你想了解更多关于彩绘的知识,这是我玩过的一些东西。
setColorFilter
和 ColorMatrixColorFilter
的实验:
textPaint.setColorFilter(new ColorMatrixColorFilter(getColorMatrix5()));//custom 5
//custom 5
private ColorMatrix getColorMatrix5()
{
ColorMatrix colorMatrix = new ColorMatrix();
colorMatrix.setSaturation(0);//make it greyscale
ColorMatrix blueMatrix = new ColorMatrix(new float[] {
0, 0, 0, 0, 0, // red
0, 0, 0, 0, 0, // green
1, 1, 1, 1, 1, // blue
1, 1, 1, 1, 1 // alpha
});
// Convert, then scale and clamp
colorMatrix.postConcat(blueMatrix);
return colorMatrix;
}//getColorMatrix1
PorterDuff
听起来您需要一个 Custom PorterDuff
。这里有一些代码可以让您了解如何编写一个代码(Android
使用用 C++
编写的库)。
public class MyPorterDuffMode
{
public Bitmap applyOverlayMode(Bitmap srcBmp, Bitmap destBmp)
{
int width = srcBmp.getWidth();
int height = srcBmp.getHeight();
int srcPixels[] = new int[width * height];
int destPixels[] = new int[width * height];
int resultPixels[] = new int[width * height];
int aS = 0, rS = 0, gS = 0, bS = 0;
int rgbS = 0;
int aD = 0, rD = 0, gD = 0, bD = 0;
int rgbD = 0;
try
{
srcBmp.getPixels(srcPixels, 0, width, 0, 0, width, height);
destBmp.getPixels(destPixels, 0, width, 0, 0, width, height);
srcBmp.recycle();
destBmp.recycle();
}
catch(IllegalArgumentException e)
{
}
catch(ArrayIndexOutOfBoundsException e)
{
}
for(int y = 0; y < height; y++)
{
for(int x = 0; x < width; x++)
{
rgbS = srcPixels[y*width + x];
aS = (rgbS >> 24) & 0xff;
rS = (rgbS >> 16) & 0xff;
gS = (rgbS >> 8) & 0xff;
bS = (rgbS ) & 0xff;
rgbD = destPixels[y*width + x];
aD = ((rgbD >> 24) & 0xff);
rD = (rgbD >> 16) & 0xff;
gD = (rgbD >> 8) & 0xff;
bD = (rgbD ) & 0xff;
//overlay-mode
rS = overlay_byte(rD, rS, aS, aD);
gS = overlay_byte(gD, gS, aS, aD);
bS = overlay_byte(bD, bS, aS, aD);
aS = aS + aD - Math.round((aS * aD)/255f);
resultPixels[y*width + x] = ((int)aS << 24) | ((int)rS << 16) | ((int)gS << 8) | (int)bS;
}
}
return Bitmap.createBitmap(resultPixels, width, height, srcBmp.getConfig());
}
// kOverlay_Mode
int overlay_byte(int sc, int dc, int sa, int da)
{
int tmp = sc * (255 - da) + dc * (255 - sa);
int rc;
if (2 * dc <= da)
{
rc = 2 * sc * dc;
}
else
{
rc = sa * da - 2 * (da - dc) * (sa - sc);
}
return clamp_div255round(rc + tmp);
}
int clamp_div255round(int prod)
{
if (prod <= 0)
{
return 0;
}
else if (prod >= 255*255)
{
return 255;
}
else
{
return Math.round((float)prod/255);
}
}
}//class MyPorterDuffMode
参见 PorterDuff , PorterDuff.Mode
, PorterDuffXfermode
, ColorFilter
, ColorMatrix , ColorMatrixColorFilter , PorterDuffColorFilter , Canvas
, Color
.
关于Android Canvas 更改形状和文本交叉点的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50543570/
我正在阅读 java swing,但在理解它时遇到问题。 Color 是一个类吗? Color[] col= {Color.RED,Color.BLUE}; 这在java中是什么意思? 最佳答案 Is
我正在研究用 python 编写的 pacman 程序。其中一个模块是处理吃 bean 游戏的图形表示。这当然是一些主机颜色。列表如下: GHOST_COLORS = [] ## establishe
本网站:http://pamplonaenglishteacher.com 源代码在这里:https://github.com/Yorkshireman/pamplona_english_teache
我最近将我的手机更新为 Android Marshmallow 并在其上运行了我现有的应用程序,但注意到颜色行为有所不同:将更改应用到 View (可绘制)的背景时,共享相同背景的所有 View (引
所有 X11/w3c 颜色代码在 Android XML 资源文件格式中是什么样的? I know this looks a tad ridiculous as a question, but giv
试图让 ffmpeg 创建音频波形,同时能够控制图像大小、颜色和幅度。我已经尝试过这个(以及许多变体),但它只是返回无与伦比的 "。 ffmpeg -i input -filter_complex "
我很好奇你是否有一些关于 R 中颜色酿造的技巧,对于许多独特的颜色,以某种方式使图表仍然好看。 我需要大量独特的颜色(至少 24 种,可能需要更多,~50 种)用于堆叠区域图(所以不是热图,渐变色不起
我看到的许多 WPF 示例和示例似乎都有硬编码的颜色。这些指南 - http://msdn.microsoft.com/en-us/library/aa350483.aspx建议不要硬编码颜色。在构建
我想更改文件夹的默认蓝色 如何设置? 最佳答案 :hi Directory guifg=#FF0000 ctermfg=red 关于Vim NERDTree 颜色,我们在Stack Overflow上
是否有关于如何将任意字符串哈希为 RGB 颜色值的最佳实践?或者更一般地说:3 个字节。 你问:我什么时候需要这个?这对我来说并不重要,但想象一下任何 GitHub 上的那些管图 network pa
我正在尝试将默认颜色设置为自定义窗口小部件。 这是有问题的代码。 class ReusableCard extends StatelessWidget { ReusableCard({this.
import javax.swing.*; import javax.swing.table.DefaultTableCellRenderer; import javax.swing.table.Ta
我有一个 less 文件来定义一堆颜色/颜色。每个类名都包含相关颜色的名称,例如 .colourOrange{..} 或 .colourBorderOrange{..} 或 navLeftButtOr
我有一个RelativeLayout,我需要一个黑色背景和一个位于其中间的小图像。我使用了这段代码: 其中@drawable/bottom_box_back是: 这样我就可以将图像居中了。但背
我需要设置 浅色 的 JPanel 背景,只是为了不覆盖文本(粗体黑色)。 此刻我有这个: import java.util.Random; .... private Random random =
我正在尝试制作一个自定义文本编辑器,可以更改特定键入单词的字体和颜色。如何更改使用光标突出显示的文本的字体和/或颜色? 我还没有尝试过突出显示部分。我尝试获取整个 hEdit(HWND) 区域并更改字
我想改变我整个应用程序的颜色。 在我的 AndroidManfiest.xml 中,我有正确的代码: 在 values 文件夹中,我有 app_theme.xml: @style/MyAc
是否可以使用 android 数据绑定(bind)从 xml 中引用颜色? 这很好用: android:textColor="@{inputValue == null ? 0xFFFBC02D : 0
有没有办法在 Android 应用程序中设置“空心”颜色? 我的意思是我想要一个带有某种背景的框,而文本实际上会导致背景透明。换句话说,如果整个 View 在蓝色背景上,文本将是蓝色的,如果它是红色的
我用CGContextStrokePath画在白色背景图片中的一条直线上,描边颜色为红色,alpha为1.0画线后,为什么点不是(255, 0, 0),而是(255, 96, 96)为什么不是纯红色?
我是一名优秀的程序员,十分优秀!