flip image
	[horizontal 真偽値1]
	[vertical 真偽値2]

引数(Parameters)

image 反転を行う画像
真偽値1 水平反転
真偽値2 垂直反転

解説(Note)

 horizontal、verticalの片方だけでも、両方でも設定できる。

用例(Example)

  1. tell application "Image Events"
    	launch
    	set theImg to open file "disk:image:sample.png"
    	flip theImg with horizontal
    	save theImg in file "disk:image:sample_.png"
    	close theImg
    end tell