Search found 28 matches
- 2011-04-08T01:38:21-07:00
- Forum: Windows COM+ & Visual Basic
- Topic: Syntax errors / Exception handling with COM+ interface
- Replies: 2
- Views: 16376
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...
- 2011-04-08T01:37:25-07:00
- Forum: Users
- Topic: Broken PDF files : inconsistent error message ?
- Replies: 6
- Views: 16529
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 ?
If you download the provided file and perform the same command, don't you have the same error message as me ?
- 2011-04-07T02:58:18-07:00
- Forum: Users
- Topic: Broken PDF files : inconsistent error message ?
- Replies: 6
- Views: 16529
Re: Broken PDF files : inconsistent error message ?
Hi. Any chance to get an answer on this issue please ? with cherry on top ?
- 2011-03-28T02:13:00-07:00
- Forum: Users
- Topic: Broken PDF files : inconsistent error message ?
- Replies: 6
- Views: 16529
Re: Broken PDF files : inconsistent error message ?
Any help pretty please ?
- 2011-03-25T08:17:52-07:00
- Forum: Users
- Topic: Broken PDF files : inconsistent error message ?
- Replies: 6
- Views: 16529
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 or ...
- 2010-02-11T05:58:26-07:00
- Forum: Developers
- Topic: PDF BLOB to image BLOB
- Replies: 3
- Views: 9657
Re: PDF BLOB to image BLOB
Hi
any chance this thread gets any answer at all please ?
Thanks
any chance this thread gets any answer at all please ?
Thanks
- 2010-01-15T02:19:40-07:00
- Forum: Developers
- Topic: PDF BLOB to image BLOB
- Replies: 3
- Views: 9657
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
Thanks a lot
- 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: 15485
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
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
- 2010-01-13T05:22:37-07:00
- Forum: Developers
- Topic: PDF BLOB to image BLOB
- Replies: 3
- Views: 9657
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 ...
- 2009-10-15T06:54:18-07:00
- Forum: Developers
- Topic: Registering an exception handler with MagickWand
- Replies: 2
- Views: 6973
Re: Registering an exception handler with MagickWand
Thanks, great !
- 2009-10-15T04:49:24-07:00
- Forum: Developers
- Topic: Registering an exception handler with MagickWand
- Replies: 2
- Views: 6973
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 ...
- 2009-10-11T19:44:55-07:00
- Forum: Bugs
- Topic: setting format with magickwand
- Replies: 0
- Views: 3568
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 ...
- 2009-10-11T17:11:29-07:00
- Forum: MagickWand
- Topic: non square pixel aspect ratio in tiff files
- Replies: 8
- Views: 30993
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 ...
- 2009-10-11T10:10:15-07:00
- Forum: MagickWand
- Topic: non square pixel aspect ratio in tiff files
- Replies: 8
- Views: 30993
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 ...
- 2009-10-11T09:05:18-07:00
- Forum: MagickWand
- Topic: non square pixel aspect ratio in tiff files
- Replies: 8
- Views: 30993
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 ...