Jump to content

This topic is 3701 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Here's a ScriptMaster module to color invert an image from a container field. The containerField input should be a text field with the name of the container field. You might need to increase your java memory size if you try to use this with a large image (http://docs.360works.com/index.php/Heapspace_Out_of_Memory_Error)

//Invert Image (containerField)
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.awt.image.RescaleOp;

InputStream input;

try{
 input = fmpro.getContainerStream(containerField);
}
catch(e){
 throw new RuntimeException( e );
 return false;
}

BufferedImage img = ImageIO.read(input);
RescaleOp op = new RescaleOp(-1.0f, 255f, null);
BufferedImage negative = op.filter(img, null);

return negative;

Cheers

jp

Link to comment
Share on other sites

  • 3 months later...
  • 3 months later...

This topic is 3701 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.