Home | History | Annotate | Download | only in coders

Lines Matching refs:exception

52 #include "MagickCore/exception.h"
53 #include "MagickCore/exception-private.h"
1625 % Image *ReadDDSImage(const ImageInfo *image_info,ExceptionInfo *exception)
1631 % o exception: return any errors or warnings in this structure.
1635 static Image *ReadDDSImage(const ImageInfo *image_info,ExceptionInfo *exception)
1669 assert(exception != (ExceptionInfo *) NULL);
1670 assert(exception->signature == MagickCoreSignature);
1671 image=AcquireImage(image_info,exception);
1672 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
1786 AcquireNextImage(image_info,image,exception);
1804 status=SetImageExtent(image,image->columns,image->rows,exception);
1807 if ((decoder)(image, &dds_info, exception) != MagickTrue)
1868 ExceptionInfo *exception)
1900 MagickMin(4, dds_info->height - y),exception);
1932 if (SyncAuthenticPixels(image,exception) == MagickFalse)
1937 return(SkipDXTMipmaps(image,dds_info,8,exception));
1941 ExceptionInfo *exception)
1976 MagickMin(4, dds_info->height - y),exception);
2016 if (SyncAuthenticPixels(image,exception) == MagickFalse)
2021 return(SkipDXTMipmaps(image,dds_info,16,exception));
2025 ExceptionInfo *exception)
2064 MagickMin(4, dds_info->height - y),exception);
2115 if (SyncAuthenticPixels(image,exception) == MagickFalse)
2120 return(SkipDXTMipmaps(image,dds_info,16,exception));
2124 ExceptionInfo *exception)
2136 (void) SetImageType(image,GrayscaleType,exception);
2144 q = QueueAuthenticPixels(image, 0, y, dds_info->width, 1,exception);
2177 if (SyncAuthenticPixels(image,exception) == MagickFalse)
2181 return(SkipRGBMipmaps(image,dds_info,3,exception));
2185 ExceptionInfo *exception)
2206 (void) SetImageType(image,GrayscaleAlphaType,exception);
2217 q = QueueAuthenticPixels(image, 0, y, dds_info->width, 1,exception);
2269 if (SyncAuthenticPixels(image,exception) == MagickFalse)
2273 return(SkipRGBMipmaps(image,dds_info,4,exception));
2345 int texel_size,ExceptionInfo *exception)
2362 ThrowFileException(exception,CorruptImageWarning,"UnexpectedEndOfFile",
2392 int pixel_size,ExceptionInfo *exception)
2409 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
2582 Image *image, ExceptionInfo *exception)
2606 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
2609 (void) TransformImageColorspace(image,sRGBColorspace,exception);
2671 exception);
2674 clusterFit,weightByAlpha,exception) == MagickFalse)
2782 ExceptionInfo *exception)
2829 p=GetVirtualPixels(image,x,y,columns,rows,exception);
2911 const MagickBooleanType weightByAlpha, ExceptionInfo *exception)
2914 WriteFourCC(image,compression,clusterFit,weightByAlpha,exception);
2916 WriteUncompressed(image,exception);
2988 ExceptionInfo *exception)
3006 exception);
3015 clusterFit,exception);
3055 static void WriteUncompressed(Image *image, ExceptionInfo *exception)
3068 p=GetVirtualPixels(image,0,y,image->columns,1,exception);