PHP:How to save multi page TIFF image to SQL Server 2008?

IMagick is a native PHP extension to create and modify images using the ImageMagick API. ImageMagick Studio LLC did not write nor does it maintain the IMagick extension, however, IMagick users are welcome to discuss the extension here.
Post Reply
emahajan
Posts: 1
Joined: 2014-05-14T05:05:03-07:00
Authentication code: 6789

PHP:How to save multi page TIFF image to SQL Server 2008?

Post by emahajan »

Hello Team,

I need to save multi page tiff image to SQL server 2008 database and need to retrieve same multi page tiff image using PHP.
Is there any solution to this issue using Imagemagick ?

Feedback appreciated!

Thanks
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: PHP:How to save multi page TIFF image to SQL Server 200

Post by fmw42 »

IM can read or write multipage tiffs. So any issue will be on the interchange between PHP and SQL, which is outside the scope of this forum. If there is some failure with Imagemagick or Imagick, then please clarify.
ciskomi
Posts: 2
Joined: 2014-09-23T09:33:55-07:00
Authentication code: 6789

Re: PHP:How to save multi page TIFF image to SQL Server 200

Post by ciskomi »

with PHP, did you try the command:

Code: Select all

$object->getImagesBlob();
I use it to create a multipages PDF file
Post Reply