Tagged Questions

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 ...
3
votes
2answers
947 views

Get/set DPI with PHP GD/Imagick?

I'm building a Web application that will handle image files that will ultimately be printed, large format. As part of this, I need to get (i.e. read) and set (i.e. change) the DPI of an image file. ...
1
vote
2answers
97 views

Recommendation for compress jpg files with image magick

Hello i want to compress a JPG image file with Image Magick but cant get too much difference in size, by default the output size is bigger than the input, dont know why, but after adding some +profile ...
0
votes
1answer
52 views

How to use imagick's writeImage() function?

This works if I keep the script in the same directory as the image being manipulated. And the resultant image "foo.jpg" is also generated in the same location. <?php $im = new ...
0
votes
0answers
103 views

facebook image manipulation

I'm looking to save some time in making a facebook app that adds a watermark to profile pictures of users, given the authority. Has anyone done something like this in using php?
0
votes
2answers
1k views

Imagemagick thumbnail generation with php - using -crop

Long ago I created a small library for resizing images using imagemagick through system(...) because I did not feel that the build-in imagemagick functions for PHP were sufficient. However, recently ...