Convert image to CIP format

Magick.NET is an object-oriented C# interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning Magick.NET
Post Reply
PDesai
Posts: 2
Joined: 2018-04-10T08:57:01-07:00
Authentication code: 1152

Convert image to CIP format

Post by PDesai »

Hello,

I am trying to convert a bitmap to CIP image. I get the following exception.

NumSamplesPerImage (width) = 244 Height = 240 Exception: ImageMagick.MagickMissingDelegateErrorException: no decode delegate for this image format `CIP' @ error/constitute.c/ReadImage/509
at ImageMagick.NativeInstance.CheckException(IntPtr exception, IntPtr result)
at ImageMagick.MagickImage.NativeMagickImage.ReadFile(MagickSettings settings)
at ImageMagick.MagickImage.Read(String fileName, MagickReadSettings readSettings, Boolean ping)
at ImageMagick.MagickImage..ctor(String fileName, MagickReadSettings readSettings)

If i convert the image to png, it works fine and i am able to view the image.

I wanted to know if CIP is one of the supported format for conversion
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Convert image to CIP format

Post by snibgo »

"magick -list format" shows you a list of supported formats. CIP is not listed.
snibgo's IM pages: im.snibgo.com
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Convert image to CIP format

Post by fmw42 »

What is CIP image format? Is there a reference? All I can find is a reference to an ImageJ scripting tool at https://imagej.net/CIP.
PDesai
Posts: 2
Joined: 2018-04-10T08:57:01-07:00
Authentication code: 1152

Re: Convert image to CIP format

Post by PDesai »

snibgo wrote: 2018-04-10T11:54:46-07:00 "magick -list format" shows you a list of supported formats. CIP is not listed.
CIP is listed as one of the supported format..
CIP is Cisco IP phone image
User avatar
dlemstra
Posts: 1570
Joined: 2013-05-04T15:28:54-07:00
Authentication code: 6789
Contact:

Re: Convert image to CIP format

Post by dlemstra »

Reading CIP is not supported. You can however write to the CIP format.
.NET + ImageMagick = Magick.NET https://github.com/dlemstra/Magick.NET, @MagickNET, Donate
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Convert image to CIP format

Post by fmw42 »

CIP is not listed at https://www.imagemagick.org/script/formats.php at all, not even for writing!
Post Reply