Search found 5 matches

by mrbushido
2017-04-15T20:28:03-07:00
Forum: Users
Topic: Error Code 11
Replies: 8
Views: 5368

Re: Error Code 11

The path is definitely correct and it hasn't changed since it was working

I tried the quotes and adding spaces which both seems to break the code so it just writes the byte string to the file

Not sure if there is any alternatives to using "inline:" ?
by mrbushido
2017-04-14T14:39:48-07:00
Forum: Users
Topic: Error Code 11
Replies: 8
Views: 5368

Re: Error Code 11

Thanks for the help fmw42, Update: Each txt file looks like so : data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA4QAAASNCAYA etc. The command also fails when just converting one base64 bit string txt file into a pdf I ran a strace, I'm receiving the following: stat("inline:/home3/company/public_html ...
by mrbushido
2017-04-14T12:56:51-07:00
Forum: Users
Topic: Error Code 11
Replies: 8
Views: 5368

Error Code 11

Hello, We recently (out of nowhere) started receiving error code 11's when the following ImageMagick command is run using PHP exec: /usr/bin/convert inline:/home3/company/public_html/wp-content/uploads/blob1.txt inline:/home3/company/public_html/wp-content/uploads/blob2.txt -quality 100 -density 120 ...
by mrbushido
2017-02-02T20:07:32-07:00
Forum: Users
Topic: Convert multiple base64 images to multi page pdf
Replies: 2
Views: 4149

Re: Convert multiple base64 images to multi page pdf

Thanks for this, that almost worked but it just put the text straight in the pdf, I then added inline: and it put the images properly in the pdf on separate pages, the final command was:

/usr/bin/convert inline:blob0.txt inline:blob1.txt -quality 100 -density 120 complete.pdf
by mrbushido
2017-02-01T21:28:06-07:00
Forum: Users
Topic: Convert multiple base64 images to multi page pdf
Replies: 2
Views: 4149

Convert multiple base64 images to multi page pdf

Hi, I have multiple base 64 image strings in a txt file. I can combine the strings into one base64 string and convert them to a pdf but it does not write each base64 image to a different pdf page, it just writes them to one really long page. Also if I try multiple base64 strings, the conversion does ...