The gd2 tag has no wiki summary.
0
votes
1answer
31 views
Image Manipulation library will not create a thumbnail
I have created a library file that manages gallery functions, when a user uploads an image.
This code will not create a thumbnail - it tries to resize the original image - am i missing something ...
1
vote
3answers
39 views
How to blend images using Photoshop 'darker color' blend mode?
I need to display user-uploaded logos on a background-image. The background of the logo's should be transparent.
The problem is that most users have no knowledge of how to make their images ...
-1
votes
0answers
44 views
PHP GD: imagecreate or imagecreatetruecolor for gif image [closed]
I'm new to GD library and thank you for helping me with the following question:
If I only create a gif image, imagecreatetruecolor() and imagecreate(), which is better? Any advantage of ...
0
votes
1answer
35 views
GD2 - Copying two transparent images results in black background
This is blowing my mind. I want to merge 2 transparent PNGs.
One is a circle ($source) generated on the fly from a square image.
The second is a map marker ($marker) with a transparent circle to fit ...
0
votes
0answers
40 views
PHP GDlibrary can't display img [closed]
I've problem to use GD Library,
here the code :
<?
header ('Content-Type: image/png');
$im = @imagecreatetruecolor(120, 20)
or die('Cannot Initialize new GD image stream');
...
0
votes
2answers
71 views
PHP: How to set part of png file as transparent?
I have png file and I want to have some part of this image (rectangle) to be transparent.
forexample something like this:
pseudocode:
<?php
$path = 'c:\img.png';
...
0
votes
1answer
272 views
Multiple Upload with Grocery Crud
I'm working with grocery crud for some operations on the backend, and I need to upload 5 pictures (3 of them with the same width and height and the other 2 with diferents sizes) but, when I try to ...
0
votes
2answers
66 views
Calculating Crop Coordinates
I am trying to figure out how to calculate the cropping coordinates for the full size image from a much smaller image, lets say the full size image is 1775 x 2664, the image that the user sees on the ...
2
votes
2answers
325 views
PHP Imagick - convert image to greyscale (very bad result)
I was doing some image editing with PHP, since GD provides less functionalities, I switched to Imagick.
One of the processes is to greyscale images. Everything went fine (locally on Windows 7, ...
0
votes
1answer
54 views
imagecreatefromstring fails while successful in .NET
I have an image that is base64 encoded. Decoding this image through C# works like a charm with the following code:
byte[] imageBytes = Convert.FromBase64String(decodeImageForm.Data);
var ms = new ...
1
vote
1answer
65 views
PHP GD2 How to show in-fly generated image without modifying header?
I'm working at my own signature generator. How to show in-fly generated image without modifying header? I need to know it, because my site (based on WordPress) already sent headers, and I cannot ...
0
votes
0answers
113 views
Write multiline text on image
I managed to write some code from pieces. The code wrap the multiline text to fit the width, and align the text to right.
But sometimes for some width the image gets corrupt.
This is the code that ...
0
votes
0answers
22 views
GD2: Do powers of two matter for source images?
I am resizing jpg images with the GD2 library on the fly for a website.
Given the choice of source images being supplied 1000 pixels across or 1024 pixels across, will I get better results from the ...
1
vote
2answers
311 views
Magento resize with gd2 bad image
i have problems to obtain good thumb from some images, when the original images are striped or checked shirt.
With the magento's gd2 library resize() in Varien_Image_Adapter_Gd2 class (magento 1.5 ...
0
votes
0answers
131 views
Installing php_gd2.dll on IIS issue
I was trying to install php_gd2.dll extension into PHP but was unsuccessful.
When I open up php-cgi.exe, the error thrown was "PHP Warning: PHP Startup: Unable to load dynamic library './php_gd2.dll' ...
2
votes
1answer
163 views
php gd alternative for alpha channel?
For some reason alpha channel in php gd is limited to 0-127 range, while it's supposed to be 0-255 for rgba.
Now, if we create a color with alpha greater than 127 (eg, using imagecolorallocatealpha) ...
0
votes
0answers
38 views
Resizing of the images fails for some images in PHP
Working on the image resizing feature for my app.I am using uploadify to upload images and a class found in the web for resizing(a wrapper over GD2). The problem is that some pictures do not resize, ...
0
votes
0answers
58 views
GD2 lib imagettftext y-ordinate unit of measure
Can someone tell me what unit of measure imagettftext x and y ordinates use? Is it pixels or points? I am using the GD2 lib.
Thank you,
Todd
0
votes
0answers
114 views
WideImage write Text with border [closed]
The document of WideImage is hard to read.
I visit their exanple, and they say "Text with shadown" , but I see no shadow at all.
I want to know, can WideImage wwrite text on image with "border" ?
0
votes
1answer
255 views
file_put_contents give me a specific error
I am developing a project using CodeIgniter. When I try to download an image from remote server, I get the fallowing error:
ERROR:
Message: file_put_contents(): supplied resource is not a valid ...
0
votes
0answers
43 views
screen effect with gd2
Is it possible to insert watermark to another photo with screen effect (similar like in Photoshop) using PHP with gd2? I was looking for something like that in PHP manual and google, but I only found ...
0
votes
1answer
81 views
PHP Image Creation failing
I've made a script that creates an image using imagecreatetruecolour(). It then adds a letter to the image using the imagettftext() function. Some other changes are made and finally the white ...
1
vote
3answers
259 views
Is there a word wrap function for GD2 in php?
people.
I have slight problem with GD2 text on image. I have everything working and now i try to add text on image that can wrap within image.
For example i have image with width 200px and large ...
3
votes
5answers
1k views
PHP Merge jpeg on top of png with alpha transparency
I am trying to put a jpeg behind a png - where the png has alpha transparency.
The foreground image is here:
http://peugeot208.srv.good-morning.no/images/marker-shadow.png
The image behind is a ...
0
votes
1answer
461 views
How to write text on image onfly in php?
I want to make an image "onfly" with some text. Is it possible with php? I am trying with this one but no output is coming can anyone watch my code please?
function createCaptcha($string){
$image ...
0
votes
0answers
96 views
Carrierwave GD2 image manipuation
I use carrierwave and would like to have GD2 process the images (cropping / resizing). ImageMagick and RMagic are good functionality wise but are to resource heavy.
I have searched around but was not ...
0
votes
1answer
1k views
how handling image's mime type “application/octet-stream”?
I have a function to make thumbnail of a url image on fly!
I always pass to this functions images with type jpg, but the problem appears when I pass an image with ".jpg" extension. but when i try to ...
0
votes
1answer
206 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
567 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
1k 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
554 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
122 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 ...
4
votes
6answers
4k 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 ...
0
votes
2answers
564 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
...
1
vote
3answers
2k 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);
...
5
votes
3answers
2k 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 (:
1
vote
3answers
686 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
1answer
950 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 ...
12
votes
5answers
2k 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 ...
0
votes
1answer
1k 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
3answers
1k 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
756 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);
...
1
vote
0answers
324 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 ...
0
votes
1answer
276 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
81 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
204 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 = ...
2
votes
1answer
350 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 ...
36
votes
7answers
23k 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 ...
2
votes
1answer
2k 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.
...
1
vote
1answer
220 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 ...