Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

imagecolormatch(3) [php man page]

IMAGECOLORMATCH(3)							 1							IMAGECOLORMATCH(3)

imagecolormatch - Makes the colors of the palette version of an image more closely match the true color version

SYNOPSIS
bool imagecolormatch (resource $image1, resource $image2) DESCRIPTION
Makes the colors of the palette version of an image more closely match the true color version. PARAMETERS
o $image1 - A truecolor image link resource. o $image2 - A palette image link resource pointing to an image that has the same size as $image1. RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 imagecolormatch(3) example <?php // Setup the true color and palette images $im1 = imagecreatefrompng('./gdlogo.png'); $im2 = imagecreate(imagesx($im1), imagesy($im1)); // Add some colors to $im2 $colors = Array(); $colors[] = imagecolorallocate($im2, 255, 36, 74); $colors[] = imagecolorallocate($im2, 40, 0, 240); $colors[] = imagecolorallocate($im2, 82, 100, 255); $colors[] = imagecolorallocate($im2, 84, 63, 44); // Match these colors with the true color image imagecolormatch($im1, $im2); // Free from memory imagedestroy($im1); imagedestroy($im2); ?> NOTES
Note This function requires GD 2.0.1 or later (2.0.28 or later is recommended). SEE ALSO
imagecreatetruecolor(3). PHP Documentation Group IMAGECOLORMATCH(3)

Check Out this Related Man Page

IMAGETRUECOLORTOPALETTE(3)						 1						IMAGETRUECOLORTOPALETTE(3)

imagetruecolortopalette - Convert a true color image to a palette image

SYNOPSIS
bool imagetruecolortopalette (resource $image, bool $dither, int $ncolors) DESCRIPTION
imagetruecolortopalette(3) converts a truecolor image to a palette image. The code for this function was originally drawn from the Indepen- dent JPEG Group library code, which is excellent. The code has been modified to preserve as much alpha channel information as possible in the resulting palette, in addition to preserving colors as well as possible. This does not work as well as might be hoped. It is usually best to simply produce a truecolor output image instead, which guarantees the highest output quality. PARAMETERS
o $ image -An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(3). o $dither - Indicates if the image should be dithered - if it is TRUE then dithering will be used which will result in a more speckled image but with better color approximation. o $ncolors - Sets the maximum number of colors that should be retained in the palette. RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 Converting a true color image to a palette-based image <?php // Create a new true color image $im = imagecreatetruecolor(100, 100); // Convert to palette-based with no dithering and 255 colors imagetruecolortopalette($im, false, 255); // Save the image imagepng($im, './paletteimage.png'); imagedestroy($im); ?> NOTES
Note This function requires GD 2.0.1 or later (2.0.28 or later is recommended). PHP Documentation Group IMAGETRUECOLORTOPALETTE(3)
Man Page

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

colors

(0 Replies)
Discussion started by: Sage3k
0 Replies

2. UNIX for Dummies Questions & Answers

Directory colors

Hey guys, When I used a Solaris box way back I had directory, file , symbolic link colors, etc... I can't seem to find the .dircolors file and how i set it up for bash on Solaris... anyone remember how to do it? Thanks! (2 Replies)
Discussion started by: kingdbag
2 Replies

3. UNIX for Dummies Questions & Answers

search a logfile for strings

Hi experts.. I am trying to write a shell script which will scan a log file for three strings ie success image1, success image2, success image3. My shell is tcsh If all the 3 strings are found then insert the 3 strings to a file1 and send mail to developers with file1 If all 3 are note... (0 Replies)
Discussion started by: amitrajvarma
0 Replies

4. Shell Programming and Scripting

New to KSH Scripting > Please Assist!

Array Example: $ colors=RED $ colors=GREEN $ colors=BLUE (4 Replies)
Discussion started by: ora_umair
4 Replies

5. SCO

Acronis true image for UNIXware 7.1.4

Hi, Please can anyone advise if Acronis true image can be used to take a image backup of the disk on sco unixware 7.1.4 and what version of software would I need to use this. The FS are vxfs. Would I need to power off the server before I can use this. Thanks (1 Reply)
Discussion started by: kpnuts
1 Replies