canvas.uvue 6.9 KB
Newer Older
X
xty 已提交
1
<template>
2
  <view class="page" id="page-canvas">
3

4
    <canvas id="canvas" class="canvas-element"></canvas>
5
    <scroll-view class="scroll-view">
6 7 8 9 10 11 12 13 14 15 16
      <view>
        <text style="padding: 8px 10px;">获取 CanvasContext</text>
      </view>
      <view class="text-group">
        <text>获取 CanvasContext 结果:</text>
        <text id="testCanvasContext">{{testCanvasContext}}</text>
      </view>
      <view class="text-group">
        <text>测试 ToDataURL 结果:</text>
        <text id="testToDataURLResult">{{testToDataURLResult}}</text>
      </view>
17

18 19 20 21
      <view class="text-group">
        <text>测试 createImage 结果:</text>
        <text id="testCreateImage">{{testCreateImage}}</text>
      </view>
22

23 24 25 26 27
      <view class="text-group">
        <text>测试 createPath2D 结果:</text>
        <text id="testCreatePath2D">{{testCreatePath2D}}</text>
      </view>

28 29 30 31 32 33 34
      <!-- #ifdef WEB -->
      <button class="canvas-drawing-button" @click="canvasToBlob">canvasToBlob</button>
      <view>
        <text>testToBlobResult: {{testToBlobResult}}</text>
      </view>
      <!-- #endif -->
      <button class="canvas-drawing-button" id="toDataURL" @click="canvasToDataURL">canvasToDataURL</button>
35 36 37 38
      <view class="text-group" v-if="dataBase64.length>0">
        <text>canvasToDataURL:</text>
        <text>{{dataBase64.slice(0,22)}}...</text>
      </view>
39
      <button @click="onCreateImage">createImage</button>
H
hdx 已提交
40 41 42
      <button @click="onCreatePath2D">createPath2D</button>
      <button @click="startAnimationFrame">requestAnimationFrame</button>
      <button @click="stopAnimationFrame">cancelAnimationFrame</button>
43
      <view style="padding: 8px 10px;">CanvasContext API 演示</view>
44 45 46
      <navigator url="./canvas-context">
        <button>CanvasContext API</button>
      </navigator>
47

48 49 50 51 52 53 54
    </scroll-view>
  </view>
</template>

<script>
  function hidpi(canvas : UniCanvasElement) {
    const context = canvas.getContext("2d")!;
55
    const dpr = uni.getDeviceInfo().devicePixelRatio ?? 1;
56 57 58 59 60 61 62 63
    canvas.width = canvas.offsetWidth * dpr;
    canvas.height = canvas.offsetHeight * dpr;
    context.scale(dpr, dpr);
  }

  export default {
    data() {
      return {
64
        title: 'Context2D',
65
        canvas: null as UniCanvasElement | null,
66 67
        canvasContext: null as CanvasContext | null,
        renderingContext: null as CanvasRenderingContext2D | null,
68
        canvasWidth: 0,
69
        canvasHeight: 0,
H
hdx 已提交
70 71 72 73
        dataBase64: '',
        taskId: 0,
        lastTime: 0,
        frameCount: 0,
74
        // 仅测试
75
        testCanvasContext: false,
76
        testToBlobResult: false,
77 78
        testToDataURLResult: false,
        testCreateCanvasContextAsyncSuccess: false,
79
        testCreateImage: false,
H
hdx 已提交
80 81
        testCreatePath2D: false,
        testFrameCount: 0
82 83 84
      }
    },
    onReady() {
85 86 87 88 89 90 91 92 93 94 95 96
      // HBuilderX 4.25+
      // 异步调用方式, 跨平台写法
      uni.createCanvasContextAsync({
        id: 'canvas',
        component: this,
        success: (context : CanvasContext) => {
          this.canvasContext = context;
          this.renderingContext = context.getContext('2d')!;
          this.canvas = this.renderingContext!.canvas;

          hidpi(this.canvas!);
          this.canvasWidth = this.canvas!.width;
H
hdx 已提交
97
          this.canvasHeight = this.canvas!.height;
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115

          // #ifdef WEB
          context.toBlob((blob : Blob) => {
            this.testToBlobResult = (blob.size > 0 && blob.type == 'image/jpeg')
          }, 'image/jpeg', 0.95)
          // #endif
          this.testToDataURLResult = context.toDataURL().startsWith('data:image/png;base64')
          this.testCanvasContext = true
        }
      })

      // 同步调用方式,仅支持 app/web
      // let canvas = uni.getElementById("canvas") as UniCanvasElement
      // this.renderingContext = canvas.getContext("2d")
      // hidpi(canvas);
      // this.canvas = canvas;
      // this.canvasWidth = canvas.width;
      // this.canvasHeight = canvas.height;
H
hdx 已提交
116 117 118 119 120
    },
    onUnload() {
      if (this.taskId > 0) {
        this.stopAnimationFrame()
      }
121 122
    },
    methods: {
123
      // #ifdef WEB
124
      canvasToBlob() {
125
        this.canvasContext!.toBlob((blob : Blob) => {
126 127 128
          this.testToBlobResult = (blob.size > 0 && blob.type == 'image/jpeg')
        }, 'image/jpeg', 0.95)
      },
129
      // #endif
130
      canvasToDataURL() {
131
        this.dataBase64 = this.canvasContext!.toDataURL()
132
      },
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
      onCreateImage() {
        this.renderingContext!.clearRect(0, 0, this.canvasWidth, this.canvasHeight)
        let image = this.canvasContext!.createImage();
        image.src = "../../static/logo.png"
        image.onload = () => {
          this.testCreateImage = true
          this.renderingContext?.drawImage(image, 0, 0, 100, 100);
        }
      },
      onCreatePath2D() {
        this.renderingContext!.clearRect(0, 0, this.canvasWidth, this.canvasHeight)
        const context = this.renderingContext!
        let path2D = this.canvasContext!.createPath2D()
        this.testCreatePath2D = true
        const amplitude = 64;
        const wavelength = 64;
        for (let i = 0; i < 5; i++) {
          const x1 = 0 + (i * wavelength);
          const y1 = 128;
          const x2 = x1 + wavelength / 4;
          const y2 = y1 - amplitude;
          const x3 = x1 + 3 * wavelength / 4;
          const y3 = y1 + amplitude;
          const x4 = x1 + wavelength;
          const y4 = y1;
          context.moveTo(x1, y1);
          path2D.bezierCurveTo(x2, y2, x3, y3, x4, y4);
        }
        context.stroke(path2D);
H
hdx 已提交
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
      },
      startAnimationFrame() {
        if (this.taskId > 0) {
          this.stopAnimationFrame()
        }
        this.taskId = this.canvasContext!.requestAnimationFrame((timestamp : number) => {
          this.testFrameCount++
          this.updateFPS(timestamp)
          this.startAnimationFrame()
        })
      },
      stopAnimationFrame() {
        this.canvasContext!.cancelAnimationFrame(this.taskId)
        this.taskId = 0
      },
      updateFPS(timestamp : number) {
        this.frameCount++
        if (timestamp - this.lastTime >= 1000) {
          const timeOfFrame = (1000 / this.frameCount)
          this.renderingContext!.clearRect(0, 0, this.canvasWidth, this.canvasHeight)
          this.renderingContext!.fillText(`${this.frameCount} / ${timeOfFrame.toFixed(3)}ms`, 10, 18)
          this.frameCount = 0
          this.lastTime = timestamp
        }
186 187 188
      }
    }
  }
X
xty 已提交
189 190 191
</script>

<style>
192 193 194 195 196
  .page {
    flex: 1;
    height: 100%;
    overflow: hidden;
  }
X
xty 已提交
197

198 199 200 201 202 203 204 205 206 207
  .scroll-view {
    flex: 1;
  }

  .canvas-element {
    width: 100%;
    height: 250px;
    background-color: #ffffff;
  }

208 209 210 211 212 213 214 215 216 217 218
  .btn-to-image {
    margin: 10px;
  }

  .text-group {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
  }
X
xty 已提交
219
</style>