1
vote
3answers
58 views
How to load dynamic image w/php gd library, w/o saving it on server or having src=”script.php” ??
I would like to generate a dynamic image from a script, and then have it load to the browser without being persistent on the server.
However, I cannot call this by setting the image's …
0
votes
3answers
206 views
Warning: imageftbbox() [function.imageftbbox]: Problem loading glyph - what is this error
I got this error on my image generation script :
Warning: imageftbbox() [function.imageftbbox]: Problem loading glyph:
I think because of this I can't generate images from text properly - how do I …
0
votes
3answers
42 views
Image Resizing Question (PHP/GD)
I'm looking for help/suggestions in finding the most efficient way to resize an image to be as small as possible using PHP/GD while preserving the aspect ratio of the original image but ensuring the …
0
votes
1answer
29 views
dpkg error exit status 2
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:
QUILT_PATCHES=debian/patches quilt --quiltrc /dev/null pop -a -R …
1
vote
2answers
69 views
PHP - multiple users edit the same image simultaniously.
I am looking to have multiple users edit the same image using the gd library's imagecopymerge function.
I am worried that two users might select to edit the image at the same time. The application …
0
votes
1answer
31 views
PHP GD Font Width Calculate Help
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.
At first i thought i should just use css styles …
0
votes
1answer
35 views
GD/PHP heatmaps on geographical background
I am trying to reproduce the heatmap effect Bungie uses to show kills/deaths on specific halo 3 maps using PHP and GD. (Example: http://www.bungie.net/stats/halo3/heatmapstats.aspx?player=gatts007 - …
0
votes
1answer
34 views
php gd: create new image based on combine/join 3 images, and then rotate the new image
Basically I have 3 png images. They have the same height and different width.
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 …
1
vote
2answers
36 views
PHP images add txt
I am trying to get it to show text1 and text2 on the same image only Text1 is showing up
$rImg = ImageCreateFromJPEG("test.jpg");
$cor = imagecolorallocate($rImg, 0, 0, 0);
…
-2
votes
2answers
141 views
Save DIV content as image
hi
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"
how can i do …
1
vote
2answers
36 views
PHP gdLib 8-Bit PNG with alpha
Hi,
how is it possible to save my image, created with gd, as an png-8?
it saves as gif with transparent channel well - but I want to use png-8.
Best Regards,
Beerweasle
0
votes
2answers
33 views
GD PHP dynamic pie chart generation issue
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 …
0
votes
2answers
24 views
New lines in a string with GD library
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.
How can I …
2
votes
1answer
61 views
Using a transparent PNG as a clip mask
Is it possible to take this image:
And apply this mask:
And turn it into this:
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 …
2
votes
1answer
48 views
Any way to calculate the pixel length of a string?
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 …
