Tagged Questions

GD is an open source code library for the dynamic creation of images by programmers. GD is written in C, and "wrappers" are available for Perl, PHP and other languages. GD creates PNG, JPEG and GIF images, among other formats. GD is commonly used to generate charts, graphics, thumbnails, and most anything else, on the fly. While not restricted to use on the web, the most common applications of GD involve website development.

learn more… | top users | synonyms

25
votes
10answers
17k views

Efficient JPEG Image Resizing in PHP

What's the most efficient way to resize large images in PHP? I'm currently using the GD function imagecopyresampled to take high resolution images, and cleanly resize them down to a size for web ...
18
votes
7answers
16k views

Can PNG image transparency be preserved when using PHP's GDlib imagecopyresampled?

The following PHP code snippet uses GD to resize a browser-uploaded PNG to 128x128. It works great, except that the transparent areas in the original image are being replaced with a solid color- black ...
15
votes
2answers
88 views

PHP custom postcard

i am creating a new feature on my site that allow people to send postcard to friends. in this section they can choose the image they want to send (they already uplaoded the image to their profile -> ...
12
votes
3answers
995 views

Compile PHP with GD for iPhone OS 4.1 [closed]

The Goal: have a working version of PHP with the GD library working on an iPod Touch 4th Gen. The Status: PHP is working on the iPod (lighttpd + PHP 5.2.8 + sqlite3) without GD. When trying to ...
11
votes
3answers
228 views

Capture image with imagegrabscreen and Wamp

I'm trying to capture a local web page with imagegrabscreen but I only get a black screenshot. I tried almost every solution from questions here on SO and others sites and nothing works. I'm using ...
11
votes
3answers
611 views

Issues porting PHP/GD wrapper to Imagick

I've recently discovered that Imagick can support color profiles and thus produce images of better quality compared to GD (see this question / answer for more details), so I'm trying to port my GD ...
11
votes
2answers
3k views

GD vs ImageMagick vs Gmagick for jpg?

I am in the step to abandon GD for manipulating image in my website, they just sux. Everyone saying to use ImageMagick because they are better than GD, but what about ImageMagick vs Gmagick (Swiss ...
11
votes
4answers
5k views

Can I detect animated gifs using php and gd?

I'm currently running into some issues resizing images using GD. Everything works fine until i want to resize an animated gif, which delivers the first frame on a black background. I've tried using ...
10
votes
4answers
572 views

Algorithm to add Color in Bezier curves

I'm playing with GD library for a while and more particuraly with Bezier curves atm. I used some existant class which I modified a little (seriously eval()...). I found out it was a generic algorithm ...
9
votes
3answers
931 views

Face detection in PHP

Does anybody know of a good way to do face detection in PHP? I came across some code here that claims to do this, but I can't seem to get it to work properly. I'd like to make this work (even though ...
9
votes
3answers
1k views

Good way to identify similar images?

I've developed a simple and fast algorithm in PHP to compare images for similarity. Its fast (~40 per second for 800x600 images) to hash and a unoptimised search algorithm can go through 3,000 images ...
9
votes
3answers
2k views

Image comparison with php + gd

What's the best approach to comparing two images with php and the Graphic Draw (GD) Library? This is the scenario: I have an image, and I want to find which image of a given set is the most ...
8
votes
1answer
319 views

kerning problem in GD and php 5.3

Knowing this problem has been adressed before at PHP update kerning problem with imagettftext() and imagefttext() functions but witout solution; PHP5.3 seem to have kerning problems when printing ...
8
votes
4answers
601 views

PHP-GD: Dealing with Unicode characters

I am developing a web service that renders characters using the PHP GD extension, using a user-selected TTF font. This works fine in ASCII-land, but there are a few problems: The string to be ...
8
votes
2answers
5k views

PHP/GD Gaussian Blur Effect

I need to obfuscate a certain area of an image using PHP and GD, currently I'm using the following code: for ($x = $_GET['x1']; $x < $_GET['x2']; $x += $pixel) { for ($y = $_GET['y1']; $y < ...
7
votes
2answers
29 views

php gd pixelate too sharp

i have this script for pixelize my images the script is working but i want more smooth edges: $imgfile = 'batman.jpg'; $image = ImageCreateFromJPEG($imgfile); $imagex = imagesx($image); $imagey = ...
7
votes
1answer
72 views

php generate image curly arrow

is it possible to create this image in PHP using GD ? i know i need to use GD and imagecreate, imagecolorallocate, imagedestroy etc... but i have no idea how to do the curve i need to create multiple ...
7
votes
2answers
155 views

PHP image resize function doesn't work properly

I want to resize an image PNG with transparence plz help. Here is the code : function createThumb($upfile, $dstfile, $max_width, $max_height){ $size = getimagesize($upfile); $width = $size[0]; ...
7
votes
3answers
266 views

CSS: Set font to a size so the text would occupy whole container [closed]

Possible Duplicate: resize font to fit in a div (on one line) For a small flashcard maker app I need to set the correct font size so text would fill all the available width of a fixed-size ...
7
votes
5answers
141 views

Which is more efficient/faster when calling a cached image?

i made an image resizer in php. When an image is resized, it caches a new jpg file with the new dimensions. Next time you call the exact img.php?file=hello.jpg&size=400 it checks if the new jpg ...
7
votes
2answers
4k 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 ...
7
votes
3answers
4k views

How do I resize pngs with transparency in PHP?

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! $this->image ...
6
votes
1answer
116 views

With PHP, is it possible to merge an animated gif with a jpg and retain the gifs animation?

Using PHP (GD or ImageMagick) I want to merge an animated gif with a jpg and retain the animation of the gif, the product being an animated gif. In other words, I've got an animated gif that is 500px ...
6
votes
2answers
210 views

average of RGB color of Image

I'm trying to get average of RGB color of Image in php. by gd lib I program it $x = imagesx($im); $y = imagesy($im); for ($i = 0;$i < $x;$i++) for ($j = 0;$j < $y;$j++){ ...
6
votes
1answer
416 views

PHP & GD - transparent background being filled with nearby color

I know PHP+GD Transparency issues have been beat to death on this and many other sites, but I've followed all the recommendations and I can't seem to fix my issue. First, the explanation: I am ...
6
votes
3answers
465 views

Background image dark or light?

I'm doing a ODP->HTML conversion with PHP. I have problems with the following: Use the style:use-window-font-color property to specify whether or not the window foreground color should be as ...
6
votes
4answers
227 views

User name as Watermark

Ok, I searched the internet and stackoverflow but I just can't seem to find an answer for my problem. I need to watermark images uploaded by users dynamically, but I don't want just text applied on ...
6
votes
2answers
1k views

Perspective transformation with GD

How could you distort an image with PHP GD from this... To this... using only the PHP GD library. I don't want to use a function someone else made I want to UNDERSTAND what's going on
6
votes
2answers
141 views

I need help compensating for the shifting of images when trying to create a grid with one image and apply it on another

Hi I have two images of yeast plates: Permissive: Xgal: The to images should be in the same spot and roughly the same size. I am trying to use one of the images to generate a grid and then ...
6
votes
3answers
2k views

Compare 2 images in php

Comparing 2 images to see if they are both the same files are easy, threw the files MD5, but is it possible or even plausible to determine if 2 images are same by using PHP GD to get the difference of ...
6
votes
3answers
925 views

php and true type collection in gd

I try to use a true type collection "gulim.ttc" with 4 fonts in the GD libary. Like this: $font = "fonts/gulim.ttc"; imagettftext($im, 20, 0, 0, 25, $white, $font, $string); The Problem is, PHP/GD ...
5
votes
3answers
156 views

How can I detect / calculate if a small pictures is present inside a bigger picture?

What I am trying to accomplish in PHP with GD or ImageMagick is the following: I have one large image (say 2000 x 2000 pixels).. I would like to check if a second, smaller image (say 50 x 50 pixels) ...
5
votes
3answers
1k views

imageantialias call to undefined function error with GD installed

I need help with a php script. It is a CMS that has been implemented into a website. When trying to add a new product IMAGE or trying to edit current images, I am getting the following error: Fatal ...
5
votes
2answers
118 views

Patterned text using php GD library

Im trying to create something that looks like this using php gd library: I've figured out how to create simple text using gd library, but im stuck on how to put a patterned text in it. Anybody ...
5
votes
1answer
687 views

Using GD in PHP, how can I make a transparent PNG watermark on PNG and GIF files ? (JPG files work fine)

I have an image (let's call it original image) on which I want to watermark another image (let's call it logo). The logo is a transparent PNG, whereas the original image can be png, jpg, or gif. I ...
5
votes
2answers
443 views

How to create a fisheye effect with PHP GD

Is there a way to do a FishEye (or Barrel transformation) effect on a image with PHP-GD? I found this with some code, but I have a hard time porting it to PHP. How can I implement this visual effect ...
5
votes
2answers
232 views

PHP code to generate icons

currently i am working on a huge back-end application in Zend Framework. A lot of times i end up using wrong icon for some object or action. My Question Is there any php code to generate icons ...
5
votes
6answers
2k views

PHP Detecting if source image url link leads to a “broken” image?

Suppose you have a thumbnail generator script that accepts source images in the form of a URL. Is there a way to detect if the source URL is "broken" - whether nonexistent or leads to an non-image ...
5
votes
1answer
435 views

How to delete transparent color in images?

What is the best way to replace transparent colors with white in gif and png images with php? // get transparent color indexes $trsp = ImageColorsForIndex($image, ImageColorTransparent($image)); // ...
5
votes
3answers
728 views

Generate colour palette from an image

Just for fun I've been looking at how to use the GD library to create a colour palette from an image. So far I've used GD to resize a user uploaded image to an appropriate size for displaying on a ...
5
votes
4answers
868 views

setting library include paths in c++

I just installed gd2 using mac ports (sudo install gd2), which installed libraries in the following places: /opt/local/include/gd.h /opt/local/lib/libgd.dylib (link) /opt/local/lib/libgd.la ...
5
votes
3answers
2k views

How can I upload an image from a URL in PHP

In PHP using GD or imagemagick how can I uplaod a photo from a URL, I want to build a function that I can pass in a few parameters and uplaod the image, I can currentyl uplaod a big image, resize it ...
5
votes
5answers
2k views

PHP gdLib 8-Bit PNG with alpha

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
5
votes
5answers
5k views

Can I swap colors in image using GD library in PHP?

I got the image like this (it's a graph): I want to change the colours, so the white is black, the graph line is light blue, etc.. is it possible to achieve with GD and PHP?
5
votes
9answers
3k views

How do i resize and convert an uploaded image to a PNG using GD

I want to allow users to upload avatar-type images in a variety of formats (GIF,JPEG,PNG at least), but to save them all as PNG database BLOBs. If the images are oversize, pixelwise, i want to resize ...
4
votes
4answers
72 views

php - how to make sure that the uploaded file is a jpg, gif or png?

In php I can check if a uploaded file has proper type by extension, so code should look like this: if ((($_FILES["photo1"]["type"] == "image/gif") || ($_FILES["photo1"]["type"] == "image/jpeg") || ...
4
votes
4answers
144 views

Use PHP to split an image into pixel divs

This is tricky to explain, but for curiosities sake, I'd like to grab an image with PHP, split it into 1 pixel parts and do a foreach and assign each pixel to a div as an image/background image. So ...
4
votes
3answers
184 views

Use PHP to convert JPEGs to transparent PNG

I have a lot of JPEG images that I want to convert to PNG images using PHP. The JPEGs are going to be uploaded by clients so I can't trust them to make sure they are in the right format. I also want ...
4
votes
2answers
134 views

PHP - get color name from rgb

i work now with GD library on PHP and i'm trying to get the pixel color name ,i mean : green , red , blue , etc... i'm getting the color this way : $rgb = ImageColorAt($image, $X, $y); $r = ($rgb ...
4
votes
2answers
167 views

PHP Get Image size when image is stored as byte array

I have image as binary string. (submitted via POST from C# app as byte array) I can read it using imagecreatefromstring function. How can I get image size (width and height)? getimagesize function ...

1 2 3 4 5 19