vote up 0 vote down star

I need to create and store thumbnails (of images from the web) and store them on the server. Can I use the awt libraries (as listed below) on a linux server running in a datacenter (without a monitor)? I do not know if the server has a graphics card or needs one for these libraries to work...

import java.awt.GraphicsConfiguration;
import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;
import java.awt.Graphics2D;
import java.awt.geom.AffineTransform;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
import java.io.FileOutputStream;
import java.net.URL;

import javax.imageio.ImageIO;

import org.springframework.stereotype.Service;

import com.sun.image.codec.jpeg.ImageFormatException;
import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGImageEncoder;
import java.awt.Color;
flag

1 Answer

vote up 1 vote down

You can as long as you run java in headless mode:

java -Djava.awt.headless=true your.MainClass
link|flag
I tried using the headless option but ran into java.awt.HeadlessException for function getDefaultScreenDevice(). Is there a way around this? – sammichy Oct 9 at 0:33
What are you actually trying to do? Why do you need a GraphicsDevice? – Jonathan Feinberg Oct 9 at 0:55
1  
If you need a head, but don't have a real display device, you should be able to use Xvfb (X virtual framebuffer). en.wikipedia.org/wiki/Xvfb – Tom Hawtin - tackline Oct 9 at 3:39
@Jonathan : I'm trying to create a thumbnail from an image file/URL. – sammichy Oct 9 at 3:51
You do not need a screen device to create a thumbnail. Take a look at this: jcsnippets.atspace.com/java/gui-graphics/… for a basic example – ChssPly76 Oct 9 at 4:19
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.