當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


p5.js displayDensity()用法及代碼示例


p5.j​​s中的displayDensity()函數用於返回當前顯示草圖的像素密度。

用法:

pixelDensity(density)

參數:此函數接受存儲顯示密度的單個參數密度。


以下示例程序旨在說明p5.js中的displayDensity()函數:

例:

function setup() { 
      
    // Create canvas of given size 
    createCanvas(windowWidth, windowHeight); 
    
    // Call the displayDensity function 
    let density = displayDensity();  
    pixelDensity(density); 
} 
   
function draw() { 
  
    // Set the background color 
    background(0, 200, 0); 
      
    // Set text color 
    color("green"); 
      
    // Set font size 
    textSize(30); 
      
    // Set text alignment 
    textAlign(CENTER); 
      
    // Set text to be add 
    text("GeeksForGeeks!", windowWidth/2, windowHeight/2); 
      
    // Display pixelDensity on the screen 
    text("PixelDensity is " + pixelDensity(),  
            windowWidth/2, windowHeight/2+40); 
}

輸出:

參考: https://p5js.org/reference/#/p5/displayDensity



相關用法


注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 p5.js | displayDensity() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。