-1

I need to process some images and save them into a directory, which I wish to implement as an another process. That process should continuously check for image in the directory, take the image if present, process and save it in another directory.

Chankey Pathak
  • 19,330
  • 10
  • 72
  • 119

1 Answers1

0

StackOverflow is not a code writing service. Try below:

  • Use Watchdog to monitor the changes in directory
  • Apply conditionals to look for the image
  • Add logic to process and save image into another directory
  • Convert it to a daemon

Also see:

Chankey Pathak
  • 19,330
  • 10
  • 72
  • 119