保持SVG图像的笔画重量

时间:2015-05-13 17:14:37

标签: html css svg

如果我有这样的SVG图像:

<img src="image.svg">

我是否可以使用某种属性来控制SVG的中风重量?像这样:

<img src="image.svg" stroke="2px">

获得此类预期效果: SVG scaling simulation

这可能吗?如果没有,这对SVG来说是否可能,或者它们不能像那样工作?

1 个答案:

答案 0 :(得分:0)

您可以使用<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#ffffff" tools:context="com.example.shoppingcart.MainActivity" > <android.support.v4.widget.DrawerLayout android:id="@+id/drawerLayout" android:layout_width="match_parent" android:layout_height="match_parent" > <FrameLayout android:id="@+id/frameLayout" android:layout_width="wrap_content" android:layout_height="match_parent" > <ImageView android:id="@+id/homeLogo" android:layout_width="match_parent" android:layout_height="match_parent" android:src="@drawable/home_logo" /> </FrameLayout> <LinearLayout android:id="@+id/linear1" android:layout_width="240dp" android:layout_height="match_parent" android:layout_gravity="start" android:background="#262626" android:orientation="vertical" > <ImageView android:id="@+id/profilePic" android:layout_width="match_parent" android:layout_height="60dp" android:layout_alignParentLeft="true" android:layout_marginTop="15dp" android:src="@drawable/shopping_cart" /> <TextView android:id="@+id/textMailAddress" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@+id/profilePic" android:layout_marginLeft="60dp" android:layout_marginTop="5dp" android:text="narahari.arjun@gmail.com" android:textColor="#ffffff" /> <LinearLayout android:id="@+id/linear5" android:layout_width="match_parent" android:layout_height="7dp" android:layout_below="@+id/textMailAddress" android:layout_marginTop="7dp" android:orientation="vertical" > </LinearLayout> <View android:layout_width="fill_parent" android:layout_height="1dp" android:background="#7A7A7A" /> <ListView android:id="@+id/drawerlist" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_below="@+id/linear1" android:layout_gravity="start" android:background="#262626" android:choiceMode="singleChoice" android:divider="#7A7A7A" android:dividerHeight="1dp" android:listSelector="@drawable/list_selector" /> </LinearLayout> </android.support.v4.widget.DrawerLayout> 作为演示here