active questions tagged gd - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T10:18:19Zhttp://stackoverflow.com/feeds/tag/gdhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1818891/dpkg-error-exit-status-20dpkg error exit status 2Guillaume2009-11-30T10:02:00Z2009-11-30T10:02:00Z
<p>Trying to build php from source on Ubuntu 9.10 to enable GD2, but when i run dpkg-buildpackage, it just quits giving me this error:</p>
<p><hr></p>
<p>QUILT_PATCHES=debian/patches quilt --quiltrc /dev/null pop -a -R || test $? = 2
Patch suhosin.patch does not remove cleanly (refresh it or enforce with -f)</p>
<p>make: *** [unpatch] Error 1
dpkg-buildpackage: error: fakeroot debian/rules clean gave error exit status 2</p>
<p><hr></p>
<p>I've googled around, but i really can't find what's causing this, and what i should do about it...</p>
<p>any ideas?</p>
http://stackoverflow.com/questions/1812265/php-multiple-users-edit-the-same-image-simultaniously1PHP - multiple users edit the same image simultaniously.Mark2009-11-28T11:08:53Z2009-11-29T00:06:39Z
<p>I am looking to have multiple users edit the same image using the gd library's imagecopymerge function.</p>
<p>I am worried that two users might select to edit the image at the same time. The application then merge's the two users images seperately and finally saves them but one overwrites the other and thus one of the users images is missing.</p>
<p>I am not sure of how to test the above... is it a possibility and if so how can I combat it?</p>
http://stackoverflow.com/questions/1809200/php-gd-font-width-calculate-help0PHP GD Font Width Calculate HelpOzzy2009-11-27T14:50:02Z2009-11-27T15:00:54Z
<p>OK a little backstory. I am redesigning one of my old websites and I want to use Myriad Pro as a title on the page. This will be dynamic with php etc.</p>
<p>At first i thought i should just use css styles and define myriad as the main font. But after using typetester.org, i found that myriad and lets say arial are different heights even if they are the same font size.</p>
<p>So i could use css and risk breaking my design in browsers without the font...</p>
<p>So then i thought i could use sifr (w/e its called lol)</p>
<p>At last i decided to use PHP GD.</p>
<p>Which brings me to my question:</p>
<p>Is it better to set a fixed image width large enough to accomadate lots of text within GD or to dynamically calculate the images width according to the ammount of characters.</p>
<p>If the second one is better, how would i calculate the width of a non fixed width font like Myriad?</p>
<p>ps, i dont know if my server supports imagemagik so GD solutions only please</p>
<p>pps, if anyone can also inform me of another way i can use Myriad pro that doesnt resort to GD.</p>
<p>Thanks :)</p>
http://stackoverflow.com/questions/1787038/gd-php-heatmaps-on-geographical-background0GD/PHP heatmaps on geographical backgroundEToreo2009-11-24T00:22:22Z2009-11-24T00:26:31Z
<p>I am trying to reproduce the heatmap effect Bungie uses to show kills/deaths on specific halo 3 maps using PHP and GD. (Example: <a href="http://www.bungie.net/stats/halo3/heatmapstats.aspx?player=gatts007" rel="nofollow">http://www.bungie.net/stats/halo3/heatmapstats.aspx?player=gatts007</a> - pick a map like "Guardian" for a better example.)</p>
<p>I have all the data and background map images from my game, but I am having trouble coming up with a way to actually get the gradient to work correctly.</p>
<p>Here is my process so far:</p>
<ol>
<li>On a pure black background: For each
kill Draw white gradient-translucent circle
(solid near the middle, 100%
translucent at the edge) at that
location on the map. (This is
working well.)</li>
<li>Now replace any solid
black pixel with a pure translucent
pixel.</li>
<li>Map a color scale to the remaining pixels to get the heat map effect. (Use gray scale value to map to a color.)</li>
<li>Place this created image on top of the real map background.</li>
</ol>
<p>I am having problems with steps 2 and 3. Does anyone have some good examples of these steps? Or better yet, a process that will give better results?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1784661/php-gd-create-new-image-based-on-combine-join-3-images-and-then-rotate-the-new0php gd: create new image based on combine/join 3 images, and then rotate the new imagemauricio lopez2009-11-23T17:24:33Z2009-11-23T20:15:07Z
<p>Basically I have 3 png images. They have the same height and different width.</p>
<p>I want to create a new image on the fly, then join the 3 images (not merging, I want to respect the content of each image) and put them on the new image.</p>
<p>After that I wanto to rotate that new image.</p>
<p>I want to do it with php GD.</p>
<p>If someone can give me an idea, It would be awesome.</p>
http://stackoverflow.com/questions/1777688/php-images-add-txt1PHP images add txtGully2009-11-22T03:00:37Z2009-11-22T03:13:34Z
<p>I am trying to get it to show text1 and text2 on the same image only Text1 is showing up</p>
<pre><code> $rImg = ImageCreateFromJPEG("test.jpg");
$cor = imagecolorallocate($rImg, 0, 0, 0);
imagestring($rImg,5,126,22,"Text1",$cor);
imagestring($rImg,5,500,34,"Text2",$cor);
header('Content-type: image/jpeg');
imagejpeg($rImg,NULL,100);
</code></pre>
<p>Thank you</p>
http://stackoverflow.com/questions/1658896/save-div-content-as-image-2Save DIV content as imageunknown (google)2009-11-02T00:26:43Z2009-11-20T19:34:14Z
<p>hi</p>
<p>i have a div that shows some content (several images, text, floating elements, etc) and i would like to add the posibility to user do something like "Save this content as image"</p>
<p>how can i do that? i read all the php doc but there's nothing good to do this, even imagegrabwindow sucks because of its high load, browser limitations and also no XY or width/height control</p>
<p>so basicly i want to do this:
get #div content, click on Save as image, then the user get a jpg or png of that div, like it was a printscreen</p>
<p>thank you
ps: i dont want to pre-generate the content using GD, and neither want to save as PDF</p>
http://stackoverflow.com/questions/1761986/php-gdlib-8-bit-png-with-alpha1PHP gdLib 8-Bit PNG with alphaBeerweasle2009-11-19T09:27:32Z2009-11-19T13:16:17Z
<p>Hi,</p>
<p>how is it possible to save my image, created with gd, as an png-8?</p>
<p>it saves as gif with transparent channel well - but I want to use png-8.</p>
<p>Best Regards,
Beerweasle</p>
http://stackoverflow.com/questions/1753230/gd-php-dynamic-pie-chart-generation-issue0GD PHP dynamic pie chart generation issuetrip0d1992009-11-18T02:26:36Z2009-11-18T08:59:36Z
<p>I've created a dynamic pie chart with the GD extension using the image filled arc function. I pass to this script, via HTTP GET variables, up to 11 values. the first value, n, is the number of values that follow. n1,n2,n3, etc. are the data itself. These are integer precentages. The goal is to make a chart that will show the percentages in a pie chart in graphical form. </p>
<p>When I run this as:</p>
<p>piechart.php?n=2&n1=20&n2=80</p>
<p>I only get a black box. Any ideas? Any questions please ask - thanks!</p>
<pre><code><?php
// var load
$size=500;
//HTTP GET vars:
//N is the number of sections we have
//n1 is the percentage for part1
//n2 is the percentage for part2, and so on
$num=$_GET["n"];
//want to make a hard limit at 10 different sections
$num=min($num,10);
$percents;
$angles;
$angles[0]=0;
$percents[0]=NULL;
//load percents array. First value is NULL
for ($c=1;$c<=$num;$c++)
{
$percents[$c]=(int)$_GET["n".$c];
$angles[$c]=(int)round((($percents[$c-1]+$percents[$c])/100)*360);
}
$angles[$num]=360;
//create image
$half=round($size/2);
$image = imagecreatetruecolor($size, $size);
// colors
$colorR=array(0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x74, 0x33, 0xFF, 0x33, 0x66);
$colorG=array(0x00, 0x80, 0x00, 0xA5, 0xFF, 0xFF, 0x99, 0x00, 0x33, 0xFF);
$colorB=array(0xFF, 0x00, 0x00, 0x00, 0x00, 0xD4, 0xFF, 0x66, 0x99, 0x33);
// shaded colors
$darkColorR=array(0x00, 0x00, 0x80, 0x80, 0x80, 0x3A, 0x1A, 0x80, 0x1A, 0x33);
$darkColorG=array(0x00, 0x40, 0x00, 0x52, 0x80, 0x80, 0x4C, 0x00, 0x1A, 0x80);
$darkColorB=array(0x80, 0x00, 0x00, 0x00, 0x00, 0x6A, 0x80, 0x33, 0x4C, 0x1A);
$white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF);
$black = imagecolorallocate($image, 0x00, 0x00, 0x00);
// make the 3D effect
$tempDarkColor;
for ($i = $half+round(.1*$half); $i > $half; $i--)
{
for ($j=0;$j<(count($angles)-1)&&$angles[$j]<180;$j++)
{
if ($darkColorR[$j]==NULL||$darkColorG[$j]==NULL||$darkColorB[$j]==NULL)
{
//if one of the colors is missing, set the entire color to white
$darkColorR[$j]=0x00;
$darkColorG[$j]=0x00;
$darkColorB[$j]=0x00;
}
$tempDarkColor[$j]= imagecolorallocate($image, $darkColorR[$j],$darkColorG[$j],$darkColorB[$j]);
imagefilledarc($image, $half, $i, $size, $half, $angles[$j], $angles[$j+1] , $tempDarkColor[$j], IMG_ARC_PIE);
}
}
//make the image
$imageColor;
for ($k=0;$k<(count($angles)-1);$k++)
{
if ($darkColorR[$k]==NULL||$darkColorG[$k]==NULL||$darkColorB[$k]==NULL)
{
//if one of the colors is missing, set the entire color to white
$colorR[$k]=0x00;
$colorG[$k]=0x00;
$colorB[$k]=0x00;
}
$tempColor[$k]= imagecolorallocate($image, $darkColorR[$k],$darkColorG[$k],$darkColorB[$k]);
imagefilledarc($image, $half, $half, $size, $half, $angles[$k], $angles[$k+1] , $tempColor[$k], IMG_ARC_PIE);
}
// flush image
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
?>
</code></pre>
http://stackoverflow.com/questions/1750641/new-lines-in-a-string-with-gd-library0New lines in a string with GD libraryCyclone2009-11-17T17:55:36Z2009-11-17T18:59:20Z
<p>Is it possible? \n doesnt work, html doesnt work, nothing seems to work. I know I could just make a new string instead, but that is more effort than should be needed for this simple task.</p>
<p>How can I do this?</p>
http://stackoverflow.com/questions/1741488/using-a-transparent-png-as-a-clip-mask1Using a transparent PNG as a clip maskJedi2009-11-16T11:03:44Z2009-11-16T14:53:26Z
<p>Is it possible to take this image:</p>
<p><img src="http://i34.tinypic.com/2d8neo0.png" alt="image1"></p>
<p>And apply this mask:</p>
<p><img src="http://i35.tinypic.com/2091450.png" alt="mask"></p>
<p>And turn it into this:</p>
<p><img src="http://i37.tinypic.com/23m7apv.png" alt="image2"></p>
<p>Using either GD or Imagick? I know it's possible to mask an image using shapes but I'm not sure how to go on about doing it with a pre-created alphatransparent image. :s</p>
http://stackoverflow.com/questions/1741917/any-way-to-calculate-the-pixel-length-of-a-string2Any way to calculate the pixel length of a string?trip0d1992009-11-16T12:33:08Z2009-11-16T12:34:17Z
<p>I'm using the GD library for PHP, and using functions like imagestring() and imagestringup() to add text to pictures. I am using the built-in fonts with latin2 encoding. Is there a way, with a given string, to calculate the length (in pixels) of the string? </p>
<p>I want to calculate the length in pixels of the strings because the strings are variable and I want to make sure the string doesn't overflow the area I want to put it in.</p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/1738076/php-dynamic-gd-image-width-text0[PHP] Dynamic GD image width textJames Brooks2009-11-15T16:55:06Z2009-11-15T21:54:42Z
<p>I'm trying to spice up my website by using custom fonts for headings. For me, the most appropriate way to do this is using PHP and GD. I have written a little script which will output the dynamic text based on the $_GET value, however sometimes the image is too wide, which moves everything else about.</p>
<p>How can I get the image to adjust the width of it, based on the width of the text? Here is the code I've written so far:</p>
<pre><code><?php
// Settings
$sText = $_GET['t']; // Text of heading
$sFont = "font/AvantGarde-Book.ttf"; // Default font for headings
$sMain = $_GET['c'] ? $_GET['c'] : 0xF2AB27; // Get a font or default it
// Create the image
header("content-type: image/png"); // Set the content-type
$hImage = imagecreatetruecolor(200, 24);
ImageFill($hImage, 0, 0, IMG_COLOR_TRANSPARENT);
imagesavealpha($hImage, true);
imagealphablending($hImage, false);
imagettftext($hImage, 20, 0, 0, 24, $sMain, $sFont, $sText); // Draw the text
imagepng($hImage); // Generate the image
imagedestroy($hImage); // Destroy it from the cache ?>
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/1734519/ready-solution-for-manipulate-images3Ready solution for manipulate images. tom2009-11-14T15:13:57Z2009-11-14T19:19:37Z
<p>I'm searching for a class or function, to convert, add borders and text (using ttf fonts) to an uploaded image before the image is saved on the server.
Do you know something?</p>
http://stackoverflow.com/questions/1726894/php-watermarking3PHP watermarkingJasim2009-11-13T03:11:40Z2009-11-13T05:20:20Z
<p>i am using this code to create watermark.</p>
<pre><code> $image = '1.jpg';
$overlay = 'stamp.png';
$opacity = "20";
if (!file_exists($image)) {
die("Image does not exist.");
}
// Set offset from bottom-right corner
$w_offset = 0;
$h_offset = 100;
$extension = strtolower(substr($image, strrpos($image, ".") + 1));
// Load image from file
switch ($extension)
{
case 'jpg':
$background = imagecreatefromjpeg($image);
break;
case 'jpeg':
$background = imagecreatefromjpeg($image);
break;
case 'png':
$background = imagecreatefrompng($image);
break;
case 'gif':
$background = imagecreatefromgif($image);
break;
default:
die("Image is of unsupported type.");
}
// Find base image size
$swidth = imagesx($background);
$sheight = imagesy($background);
// Turn on alpha blending
imagealphablending($background, true);
// Create overlay image
$overlay = imagecreatefrompng($overlay);
// Get the size of overlay
$owidth = imagesx($overlay);
$oheight = imagesy($overlay);
// Overlay watermark
imagecopymerge($background, $overlay, $swidth - $owidth - $w_offset, $sheight - $oheight - $h_offset, 0, 0, $owidth, $oheight, $opacity);
imagejpeg($background,$image);
// Destroy the images
imagedestroy($background);
imagedestroy($overlay);
</code></pre>
<p>the png image contains a text with all other region as transparent.
but when i execute this code , it applys the png over jpg, but the transparecy is not maintained of the png. it shows in a box.</p>
<p>how can i acheive that . ie if a png contains transaparent part , it should show the below image in that part....?</p>
http://stackoverflow.com/questions/1726987/text-as-watermarking-in-php0Text as watermarking in PHPJasim2009-11-13T03:37:10Z2009-11-13T03:40:37Z
<p>I want to create text as a watermark for an image. the water mark should have the following properties</p>
<pre><code>front: Impact
color: white
opacity: 31%
Font style: regular, bold
Bevel and Emboss
size: 30 pixels
</code></pre>
<p>how can i do that. any help?</p>
http://stackoverflow.com/questions/1719614/php-gd-png-transparent-text-is-pretty-rigid0PHP GD PNG - Transparent text is pretty rigidzilla2009-11-12T03:03:51Z2009-11-12T04:12:23Z
<p>I'm using a PHP script that I found a while back that lets you specify text in a GET variable and it will convert it to a transparent PNG. This allows me to use non web safe fonts in my websites without having to manually convert each piece of text to an image.</p>
<p>I've run into a slight problem, though, as seen here: <a href="http://imagebin.ca/view/KIk65-6.html" rel="nofollow">http://imagebin.ca/view/KIk65-6.html</a>.</p>
<p>The text on the left is what I've been using as my main page headers. Looks good. I want to change the menu text to use the same font. So I tried the PHP script and it's creating the image with a white rigid border on the text. Not good.</p>
<p>The PHP script can be found here: pastebin.com/m5ec21d98</p>
<p>Is this a bug with the code or with GD? How can this be fixed? :/</p>
http://stackoverflow.com/questions/1696700/should-i-use-imagemagick-or-gd2-with-imageapi-in-drupal0Should I use ImageMagick or GD2 with ImageAPI in drupal?sprugman2009-11-08T14:19:50Z2009-11-08T20:09:08Z
<p>Why? What are the pros and cons of each?</p>
http://stackoverflow.com/questions/1553977/php-bug-in-polygon-gd-library0PHP - Bug in polygon GD library?Mark2009-10-12T11:11:40Z2009-11-05T16:53:55Z
<p>Hi guys,</p>
<p>I have run into some trouble with the gd library's <a href="http://php.net/imagefilledpolygon" rel="nofollow"><code>imagefilledpolygon()</code></a>.</p>
<p>For some reason some of my lines were ending up 1px out of place so I decided to debug it using imagepixelset to set the colour of my shapes points to red.</p>
<p><img src="http://www.degreeshowcase.com/other/1.gif" alt="alt text">
if you look at the picture you can see some of the points are inside the shape ... some are outside....its very illogical.</p>
<p>(the picture has been scaled up to make it more visible)</p>
<p>Does anyone have a solution?</p>
<p>Update:</p>
<p>My points for the shape above were: 0,0 40,0 40,20 20,20 20,40 0,40</p>
<p>I require that the height and width of the shape produced should be a multiple of 20.... but for some reason some of the shape ends up 21 px high or wide. </p>
<p>I have made a script to work out what the points would be to get the shape I wanted but I can not work out why and so I can't work out a script to correct all my shapes.</p>
<pre><code><?php
// set up array of points for polygon
$values = array(0,0, 39,0, 39,20, 19,20, 19,39, 0,39);
//My original values were 0,0 40,0 40,20 20,20 20,40 0,40
//I do not understand why some values require minus 1 and others can remain as they were (a multiple of 20)
// create image
$image = imagecreatetruecolor(40, 40);
// allocate colors
$bg = imagecolorallocate($image, 200, 200, 200);
$blue = imagecolorallocate($image, 0, 0, 255);
// fill the background
imagefilledrectangle($image, 0, 0, 39, 39, $bg);
// draw a polygon
imagefilledpolygon($image, $values, 6, $blue);
// flush image
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
?>
</code></pre>
http://stackoverflow.com/questions/1056104/php-gd-how-to-copy-a-circle-from-one-image-to-another0PHP/GD, how to copy a circle from one image to another?MSpreij2009-06-29T00:14:41Z2009-11-05T16:30:28Z
<p>Is there a reasonably straightforward way to copy a circular area from one image resource to another? Something like <a href="http://nl3.php.net/manual/en/function.imagecopymerge.php" rel="nofollow">imagecopymerge</a> except with circles or ovals etc?<br />
If possible, I want to avoid having to use pre-created image files (any oval shape should be possible), and if there's transparency colours involved they should naturally leave the rest of the image alone.</p>
<p>Reason I'm asking, I have a few classes that allow to apply image operations inside a "selected area" of an image, which works by first deleting that area from a copy of the image, then overlaying the copy back on the original. But what if you want to select a rectangle, and then inside that deselect a circle, and have the operations only affect the area that's left?</p>
http://stackoverflow.com/questions/1669683/crop-whitespace-from-image-in-php0Crop whitespace from image in PHPunknown (google)2009-11-03T19:41:51Z2009-11-05T10:07:37Z
<p>Is it possible to remove the whitespace surrounding an image in PHP?</p>
<p>NOTE: to clarify I mean something like photoshops trim feature.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1673076/image-size-reduction-in-php0Image size reduction in PHPPhil Jackson2009-11-04T11:01:59Z2009-11-04T11:14:25Z
<p>In cases such as this error:</p>
<blockquote>
<p>Fatal error: Out of memory (allocated
31981568) (tried to allocate 3264
bytes)</p>
</blockquote>
<p>Can I use the GD lib to reduce its file size first before getting to this stage?</p>
http://stackoverflow.com/questions/1665895/image-upload-errors-quality-reduction-to-push-upload0Image upload errors + quality reduction to push uploadPhil Jackson2009-11-03T08:07:14Z2009-11-03T08:07:14Z
<p>Morning all, creating an ajax upload. problem being i want to error out when image is too large.</p>
<p>Here's my code</p>
<p>PHP Code:</p>
<pre><code><?php
if(isset($_FILES) && count($_FILES)!=0)
{
$directory = "./";
$maxWidth = 2500;
if(!file_exists($directory))
{
mkdir($directory, 0700); // create directory if not exists
}
if(!empty($_FILES['fileToUpload']['tmp_name'])) // if file gets posted to iframe
{
if(preg_match("#^image/((?:gif)|(?:jpg)|(?:jpeg)|(?:png))$#is", $_FILES['fileToUpload']['type'], $match)) // check for valid files
{
$extention = $match[1];
if(!empty($_POST['fileToUploadName'])) // if user has entered new file name
$filename = $directory.$_POST['fileToUploadName'].".".$extention;
else
$filename = $directory.$_FILES['fileToUpload']['name'].".".$extention;
list($width,$height)=getimagesize($_FILES['fileToUpload']['tmp_name']); // get height and width
if(!empty($_POST['width']) && !empty($_POST['height']))
{
if(preg_match("#^[0-9]*$#is", trim($_POST['width'])) && preg_match("#^[0-9]*$#is", trim($_POST['width']))) // namke sure input is numerical
{
if($_POST['height'] > $height || $_POST['width'] > $width)
{
die("Entering height or width values that are larger than the actual image will result in streched and poor quality images. Please alter values.");
}
$newWidth = $_POST['width'];
$newHeight = $_POST['height'];
}
else
die("Please enter a valid input for height and width");
}
elseif(!empty($_POST['width']) && empty($_POST['height']))
die("please enter a height if you would like to rezize image");
elseif(!empty($_POST['height']) && empty($_POST['width']))
die("please enter a width if you would like to rezize image");
elseif($width >= $maxWidth || $height >= $maxWidth)
{
$larger = max($width, $height);
$percent = floor($maxWidth/floor($larger/100));
$newHeight = (floor($height/100)*$percent);
$newWidth = (floor($width/100)*$percent);
}
// upload file
if(!file_exists($directory.$filename))
{
$uploadedfile = $_FILES['fileToUpload']['tmp_name'];
if($extention=="gif")
{
if(!$src = @imagecreatefromgif($uploadedfile))
{
die("Error: Could not create image, image too large");
}
}
elseif($extention=="png")
{
if(!$src = @imagecreatefrompng($uploadedfile))
{
die("Error: Could not create image, image too large");
}
}
else
{
if(!$src = @imagecreatefromjpeg($uploadedfile))
{
die("Error: Could not create image, image too large");
}
}
$tmp=imagecreatetruecolor($newWidth,$newHeight);
imagecopyresampled($tmp,$src,0,0,0,0,$newWidth,$newHeight,$width,$height);
if($extention=="gif")
{
if(imagegif($tmp,$filename,100))
{
imagedestroy($src);
imagedestroy($tmp);
die("upload complete"); // gif upload complete
}
else
{
die("upload failed"); // gif upload failed
}
}
elseif($extention=="png")
{
if(imagepng($tmp,$filename,9))
{
imagedestroy($src);
imagedestroy($tmp);
die("upload complete"); // png upload complete
}
else
{
die("upload failed"); // png upload failed
}
}
else
{
if(imagejpeg($tmp,$filename,100))
{
imagedestroy($src);
imagedestroy($tmp);
die("upload complete"); // jpg upload complete
}
else
{
die("upload failed"); // jpg upload failed
}
}
}
else
{
die("Error: Filename already exists");
}
}
else
{
die("Error: Please upload only valid image files (.jpg, .gif and .png)");
}
}
else
{
die("Error: Please enter file to upload");
}
}
?>
</code></pre>
<p>The steps i've took to error is:</p>
<p>PHP Code:</p>
<pre><code>if($extention=="gif")
{
if(!$src = @imagecreatefromgif($uploadedfile))
{
die("Error: Could not create image, image too large");
}
}
elseif($extention=="png")
{
if(!$src = @imagecreatefrompng($uploadedfile))
{
die("Error: Could not create image, image too large");
}
}
else
{
if(!$src = @imagecreatefromjpeg($uploadedfile))
{
die("Error: Could not create image, image too large");
}
}
</code></pre>
<p>but just dies without error display.</p>
<p>Also does anyone know how using the GD lib i can reduce the size and maybe the quality to push the upload when the file is too large?</p>
http://stackoverflow.com/questions/1662315/possible-to-use-php-gds-imagecreatefromgif-and-imagettftext-together0Possible to use PHP GD's imagecreatefromgif() and imagettftext() together?Andrew G. Johnson2009-11-02T16:34:03Z2009-11-02T17:49:00Z
<p>Basically I am looking for a way to write dynamic text on top of a GIF [preferably via PHP GD.] But I can't seem to get these two functions to play nice.</p>
<p>For reference: <a href="http://php.net/manual/en/function.imagecreatefromgif.php" rel="nofollow">imagecreatefromgif</a> & <a href="http://ca2.php.net/manual/en/function.imagettftext.php" rel="nofollow">imagettftext</a> </p>
<pre><code>function load_gif($imgname)
{
$im = @imagecreatefromgif($imgname);
if(!$im)
{
$im = imagecreatetruecolor(150,30);
$bgc = imagecolorallocate($im,255,255,255);
$tc = imagecolorallocate($im,0,0,0);
imagefilledrectangle($im,0,0,150,30,$bgc);
imagestring($im,1,5,5,'Error loading ' . $imgname,$tc);
}
return $im;
}
if ($_GET['color'] == 'red')
{
header('Content-Type:image/gif');
//$img = imagecreatetruecolor(51,32); // THIS IS NEEDED FOR TEXT TO SHOW
$img = load_gif('map-bubble-' . $_GET['color'] . '.gif');
$black = imagecolorallocate($img,0,0,0);
$white = imagecolorallocate($img,255,255,255);
imagefilledrectangle($img,0,0,51,32,$black);
imagettftext($img,14,0,0,0,$white,'../arial.ttf','test');
imagegif($img);
imagedestroy($img);
}
</code></pre>
http://stackoverflow.com/questions/279236/how-do-i-resize-pngs-with-transparency-in-php2How do I resize pngs with transparency in PHP?Ryan Doherty2008-11-10T21:28:35Z2009-10-31T20:44:02Z
<p>I'm attempting to resize pngs with transparent backgrounds in PHP and the code samples I've found online don't work for me. Here's the code I'm using, advice will be much appreciated!</p>
<pre><code>$this->image = imagecreatefrompng($filename);
imagesavealpha($this->image, true);
$newImage = imagecreatetruecolor($width, $height);
// Make a new transparent image and turn off alpha blending to keep the alpha channel
$background = imagecolorallocatealpha($newImage, 255, 255, 255, 127);
imagecolortransparent($newImage, $background);
imagealphablending($newImage, false);
imagesavealpha($newImage, true);
imagecopyresampled($newImage, $this->image, 0, 0, 0, 0, $width, $height, $this->getWidth(), $this->getHeight());
$this->image = $newImage;
imagepng($this->image,$filename);
</code></pre>
<p><br />
<strong>Update</strong>
By 'not working' I meant to say the background color changes to black when I resize pngs.</p>
http://stackoverflow.com/questions/1654449/with-php-gd-how-do-i-trim-an-image0With PHP/GD, how do I trim an image?eyze2009-10-31T13:54:18Z2009-10-31T14:10:43Z
<p>I want to <strong>mimic the trim behavior of Photoshop</strong> (crop the area that is covered by the same color on all sides) with <strong>GD and PHP</strong> but I'm lacking ideas on how to accomplish this.</p>
<p>If someone has any idea on how to do this I would very much like to hear it.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1648635/detect-predominant-shade-of-image-with-php2Detect predominant shade of image with PHPAaron2009-10-30T08:37:50Z2009-10-30T09:02:58Z
<p>Hi all,</p>
<p>I've used GD before, but only ever for resizing/generating images on the fly - though I'm pretty positive it has the capabilities to do what I'm after.</p>
<p>As simply as possible, I need to check an image to find out whether it has a light background or a dark background. I.e. if the background is predominately 'light' I'm returned a value of '1', and if it is predominately 'dark' it returns '0'.</p>
<p>There's only going to be 5 images iterated through in this process at a time, but I'm very concious here of processing time - the page is going to be called often.</p>
<p>Can anyone point me in the right direction on where to go with this?</p>
http://stackoverflow.com/questions/1647217/is-there-a-simple-image-processing-library-for-java-similar-to-imagemagick1Is there a simple image processing library for Java similar to ImageMagick?Ramon2009-10-29T23:43:47Z2009-10-30T00:27:10Z
<p>I am aware that Java includes very advanced image processing API's but what I'm looking for is a pure Java API (uses Java2D) that is "phrased" in terms more appropriate to common tasks of web image processing i.e. I want to write:</p>
<pre><code>image.scale(0.2)
</code></pre>
<p>instead of</p>
<pre><code>AffineTransform t = new AffineTransform(...)
t.resize(...)
t.translate(...)
AffineTransformOp = new AffineTransformOp(...)
etc. etc.
</code></pre>
<p>Think ImageMagick or GD.</p>
http://stackoverflow.com/questions/1627143/how-to-install-gd-library-with-stawberry-perl1How to install GD library with Stawberry Perlindiguy2009-10-26T20:25:43Z2009-10-27T06:29:35Z
<p>I am attempting to install the GD library using Strawberry perl and <a href="http://gnuwin32.sourceforge.net/packages/gd.htm" rel="nofollow">GnuWin32</a>. However, when I enter "install GD" in the CPAN shell, the following message appears:</p>
<p><code>'gdlib-config' is not recognized as an internal or external command, operable program or batch file. **UNRECOVERABLE ERROR** Could not find gdlib-config in the search path. Please install libgd 2.0.28 or higher.</code></p>
<p>I believe perl is having difficulty locating the GD library installed at C:\Program Files\GnuWin32\bin, but I am not sure how to fix this. I am still new to perl, so any help would be appreciated.</p>
http://stackoverflow.com/questions/821354/overlaying-colour-on-a-jpeg-with-php-gd0Overlaying colour on a JPEG with PHP/GD?Aaron2009-05-04T18:43:51Z2009-10-26T12:00:01Z
<p>Hi all,</p>
<p>I have a collection of black and white JPEG's stored on my server. These images are symbol based, where the symbol is a collection of black lines on a white background.</p>
<p>I am trying to use GD to replace the black colour with another colour on the fly based on a variable passed. Currently, I am:</p>
<p>Getting the JPEG as: $image = imagecreatefromjpeg($imgURL),
Converting a HEX code (#FF0000, say) to RGB through PHP,</p>
<p>And then feeding these variables to:</p>
<pre><code>private function colourize_image($image, $colour, $contrast = 0) {
if (!$image) { return false; }
imagealphablending($image, true);
imagesavealpha($image, true);
# Convert hex colour into RGB values
$r = hexdec('0x' . $colour{0} . $colour{1});
$g = hexdec('0x' . $colour{2} . $colour{3});
$b = hexdec('0x' . $colour{4} . $colour{5});
imagefilter($image, IMG_FILTER_COLORIZE, $r, $g, $b);
imagefilter($image, IMG_FILTER_CONTRAST, $contrast);
# Return the GD image object
return $image;
}
</code></pre>
<p>For some reason, the function doesn't work at all (it won't overlay a new colour).</p>
<p>Can anyone advise as to where I am going wrong?</p>
<p>Many thanks.</p>