Search found 7 matches

by silversun
2013-11-13T14:24:45-07:00
Forum: Users
Topic: Convert all colors except black to transparent
Replies: 3
Views: 4434

Re: Convert all colors except black to transparent

Thank you both!!!

i combined the suggestions and got exactly what I needed!!!!
by silversun
2013-11-13T11:23:09-07:00
Forum: Users
Topic: Convert all colors except black to transparent
Replies: 3
Views: 4434

Convert all colors except black to transparent

I have an app where users are uploading an image of their signature. As would be expected it is not always black on pure white. The background can become grainy and off color depending on the camera/scanner and other factors Is there a way to tell imagick to make all colors except black transparent ...
by silversun
2013-09-13T13:19:34-07:00
Forum: Users
Topic: convert a series of png's to one pdf -to many?
Replies: 9
Views: 13537

Re: convert a series of png's to one pdf -to many?

i do not have shell access :(
by silversun
2013-09-13T10:43:49-07:00
Forum: Users
Topic: convert a series of png's to one pdf -to many?
Replies: 9
Views: 13537

Re: convert a series of png's to one pdf -to many?

if i try that on the (007.png)check.png it returns empty. The $out array is empty and the $ret1 is set (error). The new007.jpg is not created. i tested on a standard page and it returns a lot of info. exec('convert 5231c415edcc9/007.png new007.jpg'); exec('identify -verbose 5231c415edcc9/007.png ...
by silversun
2013-09-13T10:28:19-07:00
Forum: Users
Topic: convert a series of png's to one pdf -to many?
Replies: 9
Views: 13537

Re: convert a series of png's to one pdf -to many?

Thanks Guys!! I found the error. one of the images is a small picture of a check. So it is not a full page with white space like the rest of the png's which are copies of an original pdf doc. If i remove this image from the list everything works. try to convert the check image to pdf on its own and ...
by silversun
2013-09-13T09:22:57-07:00
Forum: Users
Topic: uncaught exception error?
Replies: 0
Views: 4510

uncaught exception error?

When i load up an Imagick object with too many images I get an uncaught exception: $pdf = new Imagick($pages); $pdf->setImageFormat('pdf'); $pdf->writeImages($temp_path.'/offer2.pdf', true); If the $pages array has less than 6 images which total less than 1.3M then this works fine OTHERWISE I GET ...
by silversun
2013-09-13T07:10:39-07:00
Forum: Users
Topic: convert a series of png's to one pdf -to many?
Replies: 9
Views: 13537

convert a series of png's to one pdf -to many?

I am annotating a series of png's - 10 images right now - with text and then I am converting them to a single pdf. the annotation which works fine produces a png with an average size of 200k: convert 001.png -pointsize 42 -gravity NorthWest -annotate +2176.92307692+272.769230769 '13' -annotate +1469 ...