gpt4 book ai didi

javascript - 更改图像大小

转载 作者:行者123 更新时间:2023-11-29 20:46:45 27 4
gpt4 key购买 nike

我不知道如何更改图像的格式。我正在尝试从 Google Chrome 制作恐龙游戏。并且更改图像大小将不起作用。

我的代码:

window.onload = function() {
var cvs = document.getElementById("gameArea");
var ctx = cvs.getContext("2d");

var dino;
var obst = [];

function drawDino() {
var dinoImg = new Image();
dinoImg.src = 'dino.png';
dinoImg.onload = function() {
ctx.drawImage(dinoImg, 0, 0);
this.style.width = 100;
this.style.height = 100;
}
}

function drawObst() {

}

function draw() {
drawDino();
drawObst();
}

function startGame() {
setInterval(draw,50);
}

startGame();
}

最佳答案

使用drawImage的参数用于调整图像大小。

void ctx.drawImage(image, dx, dy, dWidth, dHeight);

window.onload = function() {
var cvs = document.getElementById("gameArea");
var ctx = cvs.getContext("2d");

var dino;
var obst = [];

function drawDino() {
var dinoImg = new Image();
dinoImg.src = 'http://lorempixel.com/400/200/'; //'dino.png';
dinoImg.onload = function() {
ctx.drawImage(dinoImg, 0, 0, 100, 100);
}
}

function drawObst() {

}

function draw() {
drawDino();
drawObst();
}

function startGame() {
setInterval(draw,1000);
}

startGame();
}
<canvas id="gameArea"></canvas>

关于javascript - 更改图像大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54161908/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com