1
vote
2answers
50 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
17 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
19 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
14 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);
…
1
vote
2answers
28 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
26 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
21 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
42 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 …
1
vote
1answer
48 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 …
0
votes
2answers
25 views
[PHP] Dynamic GD image width text
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 …
3
votes
3answers
37 views
Ready solution for manipulate images.
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?
0
votes
1answer
15 views
Text as watermarking in PHP
I want to create text as a watermark for an image. the water mark should have the following properties
front: Impact
color: white
opacity: 31%
Font style: regular, bold
Bevel and Emboss
size: 30 …
3
votes
3answers
64 views
PHP watermarking
i am using this code to create watermark.
$image = '1.jpg';
$overlay = 'stamp.png';
$opacity = "20";
if (!file_exists($image)) {
die("Image does not exist.");
}
// Set offset from …
0
votes
0answers
49 views
PHP GD PNG - Transparent text is pretty rigid
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 …
