Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 1.09 KB

README.md

File metadata and controls

28 lines (17 loc) · 1.09 KB

Image Manipulation in Java

Some simple image effects done in Java

Implemented effects are listed below

Let's add some effects to your favourite image without using Photoshop or any other softwares we usually use. How about doing it programmatically ? Here I used Java do do this.

  • BlueImage (addBlueEffect(String outputImagePath): void)
  • GrayScaleImage (addGrayScale(String outputImagePath): void)
  • GreenMatrix (addGreenMatrix(String outputImagePath): void)
  • NegativeEffect (addNegativeEffect(String outputImagePath): void)
  • RedDevil (addRedDevil(String outputImagePath): void)
  • Sepia (addSepia(String outputImagePath): void)

Here is how an image looks like before and after applying the GreenMatrix effect

Before

original

After

GreenMatrix effect

Feel free to use this code in your own projects.