Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristy committed Jan 15, 2022
1 parent 65a12ea commit 2a78be0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion function/option.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

function bull()
{
echo("");
echo("•");
}

function option($opt, $sign="-")
Expand Down
2 changes: 2 additions & 0 deletions include/contact.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
$status="Message not sent: solicitations not permitted.";
if (preg_match("/\bbrands/i",$message) != 0)
$status="Message not sent: solicitations not permitted.";
if (preg_match("/\bfuck/i",$message) != 0)
$status="Message not sent: solicitations not permitted.";
if (preg_match("/\bpromot/i",$message) != 0)
$status="Message not sent: solicitations not permitted.";
if (preg_match("/\btraffic/i",$message) != 0)
Expand Down
4 changes: 2 additions & 2 deletions include/fx.php
Original file line number Diff line number Diff line change
Expand Up @@ -304,9 +304,9 @@

<p>By default, the image to which <code>p</code>, <code>r</code>, <code>g</code>, <code>b</code>, <code>a</code>, etc., are applied is the current image <code>s</code> in the image list. This is equivalent to <code>u</code> except when used in an escape sequence <code>%[fx:...]</code>. </p>

<p>It is important to note the special role played by the first image. This is the only image in the image sequence that is modified, other images are used only for their data. As an illustrative example, consider the following, and note that the setting <a href="<?php echo $_SESSION['RelativePath']?>/../script/command-line-options.php#channel">-channel red</a> instructs <a href="<?php echo $_SESSION['RelativePath']?>/../script/command-line-options.php#fx">-fx</a> to modify only the red channel; nothing in the green or blue channels will change. It is instructive to ponder why the result is not symmetric.</p>
<p>It is important to note the special role played by the first image. This is the only image in the image sequence that is modified, other images are used only for their data. As an illustrative example, consider the following, and note that the setting <a href="<?php echo $_SESSION['RelativePath']?>/../script/command-line-options.php#channel">-channel red</a> instructs <a href="<?php echo $_SESSION['RelativePath']?>/../script/command-line-options.php#fx">-fx</a> to modify only the green channel; nothing in the red or blue channels will change. It is instructive to ponder why the result is not symmetric.</p>

<ul><pre class="bg-light text-dark"><samp>convert -channel red logo: -flop logo: -resize "20%" -fx "(u+v)/2" image.jpg
<ul><pre class="bg-light text-dark"><samp>convert -channel green logo: -flop logo: -resize "20%" -fx "(u+v)/2" image.jpg
</samp></pre></ul>

<ul>
Expand Down

0 comments on commit 2a78be0

Please sign in to comment.