- Modifications to compile ImageMagick
This commit is contained in:
parent
615ec83706
commit
83522c16c3
3442 changed files with 57 additions and 412926 deletions
308
ImageMagick/coders/mac.c
Normal file
308
ImageMagick/coders/mac.c
Normal file
|
@ -0,0 +1,308 @@
|
|||
/*
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% %
|
||||
% %
|
||||
% %
|
||||
% %
|
||||
% M M AAA CCCC %
|
||||
% MM MM A A C %
|
||||
% M M M AAAAA C %
|
||||
% M M A A C %
|
||||
% M M A A CCCC %
|
||||
% %
|
||||
% %
|
||||
% Read MacPaint Image Format %
|
||||
% %
|
||||
% Software Design %
|
||||
% John Cristy %
|
||||
% July 1992 %
|
||||
% %
|
||||
% %
|
||||
% Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization %
|
||||
% dedicated to making software imaging solutions freely available. %
|
||||
% %
|
||||
% You may not use this file except in compliance with the License. You may %
|
||||
% obtain a copy of the License at %
|
||||
% %
|
||||
% http://www.imagemagick.org/script/license.php %
|
||||
% %
|
||||
% Unless required by applicable law or agreed to in writing, software %
|
||||
% distributed under the License is distributed on an "AS IS" BASIS, %
|
||||
% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
|
||||
% See the License for the specific language governing permissions and %
|
||||
% limitations under the License. %
|
||||
% %
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
%
|
||||
*/
|
||||
|
||||
/*
|
||||
Include declarations.
|
||||
*/
|
||||
#include "magick/studio.h"
|
||||
#include "magick/blob.h"
|
||||
#include "magick/blob-private.h"
|
||||
#include "magick/cache.h"
|
||||
#include "magick/colormap.h"
|
||||
#include "magick/colorspace.h"
|
||||
#include "magick/exception.h"
|
||||
#include "magick/exception-private.h"
|
||||
#include "magick/image.h"
|
||||
#include "magick/image-private.h"
|
||||
#include "magick/list.h"
|
||||
#include "magick/magick.h"
|
||||
#include "magick/memory_.h"
|
||||
#include "magick/monitor.h"
|
||||
#include "magick/monitor-private.h"
|
||||
#include "magick/pixel-accessor.h"
|
||||
#include "magick/quantum-private.h"
|
||||
#include "magick/static.h"
|
||||
#include "magick/string_.h"
|
||||
#include "magick/module.h"
|
||||
|
||||
/*
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% %
|
||||
% %
|
||||
% %
|
||||
% R e a d M A C I m a g e %
|
||||
% %
|
||||
% %
|
||||
% %
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
% ReadMACImage() reads an MacPaint image file and returns it. It
|
||||
% allocates the memory necessary for the new Image structure and returns a
|
||||
% pointer to the new image.
|
||||
%
|
||||
% The format of the ReadMACImage method is:
|
||||
%
|
||||
% Image *ReadMACImage(const ImageInfo *image_info,ExceptionInfo *exception)
|
||||
%
|
||||
% A description of each parameter follows:
|
||||
%
|
||||
% o image_info: the image info.
|
||||
%
|
||||
% o exception: return any errors or warnings in this structure.
|
||||
%
|
||||
*/
|
||||
static Image *ReadMACImage(const ImageInfo *image_info,ExceptionInfo *exception)
|
||||
{
|
||||
Image
|
||||
*image;
|
||||
|
||||
MagickBooleanType
|
||||
status;
|
||||
|
||||
register IndexPacket
|
||||
*indexes;
|
||||
|
||||
register PixelPacket
|
||||
*q;
|
||||
|
||||
register ssize_t
|
||||
x;
|
||||
|
||||
register unsigned char
|
||||
*p;
|
||||
|
||||
size_t
|
||||
length;
|
||||
|
||||
ssize_t
|
||||
offset,
|
||||
y;
|
||||
|
||||
unsigned char
|
||||
count,
|
||||
bit,
|
||||
byte,
|
||||
*pixels;
|
||||
|
||||
/*
|
||||
Open image file.
|
||||
*/
|
||||
assert(image_info != (const ImageInfo *) NULL);
|
||||
assert(image_info->signature == MagickSignature);
|
||||
if (image_info->debug != MagickFalse)
|
||||
(void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
|
||||
image_info->filename);
|
||||
assert(exception != (ExceptionInfo *) NULL);
|
||||
assert(exception->signature == MagickSignature);
|
||||
image=AcquireImage(image_info);
|
||||
status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
|
||||
if (status == MagickFalse)
|
||||
{
|
||||
image=DestroyImageList(image);
|
||||
return((Image *) NULL);
|
||||
}
|
||||
/*
|
||||
Read MAC X image.
|
||||
*/
|
||||
length=ReadBlobLSBShort(image);
|
||||
if ((length & 0xff) != 0)
|
||||
ThrowReaderException(CorruptImageError,"CorruptImage");
|
||||
for (x=0; x < (ssize_t) 638; x++)
|
||||
if (ReadBlobByte(image) == EOF)
|
||||
ThrowReaderException(CorruptImageError,"CorruptImage");
|
||||
image->columns=576;
|
||||
image->rows=720;
|
||||
image->depth=1;
|
||||
if (AcquireImageColormap(image,2) == MagickFalse)
|
||||
ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
|
||||
if (image_info->ping != MagickFalse)
|
||||
{
|
||||
(void) CloseBlob(image);
|
||||
return(GetFirstImageInList(image));
|
||||
}
|
||||
/*
|
||||
Convert MAC raster image to pixel packets.
|
||||
*/
|
||||
length=(image->columns+7)/8;
|
||||
pixels=(unsigned char *) AcquireQuantumMemory(length+1,sizeof(*pixels));
|
||||
if (pixels == (unsigned char *) NULL)
|
||||
ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
|
||||
p=pixels;
|
||||
offset=0;
|
||||
for (y=0; y < (ssize_t) image->rows; )
|
||||
{
|
||||
count=(unsigned char) ReadBlobByte(image);
|
||||
if (EOFBlob(image) != MagickFalse)
|
||||
break;
|
||||
if ((count <= 0) || (count >= 128))
|
||||
{
|
||||
byte=(unsigned char) (~ReadBlobByte(image));
|
||||
count=(~count)+2;
|
||||
while (count != 0)
|
||||
{
|
||||
*p++=byte;
|
||||
offset++;
|
||||
count--;
|
||||
if (offset >= (ssize_t) length)
|
||||
{
|
||||
q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
|
||||
if (q == (PixelPacket *) NULL)
|
||||
break;
|
||||
indexes=GetAuthenticIndexQueue(image);
|
||||
p=pixels;
|
||||
bit=0;
|
||||
byte=0;
|
||||
for (x=0; x < (ssize_t) image->columns; x++)
|
||||
{
|
||||
if (bit == 0)
|
||||
byte=(*p++);
|
||||
SetPixelIndex(indexes+x,((byte & 0x80) != 0 ?
|
||||
0x01 : 0x00));
|
||||
bit++;
|
||||
byte<<=1;
|
||||
if (bit == 8)
|
||||
bit=0;
|
||||
}
|
||||
if (SyncAuthenticPixels(image,exception) == MagickFalse)
|
||||
break;
|
||||
offset=0;
|
||||
p=pixels;
|
||||
y++;
|
||||
}
|
||||
}
|
||||
continue;
|
||||
}
|
||||
count++;
|
||||
while (count != 0)
|
||||
{
|
||||
byte=(unsigned char) (~ReadBlobByte(image));
|
||||
*p++=byte;
|
||||
offset++;
|
||||
count--;
|
||||
if (offset >= (ssize_t) length)
|
||||
{
|
||||
q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
|
||||
if (q == (PixelPacket *) NULL)
|
||||
break;
|
||||
indexes=GetAuthenticIndexQueue(image);
|
||||
p=pixels;
|
||||
bit=0;
|
||||
byte=0;
|
||||
for (x=0; x < (ssize_t) image->columns; x++)
|
||||
{
|
||||
if (bit == 0)
|
||||
byte=(*p++);
|
||||
SetPixelIndex(indexes+x,((byte & 0x80) != 0 ?
|
||||
0x01 : 0x00));
|
||||
bit++;
|
||||
byte<<=1;
|
||||
if (bit == 8)
|
||||
bit=0;
|
||||
}
|
||||
if (SyncAuthenticPixels(image,exception) == MagickFalse)
|
||||
break;
|
||||
offset=0;
|
||||
p=pixels;
|
||||
y++;
|
||||
}
|
||||
}
|
||||
}
|
||||
pixels=(unsigned char *) RelinquishMagickMemory(pixels);
|
||||
(void) CloseBlob(image);
|
||||
return(GetFirstImageInList(image));
|
||||
}
|
||||
|
||||
/*
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% %
|
||||
% %
|
||||
% %
|
||||
% R e g i s t e r M A C I m a g e %
|
||||
% %
|
||||
% %
|
||||
% %
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
% RegisterMACImage() adds attributes for the MAC X image format to the list
|
||||
% of supported formats. The attributes include the image format tag, a
|
||||
% method to read and/or write the format, whether the format supports the
|
||||
% saving of more than one frame to the same file or blob, whether the format
|
||||
% supports native in-memory I/O, and a brief description of the format.
|
||||
%
|
||||
% The format of the RegisterMACImage method is:
|
||||
%
|
||||
% size_t RegisterMACImage(void)
|
||||
%
|
||||
*/
|
||||
ModuleExport size_t RegisterMACImage(void)
|
||||
{
|
||||
MagickInfo
|
||||
*entry;
|
||||
|
||||
entry=SetMagickInfo("MAC");
|
||||
entry->decoder=(DecodeImageHandler *) ReadMACImage;
|
||||
entry->description=ConstantString("MAC Paint");
|
||||
entry->module=ConstantString("MAC");
|
||||
(void) RegisterMagickInfo(entry);
|
||||
return(MagickImageCoderSignature);
|
||||
}
|
||||
|
||||
/*
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% %
|
||||
% %
|
||||
% %
|
||||
% U n r e g i s t e r M A C I m a g e %
|
||||
% %
|
||||
% %
|
||||
% %
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
% UnregisterMACImage() removes format registrations made by the
|
||||
% MAC module from the list of supported formats.
|
||||
%
|
||||
% The format of the UnregisterMACImage method is:
|
||||
%
|
||||
% UnregisterMACImage(void)
|
||||
%
|
||||
*/
|
||||
ModuleExport void UnregisterMACImage(void)
|
||||
{
|
||||
(void) UnregisterMagickInfo("MAC");
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue