-1

I have taken an image and would like to some how get the effect/ appearance that the image was photocopied (please see below).
Is there any framework or filter that I can use?
Either in ios or php if I have to upload the image to process it to get the effect.

This is the image that I have captured: enter image description here

This what I wold like to produce:

enter image description here

Omkar Mozar
  • 149
  • 1
  • 11
johnDoe
  • 709
  • 11
  • 29
  • You can integrate some image editing library, supporting image filters and restrict it to particular filter matching your requirement. –  May 21 '18 at 09:46
  • @NileshPol please could you elaborate and maybe provide an answer. I'm afraid that I am not too familiar with image editing. – johnDoe May 21 '18 at 09:48
  • https://github.com/kawoou/FlexibleImage here you can use `monochrome()` filter –  May 21 '18 at 10:06
  • check this post may help https://stackoverflow.com/questions/46397367/how-to-adjust-a-color-image-like-a-scanned-image/46405697#46405697 – Joe May 24 '18 at 19:04

1 Answers1

1

I would suggest you to use GPU Image library to make gray scale of the image. After gray scaling, the processed image gives a look that its photocopied. https://github.com/BradLarson/GPUImage But if you are expecting for any library to photocopy with retaining the color, I am afraid you have to write your own library to do so.

Karthick Ramesh
  • 1,451
  • 20
  • 30