Search found 28 matches

by Xandros
2011-04-08T01:38:21-07:00
Forum: Windows COM+ & Visual Basic
Topic: Syntax errors / Exception handling with COM+ interface
Replies: 2
Views: 14758

Re: Syntax errors / Exception handling with COM+ interface

I finally decided to write a wrapper for MagickWand dll so I can juste do LoadLibrary and then call its functions...
by Xandros
2011-04-08T01:37:25-07:00
Forum: Users
Topic: Broken PDF files : inconsistent error message ?
Replies: 6
Views: 15893

Re: Broken PDF files : inconsistent error message ?

I tried that already, with different GS versions.

If you download the provided file and perform the same command, don't you have the same error message as me ?
by Xandros
2011-04-07T02:58:18-07:00
Forum: Users
Topic: Broken PDF files : inconsistent error message ?
Replies: 6
Views: 15893

Re: Broken PDF files : inconsistent error message ?

Hi. Any chance to get an answer on this issue please ? with cherry on top ?
by Xandros
2011-03-28T02:13:00-07:00
Forum: Users
Topic: Broken PDF files : inconsistent error message ?
Replies: 6
Views: 15893

Re: Broken PDF files : inconsistent error message ?

Any help pretty please ? :)
by Xandros
2011-03-25T08:17:52-07:00
Forum: Users
Topic: Broken PDF files : inconsistent error message ?
Replies: 6
Views: 15893

Broken PDF files : inconsistent error message ?

Hello ! I have searched for an answer to my issue on the forum but no avail, so here goes : When loading a "broken" / malformed PDF file and trying to convert its first page to an image, I get the following (very common) error message : Postscript delegate failed `blah.pdf': No such file o...
by Xandros
2010-02-11T05:58:26-07:00
Forum: Developers
Topic: PDF BLOB to image BLOB
Replies: 3
Views: 9254

Re: PDF BLOB to image BLOB

Hi

any chance this thread gets any answer at all please ?

Thanks
by Xandros
2010-01-15T02:19:40-07:00
Forum: Developers
Topic: PDF BLOB to image BLOB
Replies: 3
Views: 9254

Re: PDF BLOB to image BLOB

magick ? could you please give me a hand with this issue (already previously mentioned on the forum) ?

Thanks a lot
by Xandros
2010-01-14T05:55:36-07:00
Forum: MagickWand for PHP
Topic: can't read PDF from BLOB and display /export it as PNG image
Replies: 1
Views: 14579

Re: can't read PDF from BLOB and display /export it as PNG image

magick ?

any chance to get a solution for this PDF BLOB issue please ? I posted a question in "Developers" explaining what I was doing, and apparently this issue has already 2 past unanswered threads with the same problem :(

Please give us a hand :)

Kind regards
by Xandros
2010-01-13T05:22:37-07:00
Forum: Developers
Topic: PDF BLOB to image BLOB
Replies: 3
Views: 9254

PDF BLOB to image BLOB

Hi ! I'm having issues when trying to convert a PDF blob to an image BLOB. What I do is : Create magick wand set wand format to 'PDF' set wand resolution to 72 x 72 read image from blob thumbnailimage set image format to 'JPG' write image to BLOB Resulting blob is 0 bytes long. If I export the same ...
by Xandros
2009-10-15T04:49:24-07:00
Forum: Developers
Topic: Registering an exception handler with MagickWand
Replies: 2
Views: 6706

Registering an exception handler with MagickWand

Hi, it would be wonderful to have a MagickWand method that could be called just after MagickWandGenesis in order to define an exception handler function in the caller code. Right now it's quite painful to have to check the return value of each MagickWand method to see if an exception is to be handle...
by Xandros
2009-10-11T19:44:55-07:00
Forum: Bugs
Topic: setting format with magickwand
Replies: 0
Views: 3443

setting format with magickwand

steps to reproduce : read tiff fax file with MagickReadFile (see my other thread from yesterday to get download link of sample file) MagickResampleImage 72, 72 (to fix pixel aspect ratio) MagickStripImage MagickResizeImage MagickSetImageFormat to 'PNG24' MagickWriteFile 'result.png' result png file ...
by Xandros
2009-10-11T17:11:29-07:00
Forum: MagickWand
Topic: non square pixel aspect ratio in tiff files
Replies: 8
Views: 29878

Re: non square pixel aspect ratio in tiff files

oh well, the only thing that produces desired result is to retrieve the resolution of the image after reading it in, in case it is a tiff file. if the x and y resolution values are different, use MagickImageResample and set x and y to the same (max of the two) value. resizes and other following oper...
by Xandros
2009-10-11T10:10:15-07:00
Forum: MagickWand
Topic: non square pixel aspect ratio in tiff files
Replies: 8
Views: 29878

Re: non square pixel aspect ratio in tiff files

all ok for PDF, but convert 00079399627972.tif -density 100x200 -resize 300x300 png24:image.png convert 00079399627972.tif -density 200x100 -resize 300x300 png24:image.png convert -density 100x200 00079399627972.tif -resize 300x300 png24:image.png convert -density 200x100 00079399627972.tif -resize ...
by Xandros
2009-10-11T09:05:18-07:00
Forum: MagickWand
Topic: non square pixel aspect ratio in tiff files
Replies: 8
Views: 29878

Re: non square pixel aspect ratio in tiff files

ok found that there are tiff:XResolution / tiff:YResolution properties that can be checked for the fax issue. oh ok it's a scaled down pdf right .... didnt figure. guess that's because I forgot to call MagickImageSetFormat before calling getblob right ? so in fact when calling getblob after converti...