-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexamplesPath.html
More file actions
65 lines (54 loc) · 1.57 KB
/
Copy pathexamplesPath.html
File metadata and controls
65 lines (54 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="shortcut icon" href="img/icon.png" type="image/png" />
<meta name="viewport" content="width=device-width">
<title>Photopea Actions Lib - Path examples</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1><a id="alogo" href="index.html"><img id="logo" src="img/icon512.png"></a><br>Path examples</h1>
<div class="codeClass" id="PE">
<h3>Path functions</h3>
<textarea>
//fillPath();
//fillPath([127.0, 0.0, 127.0]);
//strokePathWithBrush(["PbTl", true]); //1-st parameter - tool name; 2-nd parameter - simulate pressure - true/false;
//pathToSelect();
//selectToPath();
//selectToPath(5.0);
//makeMask("Vector", "Path");//CHECKED
</textarea>
</div>
<div class="codeClass" id="TN">
<h3>Tools names</h3>
<textarea>
//"AbTl" airbrushTool*
//"ABTl" artBrushTool
//"SETl" backgroundEraserTool
//"BlTl" blurTool
//"BrTl" burnInTool
//"ClTl" cloneStampTool
//"DdTl" dodgeTool
//"ErTl" eraserTool
//"GrTl" gradientTool*
//"HBTl" historyBrushTool
//"MgEr" magicEraserTool*
//"PbTl" paintbrush Tool
//"PaTl" patternStampTool
//"PcTl" pencilTool
//"SrTl" saturationTool
//"ShTl" sharpenTool
//"SmTl" smudgeTool
//"Spng" sponge
//"spotHealingBrushTool" spotHealingBrushTool
//"magicStampTool" healTool
//"colorReplacementBrushTool" colorReplacementBrushTool
//"quickSelectTool" quickSelectTool
</textarea>
</div>
<h3 class="home_page"><a href="index.html">Home page</a></h3>
<h4 class="footer">(c) Pustovoit Oleg, 2023</h4>
</body>
</html>