Spiegeln, verschieben, schwenken, vergrößern, verkleinern
XML/HTML-CodeInhalt in die Zwischenablage kopieren
- var canvas = document.getElementById('canvas');
- if (canvas.getContext) {
-
var context = canvas.getContext('2d');
- // 放大与缩小
- context.beginPath();
-
context.StrokeStyle = "#000000";
- context.StrokeRect(10,10,150,100);
-
- // 放大3倍
- context.scale(3,3);
- context.beginPath();
-
context.StrokeStyle = '#cccccc';
- context.StrokeRect(10,10,150,100)
-
- // 缩小
- context.scale(0.5,0.5);
- context.beginPath();
-
context.StrokeStyle = '#cccccc';
- context.StrokeRect(10,10,150,100)
-
- // 翻转
-
var img = neu Image();
-
img.src = 'images/1.jpg';
-
img.onload = Funktion(){
- context.drawImage(img, 10,10);
- context.scale(1, -1);
- context.drawImage(img, 0, -500);
- }
- // 平移
- context.beginPath();
-
context.StrokeStyle = '#000000';
- context.StrokeRect(10,101,150,100);
- // x移动 50 y 移动100
- context.translate(50,100);
- context.beginPath();
-
context.StrokeStyle = '#cccccc';
- context.StrokeRect(10,10,150,100);
- // 旋转
- context.beginPath();
-
context.StrokeStyle = '#000000';
- context.StrokeRect(200,50,100,50);
- // 默认旋转是根据0,0中心,使用translate可以按照自己的设置的中心旋转
- context.translate(250,75);
-
- context.rotate(45 * Math.PI /180);
- context.translate(-250, -75);
-
- context.beginPath();
-
context.StrokeStyle = '#cccccc';
- context.StrokeRect(200,50,100,50);
-
- // transform 矩阵
- context.beginPath();
-
context.StrokeStyle = '#000000';
- context.StrokeRect(10,10,150,100);
-
- context.transform(3,0,0,3,0,0);
- context.beginPath();
-
context.StrokeStyle = '#cccccc';
- context.StrokeRect(10,10,150,100);
-
- }
渐变、图像组合效果、颜色翻转
XML/HTML-Code复制内容到剪贴板
- var canvas = document.getElementById('canvas'); >
if (canvas.getContext) { -
var -
context = canvas.getContext('2d');
// Linearer Zeichenverlauf
- var
grd-
= context.createLinearGradient(0,0,200,100);
// Die Position muss vertikal zwischen 0,1 und 1,0 liegen und gibt die relative Position der Farbe im Farbverlauf an. Die Farbe repräsentiert die Farbe
- grd.addColorStop(0.1, "#00ff00");
- grd.addColorStop(0.8, "#ff0000");
-
-
context.fillStyle-
= grd;
context.fillRect(0,0, 200,100);
// Radialer Farbverlauf -
var - grd
= -
context.createRadialGradient(100,100,10,100,100,50);
grd.addColorStop(0.1, "#00ff00");
grd.addColorStop(0.8, '#ff0000'); -
- context.fillStyle
= -
grd;
context.fillRect(0,0,200,200);
// Bildkombinationseffekt
-
context.fillStyle- =
'#00ff00'-
;
context.fillRect(10,10,50,50);
// Neue Zeichnung
//- context.globalCompositeOperation
= - "source-over"
;
-
// Nur neue Inhalte zeichnen, alle anderen Inhalte löschen
context.globalCompositeOperation =
'copy'-
-
// Wo sich Grafiken überlappen, werden die Farbwerte subtrahiert, um zu ermitteln
context.globalCompositeOperation =
'dunkler'- ;
// Der bereits auf der Leinwand befindliche Inhalt bleibt nur dort erhalten, wo er sich mit anderen Grafiken überschneidet -
context.globalCompositeOperation = 'destination-atop'
;
- // Referenz http://www.w3school.com.cn/htmldom/prop_canvasrenderingcontext2d_globalcompositeoperation.asp
-
context.beginPath();
context.fillStyle =
'#ff0000'- ;
- context.arc(50,50,30,0, 2 * Math.PI);
- context.fill();
-
- // 颜色翻转
-
var img = nouveau Image();
-
-
img.src = 'images/1.jpg';
-
img.onload = fonction(){
- context.drawImage(img, 0,0, 1, 1);
-
var imgData = context.getImageData(0,0, 1,1);
-
var pixels = imgData.data;
- console.log(pixels);
-
pour(var i = 0, n = pixels.longueur; i < n; i =4) {
- pixels[i] = 255 - pixels[i];
- pixels[i 1] = 255 - pixels[i 1] ;
- pixels[i 2] = 255 - pixels[i 2] ;
- }
- context.putImageData(imgData, 250, 0);
- }
- }