- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 xCode 的新手,但遇到了问题。我正在为我的 Ipad 申请。我想突出显示文本,但无法设置线条的不透明度。我在网上搜索过,但没有找到任何相关信息。现在我正在使用这个 drawImage.alpha = lineOpacity;但这并不好,我之前绘制的所有内容都会变得不透明。我只想在新绘制时完成 alpha。我现在正在使用这段代码:
//here I init the opacity
-(id)init
{
if (self = [super init])
{
strokeWidth = 5;
strokeColor = CGColorRetain([[TiUtils colorValue:@"#000"] _color].CGColor);
lineOpacity = 1;
}
return self;
}
- (void)dealloc
{
RELEASE_TO_NIL(drawImage);
CGColorRelease(strokeColor);
[super dealloc];
}
- (void)frameSizeChanged:(CGRect)frame bounds:(CGRect)bounds
{
[super frameSizeChanged:frame bounds:bounds];
if (drawImage!=nil)
{
[drawImage setFrame:bounds];
}
}
//here I add a call
- (void)setLineOpacity_:(id)alpha
{
lineOpacity = [TiUtils floatValue:alpha];
}
//here I want to set the opacity
- (void)drawAt:(CGPoint)currentPoint
{
UIView *view = [self imageView];
UIGraphicsBeginImageContext(view.frame.size);
[drawImage.image drawInRect:CGRectMake(0, 0, view.frame.size.width, view.frame.size.height)];
CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound);
CGContextSetLineWidth(UIGraphicsGetCurrentContext(), strokeWidth);
CGContextSetStrokeColorWithColor(UIGraphicsGetCurrentContext(), strokeColor);
CGContextBeginPath(UIGraphicsGetCurrentContext());
CGContextMoveToPoint(UIGraphicsGetCurrentContext(), lastPoint.x, lastPoint.y);
CGContextAddLineToPoint(UIGraphicsGetCurrentContext(), currentPoint.x, currentPoint.y);
CGContextStrokePath(UIGraphicsGetCurrentContext());
//here i want to set the alpha, but everything I draw before get also the new alpha.
//I just want the alpha to be done on the new draw
drawImage.alpha = lineOpacity;
drawImage.image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
lastPoint = currentPoint;
}
我希望有人能帮助我。提前致谢。
编辑:我用它来画画:
- (UIImageView*)imageView
{
if (drawImage==nil)
{
drawImage = [[UIImageView alloc] initWithImage:nil];
drawImage.frame = [self bounds];
[self addSubview:drawImage];
}
return drawImage;
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
[super touchesBegan:touches withEvent:event];
UITouch *touch = [touches anyObject];
lastPoint = [touch locationInView:[self imageView]];
lastPoint.y -= 20;
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
[super touchesMoved:touches withEvent:event];
UITouch *touch = [touches anyObject];
CGPoint currentPoint = [touch locationInView:[self imageView]];
currentPoint.y -= 20;
[self drawAt:currentPoint];
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
[super touchesEnded:touches withEvent:event];
[self drawAt:lastPoint];
}
#pragma mark Public APIs
- (void)setStrokeWidth_:(id)width
{
strokeWidth = [TiUtils floatValue:width];
}
- (void)setStrokeColor_:(id)value
{
CGColorRelease(strokeColor);
TiColor *color = [TiUtils colorValue:value];
strokeColor = [color _color].CGColor;
CGColorRetain(strokeColor);
}
- (void)setLineOpacity_:(id)alpha
{
lineOpacity = [TiUtils floatValue:alpha];
}
我真的很想找出它行不通的方法,搜索了很长时间。
最佳答案
你可以像这样制作一个 UIColor 并从中获取 CGColorRef:
strokeColor = CGColorRetain([UIColor colorWithRed:1.0f green:1.0f blue:0.0f alpha:0.5f].CGColor);
关于xcode - 在 Xcode for Titanium 中绘制线条不透明度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5708245/
我正在制作一个应用程序,我需要使用 ffmpeg 将两个视频文件叠加在另一个之上。 .我尝试了各种命令,但它所做的只是合并视频。 最佳答案 基本方法是 ffmpeg -i in1 -i in2 -fi
我将 Qt3D 与 offscreen renderer 结合使用并修改框架图以包含背景图像,例如 here . 不幸的是,使用 QPhongAlphaMaterial 为绘制在背景图像上的对象添加透
我正在开发的这个组件有视觉问题。它是带有 2 个 JTextField 和 2 个 JLabel 的 JPanel。我不能做坚实的背景。我尝试了几种不透明/背景颜色组合但没有成功。 我不允许附加图像,
我正在使用 Gnuplot 成功绘制一些时间序列数据。然而,该系列相当密集(大约 5 英寸空间中有 10,000 个样本),当我绘制多个系列时,很难看到绘制在顶部的系列下方。 有什么方法可以使线条具有
我正在尝试设置一个自定义拖动图标以在 NSTableView 中使用。一切似乎都正常,但由于我对 Quartz 缺乏经验,我遇到了问题。 - (NSImage *)dragImageForRowsWi
是否可以制作例如 20% 透明的 TMemo 或其他 vcl 组件?像 TButton 或 TEdit 吗? 在谷歌搜索解决方案时,我发现了这个: From Here ,然后我想,如果我在窗体上绘制图
我目前正在学习如何使用 Scenekit,并且遇到了透明对象的问题。我写了一个着色器来增加正面看脸时的透明度,当我选择白色背景时,一切都按预期工作...... transparency with wh
我对 openGL 中的 alpha 混合有疑问... 我尝试了一些绘制透明对象的方法...通过在绘制透明面之前禁用 GL_DEPTH_TEST 并在绘制透明面后再次重新启用 GL_DEPTH_TES
我正试图让我的背景 webView 像那样透明: webView.setBackgroundColor(0x00000000); 但它不起作用,如果我添加这一行,一切都是透明的(我看不到我的 html
我目前正在创建一个应用程序并且出现了这个问题,我想让 TabLayout 透明。当我使用 RelativeLayout TabLayout 覆盖内容时,当我使用 LinearLayout TabLay
我有一个 UINavigationItem(不是 UINavigationBar),我想使其透明或不透明。这是在我建立从导航 Controller 到我的 UIViewController 子类的关系
是否可以让您的 android Activity 以透明模式在当前正在运行的 Activity 之上运行,以便您可以通过它看到它下面的 Activity ?如果可能,您可以设置不同级别的透明度吗? 最
我正在使用 noUiSlider 范围 slider 。这是 jsfiddle: https://jsfiddle.net/oun5p1xz/ behaviourSlider = document.g
有没有办法改变控制台的不透明度使其半透明? 还有办法将控制台的背景颜色更改为自定义颜色吗? 最佳答案 快速谷歌显示 this site其中包含用于具有透明窗口的控制台应用程序的代码。 本质上,您必须获
主.xml: 这是我的 main.xml,我试图使按钮最透明,但我仍然想看到它们,但我不知道要添加什么以及在哪里添加,请用低不透明度更正我的 xml在按钮
如何将实际内容 Pane 的背景设置为不透明,我添加到其中的面板我已经设置为不透明,但即使我这样做,选项卡 Pane 的主要区域仍显示为蓝色 JTabbedPane tabbedPane = new
是否可以继承颜色但覆盖不透明度值?以下是伪 CSS 中的示例: .color-class { background-color: rgba(255, 0, 0, 0); } .lighten
我正在尝试让我的导航栏变得 100% 透明,以便 UINavigationButtonItems 只可见并且背景(通常为白色)应该显示背景图像。 我试过了 HomeNavigationControll
RGBA 非常有趣,-webkit-gradient、-moz-gradient 和呃... progid:DXImageTransform.Microsoft.gradient 也是如此...是的。
我一直在尝试使用 AppBarLayout,但找不到使它的背景透明的方法。 我的意思是: 这是我的 XML: 如您所见,我使用的是颜色 #8000
我是一名优秀的程序员,十分优秀!