10
votes
7answers
2k views
Efficient JPEG Image Resizing in PHP
Whats the most efficient way to resize large images in PHP?
I'm currently using the GD function imagecopyresampled to take hi-res images, and cleanly resize them down to a size for web viewing …
7
votes
3answers
1k views
Can I detect animated gifs using php and gd?
Hi all,
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 …
4
votes
7answers
2k 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 …
4
votes
9answers
929 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 …
3
votes
3answers
39 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?
3
votes
2answers
361 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 < …
3
votes
3answers
202 views
php: take a thumbnail from a quicktime (movie) file
Does someone know if it's even possible (in PHP) to take a frame/thumbnail from a quicktime movie on the server?
Something like the usual GD thumbnail generation, but for .mov files.
thanks!
note: …
3
votes
5answers
246 views
How to dynamically create an image with a specified number on it?
I have a place holder image saying something like:
Your rating is:
[rating here]
My PHP code is supposed to dynamically insert the rating number where there is a blank space left out for it on …
3
votes
5answers
1k views
sIFR or FLIR?
I've recently bumped into facelift, an alternative to sIFR and I was wondering if those who have experience with both sIFR and FLIR could shed some light on their experience with FLIR.
For those of …
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 …
2
votes
1answer
59 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
3answers
74 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 …
2
votes
1answer
39 views
Detect predominant shade of image with PHP
Hi all,
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.
As simply as possible, I need to check …
2
votes
1answer
146 views
PIL vs Python-GD for crop and resize
Dear Stackoverflow'ers,
I am creating custom images that I later convert to an image pyramid for Seadragon AJAX. The images and image pyramid are created using PIL. It currently take a few hours to …
2
votes
2answers
115 views
PHP - Mask polygon over image
Hi Everyone (this is my first post),
I am trying to figure a way of cropping a polygon out of an image. I have been reading other similar code. It seems that most code is based around the following …
