Tagged Questions
11
votes
3answers
651 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 ...
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 ...
6
votes
4answers
230 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 ...
2
votes
3answers
204 views
thumbnail generation / image resize
What PHP library would you recommend for thumbnails generation?
I need it to work with GD (not only Imagick), be able to stretch images or keep aspect ratio when only one dimension given, and - most ...
2
votes
2answers
51 views
get lowermost left corner of an iamge and write text there
I'm trying to get the lowermost left (x,y) coordinates of an image.
I'm doing that to be able to write a text in different-sized picture, in the left lowermost corner. Below is the code. Could you ...
1
vote
1answer
545 views
replace solid color in transparent PNG with imagick or GD
I just have a transparent PNG with star graphic in a solid color, let's say #FF0000;
What can I do to replace or convert to any hex color my user chooses?
I looked on PHP but after trying lot's of ...
1
vote
1answer
36 views
creating a box with an image
I'd like to take an image and turn the corners over to make a box (like a canvas painting)
i have gd library, imagemagick installed on the server and imagick php extension installed.
is it possible? ...
1
vote
1answer
854 views
How to change the background black color to transparent?
I am rotating an image using Image Magick (as PHP-GD scales down image).
But it leaves the background to be black. Also, the image doesn't look good at all(but better than PHP-GD).
Any suggestions?
...
0
votes
0answers
21 views
Ways to create a montage of images in PHP from external servers
I need to create a montage image of up to 18 images and have looked into Imagick Montage and it does look promising but all images are stored on a separate server. I am also unable to use system(); to ...
0
votes
1answer
23 views
Outputting an image from the same PHP file which also receives & sends JSON
Ok, I'm hoping I can explain my situation rather than pasting lines and lines of code.
Currently, JSON sends positional info to my PHP file which in turn uses this data to generate an image, saves it ...
0
votes
2answers
199 views
Pass GD image object to Imagick?
I'm generating a barcode with PEAR::Image_Barcode which uses GD, but I need to write that barcode onto a section of a PDF and PHP/Imagick seems to be the easiest way to do that, is there any way to ...
0
votes
1answer
139 views
PHP, GD, Image Manipulation
Image Thumbnails and Etc.
Connection to database for the filename and details
The table contains all the real file information. Mimetype, extensions and etc.
The physical images are located on a ...
0
votes
3answers
2k views
0
votes
1answer
686 views
Have GD get image from binary string
Right now, I have a database that stores images in a MySQL BLOB field. I setup a script that selects and displays the images based on an ID in the URL, and I also made it so if you append ...