I want to ask you about script ScreenCapture.ahk
<!-- l --><a class="postlink-local" href="http://www.autohotkey.com/community/viewtopic.php?f=2&t=18146">viewtopic.php?f=2&t=18146</a><!-- l -->
There is a line:
Convert(hBM, sFile, nQuality), DllCall("DeleteObject", "Uint", hBM)
with explanation:/* Convert(sFileFr, sFileTo, nQuality)
Convert("C:\image.bmp", "C:\image.jpg")
Convert("C:\image.bmp", "C:\image.jpg", 95)
Convert(0, "C:\clip.png") ; Save the bitmap in the clipboard to sFileTo if sFileFr is "" or 0.
*/
Could it be possible to run the command so, that I could run Imagemagick with the Convert result in input? Because I would like to do some color modification/filtering before I will save the image into file.
image magic basic syntax is:
convert sourceimage -effect argument -effect argument targetimage




