Updated it again-- no big changes, just pulled any new changes from Photopea

This commit is contained in:
DUOLabs333
2021-03-26 14:30:54 -04:00
parent c6b037751f
commit 7e211063fe
133 changed files with 19717 additions and 13892 deletions
+1 -1
View File
@@ -95,7 +95,7 @@ So when you edit an animation (delete frames, reorder frames, resize ...), there
<h2>Delay</h2>
<p>A layer which starts with <code>_a_</code> makes a new frame, which will be shown for 50 ms by default.
<p>A layer which starts with <code>_a_</code> makes a new frame, which will be shown for 100 ms by default.
To set your own delay, put <code>,</code> and a number to the end of the layer name. E.g. <code>_a_dog,500</code> will be displayed for half a second.</p>
<h2>Merge frames</h2>
+7 -2
View File
@@ -135,9 +135,14 @@ Photopea extends the model of Photoshop by adding several new functions:
<tr>
<td>Document.saveToOE("png")</td>
<td>Converts the document into a binary file and sends the file to an outer environment
(See <a href="//www.photopea.com/api/live">Live Messaging API</a>).<br/>
(See <a href="//www.photopea.com/api/live">Live Messaging API</a>), optional parameters after the colon:<br/>
<ul>
<li><code>"jpg:0.8", "webp:0.6"</code> - JPG and WEBP can have a quality parameter</li>
<li><code>"psd:true"</code> - "true" produces a minified PSD file</li>
<li><code>"svg:true,false,..."</code> - SVG parameters correspond to those in the SVG export in Photopea</li>
</ul>
JPG and WEBP can have a quallity (0 to 1) after the colon (e.g. "jpg:0.8").
PSD can have a "true" after the colon: "psd:true", to produce minified PSDs (up to 4x smaller, but take 4x longer to generate).
PSD can have a "true" after the colon: "psd:true", to produce minified PSDs. SVG can have a list of
</td>
</tr>
<tr>