更新图标、修复 Android 构建和签名
1. 更新所有软件图标为 resources 文件夹中的图标 - src-tauri/icons/icon.ico (Windows 应用图标) - src-tauri/icons/icon.png (托盘图标) - public/favicon.svg (浏览器图标) - src/assets/logoHD.svg 和 logo.svg (应用内 Logo) 2. 修复 Android APK 签名配置 - 添加签名步骤,使用 apksigner 签名 APK - 支持通过 GitHub Secrets 配置签名密钥 - 签名后自动删除未签名版本 - 上传产物时排除未签名 APK 3. 修复三个架构 APK 被覆盖的问题 - 改为单次构建命令包含所有架构:--target aarch64 --target armv7 --target x86_64 - Tauri 会自动生成包含所有架构的 universal APK
@@ -210,19 +210,60 @@ jobs:
|
||||
- name: 初始化 Android 项目
|
||||
run: pnpm tauri android init
|
||||
|
||||
- name: 构建 Android(ARM64)
|
||||
run: pnpm tauri android build --target aarch64
|
||||
- name: 构建 Android Universal APK
|
||||
run: pnpm tauri android build --target aarch64 --target armv7 --target x86_64
|
||||
|
||||
- name: 构建 Android(ARMv7)
|
||||
run: pnpm tauri android build --target armv7
|
||||
- name: 安装 Android SDK Build Tools
|
||||
env:
|
||||
ANDROID_SIGNING_KEY: ${{ secrets.ANDROID_SIGNING_KEY }}
|
||||
if: ${{ env.ANDROID_SIGNING_KEY != '' }}
|
||||
run: |
|
||||
sdkmanager "build-tools;33.0.0"
|
||||
|
||||
- name: 构建 Android(x86_64)
|
||||
run: pnpm tauri android build --target x86_64
|
||||
- name: 签名 APK
|
||||
env:
|
||||
ANDROID_SIGNING_KEY: ${{ secrets.ANDROID_SIGNING_KEY }}
|
||||
ANDROID_KEY_ALIAS: ${{ secrets.ANDROID_KEY_ALIAS }}
|
||||
ANDROID_KEY_PASSWORD: ${{ secrets.ANDROID_KEY_PASSWORD }}
|
||||
ANDROID_STORE_PASSWORD: ${{ secrets.ANDROID_STORE_PASSWORD }}
|
||||
if: ${{ env.ANDROID_SIGNING_KEY != '' }}
|
||||
run: |
|
||||
# 创建临时密钥库文件
|
||||
echo "$ANDROID_SIGNING_KEY" | base64 -d > /tmp/android_keystore.jks
|
||||
|
||||
# 找到所有未签名的 APK 文件
|
||||
find src-tauri/gen/android/app/build/outputs -name "*-unsigned.apk" -type f | while read -r apk; do
|
||||
# 生成签名后的文件名
|
||||
signed_apk="${apk/-unsigned/-signed}"
|
||||
|
||||
# 使用 apksigner 签名
|
||||
"${ANDROID_SDK_ROOT}/build-tools/33.0.0/apksigner" sign \
|
||||
--ks /tmp/android_keystore.jks \
|
||||
--ks-key-alias "$ANDROID_KEY_ALIAS" \
|
||||
--ks-pass pass:"$ANDROID_STORE_PASSWORD" \
|
||||
--key-pass pass:"$ANDROID_KEY_PASSWORD" \
|
||||
--out "$signed_apk" \
|
||||
"$apk"
|
||||
|
||||
echo "已签名: $signed_apk"
|
||||
|
||||
# 验证签名
|
||||
"${ANDROID_SDK_ROOT}/build-tools/33.0.0/apksigner" verify "$signed_apk"
|
||||
|
||||
# 删除未签名版本,重命名签名版本
|
||||
rm "$apk"
|
||||
mv "$signed_apk" "${apk/-unsigned/}"
|
||||
done
|
||||
|
||||
# 清理密钥库
|
||||
rm -f /tmp/android_keystore.jks
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: dist-android
|
||||
path: src-tauri/gen/android/app/build/outputs/**/*.apk
|
||||
path: |
|
||||
src-tauri/gen/android/app/build/outputs/**/*.apk
|
||||
!src-tauri/gen/android/app/build/outputs/**/*-unsigned.apk
|
||||
|
||||
release:
|
||||
needs: [parse, build_win, build_mac, build_linux, build_android]
|
||||
|
||||
@@ -1,11 +1,37 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
|
||||
<rect width="64" height="64" rx="12" fill="#0052D9" />
|
||||
<path
|
||||
d="M16 22c0-3.314 2.686-6 6-6h20c3.314 0 6 2.686 6 6v20c0 3.314-2.686 6-6 6H22c-3.314 0-6-2.686-6-6V22z"
|
||||
fill="#ffffff"
|
||||
/>
|
||||
<path
|
||||
d="M24 28h16a2 2 0 110 4H24a2 2 0 110-4zm0 8h10a2 2 0 110 4H24a2 2 0 110-4z"
|
||||
fill="#0052D9"
|
||||
/>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Creator: CorelDRAW (OEM 版本) -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="57.5732mm" height="57.5732mm" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
|
||||
viewBox="0 0 5757.32 5757.32"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:xodm="http://www.corel.com/coreldraw/odm/2003">
|
||||
<defs>
|
||||
<style type="text/css">
|
||||
<![CDATA[
|
||||
.str0 {stroke:#FEFEFE;stroke-width:20;stroke-miterlimit:22.9256}
|
||||
.str1 {stroke:#2387ED;stroke-width:20;stroke-miterlimit:22.9256}
|
||||
.str2 {stroke:#2789ED;stroke-width:20;stroke-miterlimit:22.9256}
|
||||
.fil0 {fill:#FEFEFE}
|
||||
.fil1 {fill:#2389EC}
|
||||
.fil4 {fill:#75BDF7}
|
||||
.fil2 {fill:#FFDA31}
|
||||
.fil3 {fill:#FFF270}
|
||||
]]>
|
||||
</style>
|
||||
</defs>
|
||||
<g id="圖層_x0020_1">
|
||||
<metadata id="CorelCorpID_0Corel-Layer"/>
|
||||
<g id="_1556526623248">
|
||||
<rect class="fil0 str0" x="27.11" y="26.34" width="5675.33" height="5687.62" rx="1140.46" ry="1142.93"/>
|
||||
<circle class="fil1 str1" cx="3484.74" cy="2200.34" r="920.68"/>
|
||||
<circle class="fil0 str0" cx="3951.4" cy="3983.83" r="1288.52"/>
|
||||
<g>
|
||||
<circle class="fil2" cx="3951.4" cy="3983.83" r="1033.53"/>
|
||||
<path class="fil3" d="M4139.76 3707.08c-14.94,-25.96 -43.54,-77.79 -66.66,-124.1 -23.11,-46.3 -40.75,-87.08 -61.13,-131.88 -20.37,-44.8 -43.48,-93.63 -73.05,-71.06 -29.57,22.56 -65.6,116.49 -95.71,187.21 -30.1,70.71 -54.3,118.2 -66.4,141.95 -12.1,23.74 -12.1,23.74 -12.1,23.74 0,0 0,0 -36.04,5.26 -36.03,5.25 -108.1,15.76 -187.6,26.12 -79.5,10.37 -166.42,20.58 -177.47,52.05 -11.04,31.46 53.79,84.19 113.27,132.93 59.48,48.74 113.6,93.5 140.66,115.88 27.06,22.38 27.06,22.38 27.06,22.38 0,0 0,0 -4.8,29.82 -4.81,29.82 -14.42,89.45 -29.87,166.02 -15.45,76.57 -36.73,170.06 -13.79,197.73 22.93,27.66 90.08,-10.5 157.94,-50.54 67.86,-40.04 136.43,-81.95 170.71,-102.91 34.28,-20.96 34.28,-20.96 34.28,-20.96 0,0 0,0 29.08,17.71 29.07,17.71 87.22,53.13 150.46,92.03 63.23,38.89 131.56,81.25 159.24,64.16 27.68,-17.1 14.73,-93.67 3.9,-169.09 -10.82,-75.42 -19.51,-149.7 -23.86,-186.84 -4.35,-37.13 -4.35,-37.13 58.7,-87.16 63.04,-50.02 189.13,-150.07 193.62,-207.02 4.48,-56.94 -112.64,-70.78 -173.29,-77.95 -60.65,-7.17 -64.83,-7.68 -79.61,-9.01 -14.78,-1.33 -40.17,-3.48 -61.94,-5.33 -21.77,-1.86 -39.91,-3.4 -49.64,-4.23 -9.72,-0.82 -11.01,-0.94 -25.96,-26.91z"/>
|
||||
</g>
|
||||
<ellipse class="fil0" cx="2140.85" cy="2197.59" rx="1194.99" ry="1178.43"/>
|
||||
<circle class="fil4" cx="2124.15" cy="2207.61" r="923.37"/>
|
||||
<path class="fil1 str2" d="M2788.24 3393.56c-11.75,24.43 -34.95,73.29 -54.62,123.82 -19.67,50.52 -35.81,102.71 -53.14,186.31 -17.34,83.6 -35.86,198.63 -29.23,317.47 6.63,118.84 38.41,241.5 66,328.24 27.59,86.75 50.98,137.57 62.68,162.99 11.7,25.41 11.7,25.41 11.7,25.41 0,0 0,0 -278.03,0 -278.03,0 -834.08,0 -1112.11,0 -278.02,0 -278.02,0 -291.55,0.23 -13.53,0.23 -40.59,0.69 -75.21,-7.93 -34.61,-8.62 -76.78,-26.31 -107.12,-64.94 -30.33,-38.64 -48.83,-98.21 -57.28,-137.12 -8.46,-38.92 -6.87,-57.19 -6.07,-82.24 0.79,-25.05 0.79,-56.9 0.79,-80.43 0,-23.54 0,-38.77 1.5,-69.12 1.5,-30.35 4.5,-75.83 9.34,-112.5 4.84,-36.68 11.52,-64.54 44.17,-133.73 32.66,-69.18 91.29,-179.68 171.72,-260.68 80.45,-81 182.69,-132.49 273.98,-164.28 91.29,-31.78 171.63,-43.86 218.71,-49.89 47.09,-6.04 60.94,-6.04 74.09,-6.04 13.15,0 25.61,0 212.92,0 187.31,0 549.47,0 730.87,0 181.4,0 182.04,0 182.71,0 0.67,0 1.37,0 3.04,0 1.68,0 4.31,0 6.31,0 2.01,0 3.37,0 3.98,0 0.62,0 0.48,0 0.72,0 0.24,0 0.86,0 1.02,0 0.16,0 -0.14,0 -11.89,24.43z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 379 B After Width: | Height: | Size: 3.7 KiB |
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Creator: CorelDRAW (OEM 版本) -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="57.5732mm" height="57.5732mm" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
|
||||
viewBox="0 0 5757.32 5757.32"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:xodm="http://www.corel.com/coreldraw/odm/2003">
|
||||
<defs>
|
||||
<style type="text/css">
|
||||
<![CDATA[
|
||||
.str0 {stroke:#FEFEFE;stroke-width:20;stroke-miterlimit:22.9256}
|
||||
.str1 {stroke:#2387ED;stroke-width:20;stroke-miterlimit:22.9256}
|
||||
.str2 {stroke:#2789ED;stroke-width:20;stroke-miterlimit:22.9256}
|
||||
.fil0 {fill:#FEFEFE}
|
||||
.fil1 {fill:#2389EC}
|
||||
.fil4 {fill:#75BDF7}
|
||||
.fil2 {fill:#FFDA31}
|
||||
.fil3 {fill:#FFF270}
|
||||
]]>
|
||||
</style>
|
||||
</defs>
|
||||
<g id="圖層_x0020_1">
|
||||
<metadata id="CorelCorpID_0Corel-Layer"/>
|
||||
<g id="_1556526623248">
|
||||
<rect class="fil0 str0" x="27.11" y="26.34" width="5675.33" height="5687.62" rx="1140.46" ry="1142.93"/>
|
||||
<circle class="fil1 str1" cx="3484.74" cy="2200.34" r="920.68"/>
|
||||
<circle class="fil0 str0" cx="3951.4" cy="3983.83" r="1288.52"/>
|
||||
<g>
|
||||
<circle class="fil2" cx="3951.4" cy="3983.83" r="1033.53"/>
|
||||
<path class="fil3" d="M4139.76 3707.08c-14.94,-25.96 -43.54,-77.79 -66.66,-124.1 -23.11,-46.3 -40.75,-87.08 -61.13,-131.88 -20.37,-44.8 -43.48,-93.63 -73.05,-71.06 -29.57,22.56 -65.6,116.49 -95.71,187.21 -30.1,70.71 -54.3,118.2 -66.4,141.95 -12.1,23.74 -12.1,23.74 -12.1,23.74 0,0 0,0 -36.04,5.26 -36.03,5.25 -108.1,15.76 -187.6,26.12 -79.5,10.37 -166.42,20.58 -177.47,52.05 -11.04,31.46 53.79,84.19 113.27,132.93 59.48,48.74 113.6,93.5 140.66,115.88 27.06,22.38 27.06,22.38 27.06,22.38 0,0 0,0 -4.8,29.82 -4.81,29.82 -14.42,89.45 -29.87,166.02 -15.45,76.57 -36.73,170.06 -13.79,197.73 22.93,27.66 90.08,-10.5 157.94,-50.54 67.86,-40.04 136.43,-81.95 170.71,-102.91 34.28,-20.96 34.28,-20.96 34.28,-20.96 0,0 0,0 29.08,17.71 29.07,17.71 87.22,53.13 150.46,92.03 63.23,38.89 131.56,81.25 159.24,64.16 27.68,-17.1 14.73,-93.67 3.9,-169.09 -10.82,-75.42 -19.51,-149.7 -23.86,-186.84 -4.35,-37.13 -4.35,-37.13 58.7,-87.16 63.04,-50.02 189.13,-150.07 193.62,-207.02 4.48,-56.94 -112.64,-70.78 -173.29,-77.95 -60.65,-7.17 -64.83,-7.68 -79.61,-9.01 -14.78,-1.33 -40.17,-3.48 -61.94,-5.33 -21.77,-1.86 -39.91,-3.4 -49.64,-4.23 -9.72,-0.82 -11.01,-0.94 -25.96,-26.91z"/>
|
||||
</g>
|
||||
<ellipse class="fil0" cx="2140.85" cy="2197.59" rx="1194.99" ry="1178.43"/>
|
||||
<circle class="fil4" cx="2124.15" cy="2207.61" r="923.37"/>
|
||||
<path class="fil1 str2" d="M2788.24 3393.56c-11.75,24.43 -34.95,73.29 -54.62,123.82 -19.67,50.52 -35.81,102.71 -53.14,186.31 -17.34,83.6 -35.86,198.63 -29.23,317.47 6.63,118.84 38.41,241.5 66,328.24 27.59,86.75 50.98,137.57 62.68,162.99 11.7,25.41 11.7,25.41 11.7,25.41 0,0 0,0 -278.03,0 -278.03,0 -834.08,0 -1112.11,0 -278.02,0 -278.02,0 -291.55,0.23 -13.53,0.23 -40.59,0.69 -75.21,-7.93 -34.61,-8.62 -76.78,-26.31 -107.12,-64.94 -30.33,-38.64 -48.83,-98.21 -57.28,-137.12 -8.46,-38.92 -6.87,-57.19 -6.07,-82.24 0.79,-25.05 0.79,-56.9 0.79,-80.43 0,-23.54 0,-38.77 1.5,-69.12 1.5,-30.35 4.5,-75.83 9.34,-112.5 4.84,-36.68 11.52,-64.54 44.17,-133.73 32.66,-69.18 91.29,-179.68 171.72,-260.68 80.45,-81 182.69,-132.49 273.98,-164.28 91.29,-31.78 171.63,-43.86 218.71,-49.89 47.09,-6.04 60.94,-6.04 74.09,-6.04 13.15,0 25.61,0 212.92,0 187.31,0 549.47,0 730.87,0 181.4,0 182.04,0 182.71,0 0.67,0 1.37,0 3.04,0 1.68,0 4.31,0 6.31,0 2.01,0 3.37,0 3.98,0 0.62,0 0.48,0 0.72,0 0.24,0 0.86,0 1.02,0 0.16,0 -0.14,0 -11.89,24.43z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 401 KiB |
|
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 1.4 KiB |
@@ -1,7 +1,37 @@
|
||||
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M347.599 422.773C398.361 422.773 439.511 381.622 439.511 330.861C439.511 280.099 398.361 238.949 347.599 238.949C296.838 238.949 255.687 280.099 255.687 330.861C255.687 381.622 296.838 422.773 347.599 422.773Z" fill="#FFDA31"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M364.35 306.249C363.022 303.941 360.478 299.332 358.422 295.213C356.367 291.096 354.798 287.469 352.986 283.485C351.174 279.501 349.119 275.158 346.49 277.166C343.86 279.172 340.656 287.525 337.978 293.814C335.301 300.103 333.149 304.326 332.073 306.438C330.997 308.549 330.997 308.549 330.997 308.549C330.997 308.549 330.997 308.549 327.792 309.017C324.588 309.484 318.179 310.418 311.109 311.34C304.039 312.262 296.309 313.17 295.326 315.969C294.344 318.766 300.11 323.456 305.399 327.79C310.689 332.125 315.502 336.105 317.908 338.095C320.315 340.086 320.315 340.086 320.315 340.086C320.315 340.086 320.315 340.086 319.888 342.737C319.46 345.389 318.605 350.692 317.231 357.502C315.857 364.311 313.965 372.625 316.005 375.086C318.044 377.546 324.016 374.152 330.051 370.591C336.086 367.031 342.184 363.304 345.232 361.44C348.281 359.576 348.281 359.576 348.281 359.576C348.281 359.576 348.281 359.576 350.867 361.151C353.452 362.725 358.623 365.875 364.247 369.335C369.87 372.793 375.947 376.56 378.408 375.041C380.87 373.52 379.718 366.71 378.755 360.003C377.793 353.296 377.02 346.69 376.633 343.388C376.246 340.086 376.246 340.086 381.854 335.636C387.46 331.188 398.673 322.291 399.072 317.226C399.471 312.162 389.055 310.932 383.661 310.294C378.268 309.656 377.896 309.611 376.582 309.493C375.267 309.374 373.009 309.183 371.073 309.019C369.137 308.853 367.524 308.716 366.659 308.643C365.795 308.57 365.68 308.559 364.35 306.249Z" fill="#FFF270"/>
|
||||
<path d="M306.099 90C351.526 90 388.353 126.826 388.354 172.254C388.354 217.682 351.526 254.509 306.099 254.509C290.933 254.509 276.727 250.403 264.529 243.245C282.109 224.549 292.857 199.517 292.857 172.01C292.857 144.657 282.229 119.753 264.825 101.091C276.957 94.0394 291.056 90.0001 306.099 90Z" fill="#2389EC"/>
|
||||
<path d="M185.101 255.017C230.453 255.017 267.217 218.252 267.217 172.901C267.217 127.55 230.453 90.7855 185.101 90.7855C139.75 90.7855 102.986 127.55 102.986 172.901C102.986 218.252 139.75 255.017 185.101 255.017Z" fill="#75BDF7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M244.159 278.368C243.114 280.54 241.051 284.886 239.302 289.379C237.553 293.872 236.117 298.513 234.576 305.948C233.034 313.382 231.387 323.612 231.977 334.181C232.566 344.749 235.393 355.657 237.846 363.371C240.3 371.086 242.38 375.605 243.42 377.866C244.461 380.125 244.461 380.125 244.461 380.125C244.461 380.125 244.461 380.125 219.735 380.125C195.01 380.125 145.56 380.125 120.835 380.125C96.1108 380.125 96.1108 380.125 94.9076 380.146C93.7044 380.166 91.2979 380.207 88.2191 379.441C85.1413 378.674 81.3911 377.101 78.6929 373.666C75.9957 370.229 74.3505 364.932 73.599 361.471C72.8467 358.01 72.9881 356.385 73.0592 354.158C73.1295 351.93 73.1295 349.098 73.1295 347.005C73.1295 344.912 73.1295 343.557 73.2629 340.858C73.3962 338.159 73.663 334.115 74.0935 330.854C74.5239 327.592 75.1179 325.114 78.0215 318.961C80.926 312.809 86.14 302.982 93.2926 295.779C100.447 288.575 109.539 283.996 117.658 281.169C125.776 278.343 132.921 277.269 137.108 276.732C141.295 276.195 142.527 276.195 143.697 276.195C144.866 276.195 145.974 276.195 162.632 276.195C179.289 276.195 211.496 276.195 227.628 276.195C243.76 276.195 243.817 276.195 243.876 276.195C243.936 276.195 243.998 276.195 244.147 276.195C244.296 276.195 244.53 276.195 244.708 276.195C244.887 276.195 245.008 276.195 245.062 276.195C245.117 276.195 245.105 276.195 245.126 276.195C245.147 276.195 245.202 276.195 245.217 276.195C245.231 276.195 245.204 276.195 244.159 278.368Z" fill="#2389EC" stroke="#2789ED" stroke-width="0.755906" stroke-miterlimit="22.9256"/>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Creator: CorelDRAW (OEM 版本) -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="57.5732mm" height="57.5732mm" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
|
||||
viewBox="0 0 5757.32 5757.32"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:xodm="http://www.corel.com/coreldraw/odm/2003">
|
||||
<defs>
|
||||
<style type="text/css">
|
||||
<![CDATA[
|
||||
.str0 {stroke:#FEFEFE;stroke-width:20;stroke-miterlimit:22.9256}
|
||||
.str1 {stroke:#2387ED;stroke-width:20;stroke-miterlimit:22.9256}
|
||||
.str2 {stroke:#2789ED;stroke-width:20;stroke-miterlimit:22.9256}
|
||||
.fil0 {fill:#FEFEFE}
|
||||
.fil1 {fill:#2389EC}
|
||||
.fil4 {fill:#75BDF7}
|
||||
.fil2 {fill:#FFDA31}
|
||||
.fil3 {fill:#FFF270}
|
||||
]]>
|
||||
</style>
|
||||
</defs>
|
||||
<g id="圖層_x0020_1">
|
||||
<metadata id="CorelCorpID_0Corel-Layer"/>
|
||||
<g id="_1556526623248">
|
||||
<rect class="fil0 str0" x="27.11" y="26.34" width="5675.33" height="5687.62" rx="1140.46" ry="1142.93"/>
|
||||
<circle class="fil1 str1" cx="3484.74" cy="2200.34" r="920.68"/>
|
||||
<circle class="fil0 str0" cx="3951.4" cy="3983.83" r="1288.52"/>
|
||||
<g>
|
||||
<circle class="fil2" cx="3951.4" cy="3983.83" r="1033.53"/>
|
||||
<path class="fil3" d="M4139.76 3707.08c-14.94,-25.96 -43.54,-77.79 -66.66,-124.1 -23.11,-46.3 -40.75,-87.08 -61.13,-131.88 -20.37,-44.8 -43.48,-93.63 -73.05,-71.06 -29.57,22.56 -65.6,116.49 -95.71,187.21 -30.1,70.71 -54.3,118.2 -66.4,141.95 -12.1,23.74 -12.1,23.74 -12.1,23.74 0,0 0,0 -36.04,5.26 -36.03,5.25 -108.1,15.76 -187.6,26.12 -79.5,10.37 -166.42,20.58 -177.47,52.05 -11.04,31.46 53.79,84.19 113.27,132.93 59.48,48.74 113.6,93.5 140.66,115.88 27.06,22.38 27.06,22.38 27.06,22.38 0,0 0,0 -4.8,29.82 -4.81,29.82 -14.42,89.45 -29.87,166.02 -15.45,76.57 -36.73,170.06 -13.79,197.73 22.93,27.66 90.08,-10.5 157.94,-50.54 67.86,-40.04 136.43,-81.95 170.71,-102.91 34.28,-20.96 34.28,-20.96 34.28,-20.96 0,0 0,0 29.08,17.71 29.07,17.71 87.22,53.13 150.46,92.03 63.23,38.89 131.56,81.25 159.24,64.16 27.68,-17.1 14.73,-93.67 3.9,-169.09 -10.82,-75.42 -19.51,-149.7 -23.86,-186.84 -4.35,-37.13 -4.35,-37.13 58.7,-87.16 63.04,-50.02 189.13,-150.07 193.62,-207.02 4.48,-56.94 -112.64,-70.78 -173.29,-77.95 -60.65,-7.17 -64.83,-7.68 -79.61,-9.01 -14.78,-1.33 -40.17,-3.48 -61.94,-5.33 -21.77,-1.86 -39.91,-3.4 -49.64,-4.23 -9.72,-0.82 -11.01,-0.94 -25.96,-26.91z"/>
|
||||
</g>
|
||||
<ellipse class="fil0" cx="2140.85" cy="2197.59" rx="1194.99" ry="1178.43"/>
|
||||
<circle class="fil4" cx="2124.15" cy="2207.61" r="923.37"/>
|
||||
<path class="fil1 str2" d="M2788.24 3393.56c-11.75,24.43 -34.95,73.29 -54.62,123.82 -19.67,50.52 -35.81,102.71 -53.14,186.31 -17.34,83.6 -35.86,198.63 -29.23,317.47 6.63,118.84 38.41,241.5 66,328.24 27.59,86.75 50.98,137.57 62.68,162.99 11.7,25.41 11.7,25.41 11.7,25.41 0,0 0,0 -278.03,0 -278.03,0 -834.08,0 -1112.11,0 -278.02,0 -278.02,0 -291.55,0.23 -13.53,0.23 -40.59,0.69 -75.21,-7.93 -34.61,-8.62 -76.78,-26.31 -107.12,-64.94 -30.33,-38.64 -48.83,-98.21 -57.28,-137.12 -8.46,-38.92 -6.87,-57.19 -6.07,-82.24 0.79,-25.05 0.79,-56.9 0.79,-80.43 0,-23.54 0,-38.77 1.5,-69.12 1.5,-30.35 4.5,-75.83 9.34,-112.5 4.84,-36.68 11.52,-64.54 44.17,-133.73 32.66,-69.18 91.29,-179.68 171.72,-260.68 80.45,-81 182.69,-132.49 273.98,-164.28 91.29,-31.78 171.63,-43.86 218.71,-49.89 47.09,-6.04 60.94,-6.04 74.09,-6.04 13.15,0 25.61,0 212.92,0 187.31,0 549.47,0 730.87,0 181.4,0 182.04,0 182.71,0 0.67,0 1.37,0 3.04,0 1.68,0 4.31,0 6.31,0 2.01,0 3.37,0 3.98,0 0.62,0 0.48,0 0.72,0 0.24,0 0.86,0 1.02,0 0.16,0 -0.14,0 -11.89,24.43z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.7 KiB |