标签: shape

获取阴影/轮廓/形状的图标

我想知道是否有可能在Android的主屏幕上获得阴影/形状的图标?我知道当你向主屏幕添加一些自定义图标然后移动它时你会得到该图标的轮廓.(至少在samsungs TouchWiz 4+和API 11+中).那么有没有办法在主屏幕上获取图标的形状和位置?

icons android shape outline homescreen

2
推荐指数
1
解决办法
1788
查看次数

将GIS形状文件转换为R中的栅格?

我需要将shapefile转换为栅格格式.

我在R包"raster"中使用了"rasterize"功能,但结果看起来不正确.

tst <- rasterize(shpfile, r, fun="count")  
Found 5 region(s) and 5 polygon(s)
Run Code Online (Sandbox Code Playgroud)

没有发生记录的网格:

range(tst[],na.rm=TRUE)
[1]  Inf -Inf
Warning messages:
1: In min(x) : no non-missing arguments to min; returning Inf
2: In max(x) : no non-missing arguments to max; returning -Inf

sum(tst[],na.rm=TRUE)
[1] 0
Run Code Online (Sandbox Code Playgroud)

我写的R脚本:

# download the GIS shape file
download.file("http://esp.cr.usgs.gov/data/little/abiebrac.zip",
              destfile = "abiebrac.zip")

# unzip
unzip("abiebrac.zip")

# Read shapefile into R
library(maptools)

shpfile <- readShapePoly("abiebrac")
extent(shpfile)

# mapping
plot(shpfile)

library(maps)
map("world",xlim=c(-180,-50),ylim=c(7,83),add=FALSE)
plot(shpfile,add=TRUE,lwd=10)


# rasterize
library(raster)

GridSize <- …
Run Code Online (Sandbox Code Playgroud)

r raster spatial shape

2
推荐指数
1
解决办法
3365
查看次数

创建笑脸并添加表达

在这里,我使用CSS创建了三个表情符号.

小提琴 - 演示

Should express Happy(this is there): <div id="smiley1">? </div>
Should express sad :<div id="smiley2">? </div> ?? 
Should express neutral<div id="smiley3">?</div> ??
Run Code Online (Sandbox Code Playgroud)

问题:

  1. 所有这些应该一个接一个地放置(目前重叠)
  2. 如何让它表达悲伤和中立?

CSS:

#smiley1 {
    -webkit-border-radius:50px;
    background-color:rgba(0, 0, 0, 0);
    color: red;
    width:350px;
    position: absolute;
    text-align: center;
    font-size: 20pt;
    z-index: 9999;
}

#smiley2 {
    -webkit-border-radius:50px;
    background-color:rgba(0, 0, 0, 0);
    color: blue;
    width:350px;
    position: absolute;
    text-align: center;
    font-size: 20pt;
    z-index: 9999;
}
#smiley3 {
    -webkit-border-radius:50px;
    background-color:rgba(0, 0, 0, 0);
    color: green;
    width:350px;
    position: absolute;
    text-align: center; …
Run Code Online (Sandbox Code Playgroud)

html css shape css3 css-shapes

2
推荐指数
1
解决办法
1852
查看次数

如何使用用户触摸事件创建可调整大小的圆圈?

我正在尝试创建一个将在onTouchEvent上调整大小的圆形

我关注了可调整大小的矩形帖子,但我认为由于缺乏数学知识,我不知道如何创建可调整大小的圆圈。

我试过改变

canvas.drawRect(
    left + colorballs.get(0).getWidthOfBall() / 2,
    top + colorballs.get(0).getWidthOfBall() / 2, 
    right + colorballs.get(2).getWidthOfBall() / 2, 
    bottom + colorballs.get(2).getWidthOfBall() / 2, paint);
Run Code Online (Sandbox Code Playgroud)

canvas.drawCircle() ; 它创建了圆圈,但不是我想要的。

你能告诉我是否已经实现了这样的东西,或者我应该遵循哪些点来将这个矩形示例转换为可调整大小的圆。

android shape android-drawable

2
推荐指数
1
解决办法
1184
查看次数

Android底部锯齿形状

我需要以编程方式实现下面附加的图像,有什么办法吗?我知道如何绘制矩形,layer-list但对于底部特定的锯齿形纹理我不知道在此输入图像描述

请帮我实现这个形状

提前致谢

android shape drawrectangle zigzag

2
推荐指数
1
解决办法
2331
查看次数

拖动QML形状的坐标

我想绘制一个有4个不等长度的边和能够拖动它的顶点的形状.当我拖动顶点时,连接到它的侧面应相应调整大小.

在SO上发现了另一个问题但是提出的解决方案适用于Rectangles而我希望开发一种梯形形状的解决方案,如下图所示:

我的照片

我目前的代码:

property var selection: undefined
Image {
    id: image1
    anchors.fill: parent

    source: "1.jpg"

    MouseArea {
        anchors.fill: parent
        onClicked: {
            if(!selection)
                selection = selectionComponent.createObject(parent, {"x": parent.width / 4, "y": parent.height / 4, "width": parent.width / 2, "height": parent.width / 2})
        }
    }
}

Component {
    id: selectionComponent

    Rectangle {
        id: selComp
        border {
            width: 2
            color: "steelblue"
        }
        color: "#354682B4"

        property int rulersSize: 18

        MouseArea {     // drag mouse area
            anchors.fill: parent
            drag{ …
Run Code Online (Sandbox Code Playgroud)

qt shape drag qml qtquick2

2
推荐指数
1
解决办法
989
查看次数

在drawable中绘制工具提示

我想在我的按钮上添加工具提示.有没有简单的方法来做到这一点.我想绘制形状.但我只找到带有绘图视图的方法或建议添加lib.是否可以绘制工具提示(使用xml制作工具提示)?

android shape drawable

2
推荐指数
2
解决办法
2164
查看次数

如何从位图区域获取多边形形状

所以 - 这是我很少会问“我该怎么做”的问题之一,我实际上什么也没尝试,因为我不知道从哪里开始。

这是我的问题。

我有一张照片,我在绿色屏幕上键入了它,然后变成了一个蒙版,其中我有一些透明的像素,其余的像素是黑色的。假设这个黑色形状是照片主体的上胸部和头部。

我知道如何找到所有的黑色像素,我可以很容易地找出哪些黑色像素与透明像素相邻,这样我就可以轻松画出黑色形状的轮廓,但这就是我没有想法的地方……我该如何转换它将轮廓转换为可用作多边形的连续点数组?

svg android bitmap shape polygons

2
推荐指数
1
解决办法
1576
查看次数

Create xml Chat Bubble With the Shape As in the .png File

Could I please ask if anyone knows how to create an xml shape of the chat bubble below? The only examples I found online were two separate shapes that were put as two separate backgrounds in a layout - a triangle and a rectangle. I tried combining the triangle and rectangle to no avail. The triangle seems to hide in the rectangle. Setting a top attribute to the triangle to move it down makes the ImageView object blank.

Please see …

xml android chat shape balloon

2
推荐指数
1
解决办法
6797
查看次数

将形状颜色与单元格颜色匹配 - vba

我希望设置一个基本循环来设置工作表中每个形状的颜色,以匹配表中的相应单元格(条件格式).

我有以下内容

dim countryShape as shape

For Each countryShape In ActiveSheet.Shapes

countryShape.Range.Interior.Color = Application.VLookup(countryShape.Name, ActiveSheet.Range("D3:H19"), 2, 0).Interior.Color

Next countryShape
Run Code Online (Sandbox Code Playgroud)

但是,我得到了一个

运行时错误424,'对象必需'

我猜这是与颜色应用的格式有关(即.interior.color用于单元格和.fill.forecolor用于形状)但是我到目前为止尝试的任何组合还没有工作.

excel vba colors shape excel-vba

2
推荐指数
1
解决办法
1703
查看次数