Aniljava

Month: September, 2009

Brewing Google Flip in Home : Primitive google flip implementation

google fast flip, java google fast flip, cutycapt, web thumbnail generator, fastflip

Removing Watermark with Java using Pixel Color proximity

I had to replace watermark from the image below,
Step 1. Create the area to replace i created this image using photoshop,

Here is the complete code,

import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FilenameFilter;
import javax.imageio.IIOImage;
import javax.imageio.ImageIO;
import javax.imageio.ImageWriteParam;
import javax.imageio.stream.FileImageOutputStream;
import com.sun.imageio.plugins.jpeg.JPEGImageWriter;

public class Main {
public static void main(String[] args) throws Exception {
new [...]