Blame | Letzte Änderung | Log anzeigen | RSS feed
var doc = new jsPDF();// Empty squaredoc.rect(20, 20, 10, 10);// Filled squaredoc.rect(40, 20, 10, 10, 'F');// Empty red squaredoc.setDrawColor(255,0,0);doc.rect(60, 20, 10, 10);// Filled square with red bordersdoc.setDrawColor(255,0,0);doc.rect(80, 20, 10, 10, 'FD');// Filled red squaredoc.setDrawColor(0);doc.setFillColor(255,0,0);doc.rect(100, 20, 10, 10, 'F');// Filled red square with black bordersdoc.setDrawColor(0);doc.setFillColor(255,0,0);doc.rect(120, 20, 10, 10, 'FD');// Black sqaure with rounded cornersdoc.setDrawColor(0);doc.setFillColor(255, 255, 255);doc.roundedRect(140, 20, 10, 10, 3, 3, 'FD');