drawImage  ( addr len x y -- )

publication: 21 mars 2023 / mis Ă  jour 21 mars 2023

Read this page in english

 

vocabulaire: web

Affiche une image en x y.

Exemple:

web definitions 
JSWORD: drawImage { a n x y } 
    let img = new Image(); 
    img.src = GetString(a, n); 
    img.onload = function () { 
        context.ctx.drawImage(img, x, y); 
    }; 
~ 
forth definitions 

Lien vers article:

article/installation_web_graphic_startImages


Legal: site web personnel sans commerce / personal site without seling