Search found 14 matches

by boognish100
2017-11-13T23:25:59-07:00
Forum: MagickWand for PHP
Topic: PDF joining limited to 14 files... convert: Postscript delegate failed
Replies: 7
Views: 62955

Re: PDF joining limited to 14 files... convert: Postscript delegate failed

function show_Names($e) { return "/home/me/public_html/temp/".$e['pdffilename'].".pdf "; } $fileArray = array_map("show_Names", $_POST['item']); $datadir = "/home/me/public_html/temp/"; $outputName = $datadir."Latest.pdf"; $cmd = "gs -q -dNOPAU...
by boognish100
2017-09-23T03:37:02-07:00
Forum: MagickWand for PHP
Topic: PDF joining limited to 14 files... convert: Postscript delegate failed
Replies: 7
Views: 62955

Re: PDF joining limited to 14 files... convert: Postscript delegate failed

Good to know, will update both, thanks!

Cheers for the link will take a look
by boognish100
2017-09-22T20:36:48-07:00
Forum: MagickWand for PHP
Topic: PDF joining limited to 14 files... convert: Postscript delegate failed
Replies: 7
Views: 62955

Re: PDF joining limited to 14 files... convert: Postscript delegate failed

Now have new code using only GS, works great, no limit issue... function show_Names($e) { return "/home/me/public_html/temp/".$e['pdffilename'].".pdf "; } $fileArray = array_map("show_Names", $_POST['item']); $datadir = "/home/me/public_html/temp/"; $outputNam...
by boognish100
2017-09-22T20:02:35-07:00
Forum: MagickWand for PHP
Topic: PDF joining limited to 14 files... convert: Postscript delegate failed
Replies: 7
Views: 62955

Re: PDF joining limited to 14 files... convert: Postscript delegate failed

Ghostscript is 8.70
IM is 6.7.2.7-6
Each PDF is give or take 170KB
Pixels w * h is 2433 * 2904, 300dpi

How do I find/edit policy.xml amd determine if it has enough resources?

Thanks!
by boognish100
2017-09-22T18:37:50-07:00
Forum: MagickWand for PHP
Topic: PDF joining limited to 14 files... convert: Postscript delegate failed
Replies: 7
Views: 62955

PDF joining limited to 14 files... convert: Postscript delegate failed

I have a PHP script which uses ImageMagick to join PDF's, this work well up to a point. function show_Names($e) { return "/home/me/public_html/temp/".$e['pdffilename'].".pdf "; } $c = array_map("show_Names", $_POST['item']); exec("convert -density 300 ".implod...
by boognish100
2016-10-27T00:58:57-07:00
Forum: MagickWand for PHP
Topic: RGB 0,0,0 Black to CMYK 'Rich Black' 75,68,67,90
Replies: 4
Views: 64186

Re: RGB 0,0,0 Black to CMYK 'Rich Black' 75,68,67,90

Bingo ... That works!! Thanks so much again for your help snibgo :)
by boognish100
2016-10-27T00:31:55-07:00
Forum: MagickWand for PHP
Topic: RGB 0,0,0 Black to CMYK 'Rich Black' 75,68,67,90
Replies: 4
Views: 64186

Re: RGB 0,0,0 Black to CMYK 'Rich Black' 75,68,67,90

I checked the cmyk profile in photoshop colour settings, and downloaded it from adobe (USWebCoatedSWOP.icc) and placed in the same server folder as the script. Though the pdf comes out as rgb not cmyk. What am I doing incorrectly? exec("convert image.png -profile USWebCoatedSWOP.icc -density 40...
by boognish100
2016-10-26T23:48:39-07:00
Forum: MagickWand for PHP
Topic: RGB 0,0,0 Black to CMYK 'Rich Black' 75,68,67,90
Replies: 4
Views: 64186

RGB 0,0,0 Black to CMYK 'Rich Black' 75,68,67,90

Hi, In Photoshop, RGB black (0,0,0) converts as CMYK Rich Black 75,68,67,90. However when I convert a RGB image containing 0,0,0 Black with Imagemagick it converts it to CMYK 0,0,0,100 (which prints as a dull, dark grey rather than black). In photoshop, CMYK 0,0,0,100 converts to RGB 35,31,32. curre...
by boognish100
2016-09-29T05:19:02-07:00
Forum: MagickWand for PHP
Topic: CMYK + white spot color... how?
Replies: 8
Views: 70039

Re: CMYK + white spot color... how?

Hi snibgo, sorry for not replying sooner. First, I just wanted to say thank you very much for taking the time to help me! I came up with a solution that bypasses the need for any special image manipulation. By setting the driver to 'underprint', everything prints correctly except the area's of the i...
by boognish100
2016-09-20T05:09:11-07:00
Forum: MagickWand for PHP
Topic: CMYK + white spot color... how?
Replies: 8
Views: 70039

Re: CMYK + white spot color... how?

snibgo wrote:If you can get a PDF file that contains raster images, with spot white, that would help.
Hi there, got the file now, you can check out a raster version of the pdf with white spot colour here...
http://expirebox.com/download/4be93c89e ... 1e390.html
by boognish100
2016-09-19T04:19:39-07:00
Forum: MagickWand for PHP
Topic: CMYK + white spot color... how?
Replies: 8
Views: 70039

Re: CMYK + white spot color... how?

I've requested this, hopefully will have something shortly
by boognish100
2016-09-19T03:39:59-07:00
Forum: MagickWand for PHP
Topic: CMYK + white spot color... how?
Replies: 8
Views: 70039

Re: CMYK + white spot color... how?

Hi, sorry this took ages, this is the example pdf he sent with the white spot color ... http://expirebox.com/download/5d398ee43 ... 4b3f0.html
by boognish100
2016-09-14T20:16:02-07:00
Forum: MagickWand for PHP
Topic: CMYK + white spot color... how?
Replies: 8
Views: 70039

Re: CMYK + white spot color... how?

I can understand the problem, though I don't know the solution. Can you link to a PDF that contains a white spot colour? It may contain multiple images in the same location on the page, eg one image for CMYK plus one image per spot colour. I don't think IM can do that. What version of IM are you us...
by boognish100
2016-09-14T01:17:01-07:00
Forum: MagickWand for PHP
Topic: CMYK + white spot color... how?
Replies: 8
Views: 70039

CMYK + white spot color... how?

I have imagemagick up and running on my server now. I have a png image generated from html, I installed magemagick to convert the png to a cmyk pdf. This is the command line I currently use... exec("convert -colorspace cmyk -density 300 -resize 1311x6156 myimage.png output1.pdf 2>&1", ...