The gd2 tag has no wiki summary.
13
votes
7answers
6k views
Convert SVG image to PNG with PHP
I'm working on a web project that involves a dynamically generated map of the US coloring different states based on a set of data.
This SVG file gives me a good blank map of the US and is very easy ...
7
votes
3answers
497 views
How to stop GD2 from washing away the colors upon resizing images?
I have developed a photo sharing community site using CodeIgniter 1.7. Photos that are uploaded by members are automatically resized in a number of formats, for which I use the CodeIgniter Image ...
5
votes
2answers
1k views
PHP GD2: how to maintain alpha channel transparency and correct gamma
I was intrigued by this discussion of image scaling and subsequently found out that the PHP code I'm using to create thumbnails from uploaded images suffers from the same problem. I decided to try the ...
4
votes
2answers
2k views
How to speed up image resizing in a CodeIgniter PHP application?
I have an application that allows users to upload images. The test case I use is a jpeg of 1.6MB with dimensions 3872 x 2592px. The upload script in the back-end will resize the uploaded image into 6 ...
3
votes
2answers
159 views
How to isolate only one colour on image with PHP?
Is it possible to leave (isolate) only one colour in image?
Currently I'm interested in green:005d00
2
votes
3answers
166 views
Does the GD2 extension come with PHP?
Does the GD2 extension come with PHP by default? If yes, since what version does it happen? Is it enabled by default?
thanks (:
2
votes
1answer
187 views
I can flip images horizontally/vertically, but I can't rotate them with the GD2 library
I am developing a feature to allow an image to be rotated in increments of 90 degrees or to be flipped horizontally or vertically. I have the code working just fine on my own computer, but when ...
2
votes
1answer
358 views
Enable GD support in PHP
I'm trying to install pixelpost on an Apache server on windows. The installer is failing because:
Pixelpost will not run if your PHP
installation is not compiled with the
GD graphics library.
...
2
votes
1answer
153 views
Dynamic Images Based on Text PHP
I'd like to generate a fancy font text image using GD.
I have found:
<?php
// Settings
$sText = 'This is just a test!'.@$_GET['t']; // Text of heading
$sFont = 'Bryant-Bold.ttf'; // Default font ...
2
votes
1answer
97 views
Are there any libraries (or using GD2 or Image Magick) to allow the upload and processing of EPS or Vector files?
I need to allow for scaling a user uploaded logo to different sizes for different formats, are there any libraries (included or extra) that allow for the procesing of EPS files or high res artwork for ...
2
votes
1answer
863 views
How to compress images in CodeIgniter, yet do not change their dimensions?
I have a site where users can upload images. I process these images directly and resize them into 5 additional formats using the CodeIgniter Image Manipulation class. I do this quite efficiently as ...
1
vote
4answers
249 views
Magento resize() image quality
I have a client who is seriously unhappy with the way their product thumbnails are rendering on Magento.
The dodgy appearance is noticeable on two accounts:
there is a dirty white background which ...
1
vote
3answers
252 views
Save image from one format to another with php gd2
I have a database with a column filled with image binaries data. After I made some research I figuried out how to detect in which image format is the data. Lets say in of the records in my images ...
1
vote
0answers
207 views
Merging Transparent PNGs results in inconsistent black dots
I'm merging some transparent PNGs in PHP with GD. I have a bunch of numbers done up on a transparent background that I put together onto a final image. Running the script on one server with the ...
1
vote
1answer
97 views
Getting GD2 to work on Windows 2000 SP4 (PHP 5.1.6)
I have tried everything.. GD will not enable! Essentially, I have
extension_dir="C:\PHP\ext"
extension=php_gd2.dll
I've added c:\php\ext and c:\php to my windows path variable. I copied php_gd2.dll ...
1
vote
1answer
348 views
CodeIgniter/PHP/GD2 Image Manipulation is playing up
I have a website going that takes a user's uploaded image, and makes three copies - a 'full' copy to print with (downsized to 1500x1125), a 'web' copy to display online (not coded yet), and finally a ...
1
vote
3answers
378 views
Letter placement error with GD2, TTF and PHP
Some time ago I made a script that takes some text and returns it as an image, and worked flawlessly. But I'm not sure since when a weird bug started to happen. The letters that have a (my apologies ...
0
votes
1answer
14 views
imagecopyresampled in php - premultiplied alpha issue
I have an issue with imagecopyresampled for buffers that use alpha values. apparently the algorithm premultiplies the pixels alpha values before filtering, this results in black borders arround ...
0
votes
1answer
37 views
How can i remove black background color when creating thumbnail
When iam creating thumbnail in codeigniter i get an image with black background color.
Why was it happen?
This is the code in controller:
$this->load->library('image_lib');
...
0
votes
1answer
65 views
image cropping with codeigniter no GD library - GD2 is intalled
I am working on media library for a website at the moment, and one of the features is that user can create a cropped version of an image that they upload.
My problem however is this, when I try and ...
0
votes
1answer
57 views
CodeIgniter 2 image_lib->resize() error - Renders blank page and does not return an error message
I'm trying to do something very simple but I can't see to make it work. For what it's worth, I'm currently testing on my MAMP dev machine, but get the same results from staging server (GoDaddy ...
0
votes
0answers
36 views
What measurement does GD2 use for imagettftext X & Y?
I'm currently working on a project that allows a user to pick an image, edit the text in it (using jQuery jEditable on a position:absolute formatted element to make it 'seem' like its the image ...
0
votes
0answers
25 views
PHP5 GD2 Vibrance and Saturation like Photoshop
is there any way to use Vibrance and Saturation effect with php5 gd2 ?
I just want to use little more pale colors, certainly not want to grayscale.
http://i.stack.imgur.com/y1633.png
0
votes
2answers
179 views
Pyrocms front end controller - can't output image to the browser
here is the code code below
class Home extends Public_Controller
{
/**
* Constructor method
*`enter code here`
* @author PyroCMS Dev Team
* @access public
* @return void
...
0
votes
3answers
234 views
How to allow upload transparent gif or png with php
I have this function below to allow me to resize my uploaded image,
function resize_image($image,$width,$height,$scale)
{
list($imagewidth, $imageheight, $imageType) = getimagesize($image);
...
0
votes
1answer
316 views
what is the fastest way to concatenate two images in php?
i need to concatenate images in php (two or more), both vertically and horizontally. What's the fastest way to do that?
obs: i don't want to use non-native libraries
another doubts. will the ...
0
votes
1answer
425 views
PHP: imagecreatefromstring
I have a file upload class which returns an image resize object if the file upload is believed to be an image. The construct of the image resize class starts with this:
$this->resource = ...
0
votes
2answers
349 views
image_lib in CodeIgniter not working… code just stops… no error, nothing
For the life of me, I can't figure out why image_lib (the image manipulation library) in CodeIgniter isn't working. I have it working perfectly fine on my local machine, so I know the code is right. ...
0
votes
2answers
342 views
Converting a png to jpg with GD2.. transparency problem
I have an image.png with white background and some trasparceny over it.
I tried this to convert the image into jpg:
$data = file_get_contents('image.png');
$resource = imagecreatefromstring($data);
...
0
votes
1answer
140 views
imagecopyresampled in php -> destination file
i'm using jCrop and CodeIgniter, trying to make an image uploader.
So i have my image folder and inside a temp folder.
I make the upload to my temp folder and then display the uploaded image with the ...
0
votes
1answer
62 views
gallery file upload problem php
I have this script:
if(($_POST['number2'] && !$_POST['button_add']) || ($_POST['number2'] && !$_POST['button_add_gal'])) { $num=$_POST['number2'];
for($p=0; $p<$num; ...
0
votes
1answer
105 views
php gd2 thumbnail creator script problem
I have this script:
function createThumb($source, $thumb_width=100)
{
$fl = dirname($source).'<br>';
$new_name = 'thumb_'.basename($source);
$img = ...
0
votes
2answers
661 views
ImageMagick or GD Library for image resizing and thumbnail creation?
I had been using the image resize class written by someone else to resize images or to create the thumbnails, here is the link to the class I had been using.
...
0
votes
1answer
169 views
Resizing a image with PHP and GD2. I'm getting the image and a black background
I'm creating a dynamic class to generate various images.
ImagesUtils.php
<?php
class ImagesUtils
{
private $nombre_imagen = null;
private $imagen = null;
private $extension = null;
...
0
votes
1answer
106 views
PHP / JS image creation
I'm wondering if this is possible: user uploads a picture which is then presented to him in the browser. The image is placed inside a div that has predefined image as background. User can drag and ...
0
votes
2answers
288 views
what is gd image and gd2 images? what are the difference between them?
what is gd image and gd2 images? what are the difference between them?
0
votes
2answers
56 views
Improving Performance on this Image Creation function
I am making use of GD2 and the image functions to take in a string and then convert that into an image using different fonts at different sizes. The function I use is below.
Currently, its pretty ...
0
votes
1answer
54 views
dynamically generating images in PHP sometimes isn't working
I have a page that needs to load several dynamically generated images. Everything works fine 90% of the time, but sometimes some of the images are not generated (I just get the missing image icon ...
0
votes
2answers
529 views
How do i resize image file to optional sizes
I have image upload form, user attaches aimage file, and selects image size to resize the uploaded image file(200kb, 500kb, 1mb, 5mb, Original). Then my script needs to resize image file size based on ...
0
votes
2answers
1k views
Errors compiling PHP with GD2 and Freetype on Mac Leopard 10.5.6
I'm compiling PHP5.2.9 on Mac OS X 10.5.6. Need some help to figure this out.
I have PHP compiling and working with a basic config, and now I'm trying to compile with GD2. The problem I'm running ...
-1
votes
3answers
2k views
Displaying images using PHP not working
I'm trying to display an image using a PHP script. Basically so the php script is passed on the full path to the image, and it then displays that image in the browser. I've checked to make sure the ...