imagemagik

matlab write image into eps file

In MATLAB, how do you write a matrix into an image of eps format? It seems imwrite does not support eps? convert is not working on the Linux server I am using $ convert exploss_stumps.jpg exploss_stumps.eps convert: missing an image filename `exploss_stumps.eps' @ convert.c/ConvertImageCommand/2838 Any idea why? I tried gnovi...

How to maintain color settings when converting eps to jpg in imagemagick

I need to convert thousands of EPS files to JPG, using ImageMagick. The conversion is almost working - What is different is the colors are more saturated in the converted JPG than in the original EPS when viewed in a browser. However when I view the source EPS and the converted JPG in Photoshop, the colors are identical. Here is the comm...

Making a .ico file using gd and php

Does anyone know how to make a .ico file that will work in Intenet explorer? I can't seem to get anywhere here is my gd code $im = imagecreatefromjpeg(FAVICONDIR.'normal/'.$filename ); list($width, $height) = getimagesize(FAVICONDIR.'normal/'.$filename); // get the width and height of the jpg $image_p = imagecreatetrueco...

PHP Imagick API: How to change the Hue of an Image to known hexadecimal value

I create template websites. If a client choose a blue or green or purple heading, I don't want to have to store all those different color variations of an image. I want to programmatically change the hue. I do not want to 'flood fill' it because that would remove any textures or bevels. For example page you see I have accomplished exact...