明るさ、コントラスト、彩度の低下などの効果を備えたシンプルな画像エディターを作成しました。www.pixastic.com からこの pixastic 関数を使用しました。機能は正常に動作していますが、元の画像をエフェクト付きの調整済み画像に置き換える方法がわかりません。これが私が使用したコードです
<script>
var pixastic_parseonload = true;
</script>
<script src="pixastic.core.js" type="text/javascript"></script>
<script src="actions/desaturate.js" type="text/javascript"></script>
<body>
<form name="form1" action="index.php" enctype="multipart/form-data" method="post">
<p>Image to use:</p>
<img id="scream" class="pixastic <?php echo @$_POST["butn1"];?>" src="Desert.jpg" alt="The Scream" width="220" height="277" name="image1">
<button value="pixastic-desaturate()" name="butn1" >Desaturate</button>
</form>
</bode>