mirror of
https://github.com/ImageMagick/ImageMagick.git
synced 2026-05-25 11:24:54 +02:00
807 lines
28 KiB
C
807 lines
28 KiB
C
/*
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% %
|
|
% %
|
|
% %
|
|
% TTTTT X X TTTTT %
|
|
% T X X T %
|
|
% T X T %
|
|
% T X X T %
|
|
% T X X T %
|
|
% %
|
|
% %
|
|
% Render Text Onto A Canvas Image. %
|
|
% %
|
|
% Software Design %
|
|
% Cristy %
|
|
% July 1992 %
|
|
% %
|
|
% %
|
|
% Copyright @ 1999 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 %
|
|
% %
|
|
% https://imagemagick.org/license/ %
|
|
% %
|
|
% 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 "MagickCore/studio.h"
|
|
#include "MagickCore/annotate.h"
|
|
#include "MagickCore/attribute.h"
|
|
#include "MagickCore/blob.h"
|
|
#include "MagickCore/blob-private.h"
|
|
#include "MagickCore/cache.h"
|
|
#include "MagickCore/color.h"
|
|
#include "MagickCore/color-private.h"
|
|
#include "MagickCore/colorspace.h"
|
|
#include "MagickCore/constitute.h"
|
|
#include "MagickCore/draw.h"
|
|
#include "MagickCore/exception.h"
|
|
#include "MagickCore/exception-private.h"
|
|
#include "MagickCore/geometry.h"
|
|
#include "MagickCore/image.h"
|
|
#include "MagickCore/image-private.h"
|
|
#include "MagickCore/list.h"
|
|
#include "MagickCore/magick.h"
|
|
#include "MagickCore/memory_.h"
|
|
#include "MagickCore/module.h"
|
|
#include "MagickCore/monitor.h"
|
|
#include "MagickCore/monitor-private.h"
|
|
#include "MagickCore/option.h"
|
|
#include "MagickCore/pixel-accessor.h"
|
|
#include "MagickCore/quantum-private.h"
|
|
#include "MagickCore/static.h"
|
|
#include "MagickCore/statistic.h"
|
|
#include "MagickCore/string_.h"
|
|
#include "MagickCore/string-private.h"
|
|
#include "MagickCore/token.h"
|
|
#include "coders/txt.h"
|
|
|
|
/*
|
|
Forward declarations.
|
|
*/
|
|
static MagickBooleanType
|
|
WriteTXTImage(const ImageInfo *,Image *,ExceptionInfo *);
|
|
|
|
/*
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% %
|
|
% %
|
|
% %
|
|
% I s T X T %
|
|
% %
|
|
% %
|
|
% %
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
%
|
|
% IsTXT() returns MagickTrue if the image format type, identified by the magick
|
|
% string, is TXT.
|
|
%
|
|
% The format of the IsTXT method is:
|
|
%
|
|
% MagickBooleanType IsTXT(const unsigned char *magick,const size_t length)
|
|
%
|
|
% A description of each parameter follows:
|
|
%
|
|
% o magick: compare image format pattern against these bytes.
|
|
%
|
|
% o length: Specifies the length of the magick string.
|
|
%
|
|
*/
|
|
static MagickBooleanType IsTXT(const unsigned char *magick,const size_t length)
|
|
{
|
|
char
|
|
colorspace[MagickPathExtent];
|
|
|
|
ssize_t
|
|
count;
|
|
|
|
unsigned long
|
|
columns,
|
|
depth,
|
|
rows;
|
|
|
|
if (length < 40)
|
|
return(MagickFalse);
|
|
if (LocaleNCompare((const char *) magick,MagickTXTID,
|
|
strlen(MagickTXTID)) != 0)
|
|
return(MagickFalse);
|
|
count=(ssize_t) MagickSscanf((const char *) magick+32,"%lu,%lu,%lu,%32s",
|
|
&columns,&rows,&depth,colorspace);
|
|
if (count != 4)
|
|
return(MagickFalse);
|
|
return(MagickTrue);
|
|
}
|
|
|
|
/*
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% %
|
|
% %
|
|
% %
|
|
% R e a d T E X T I m a g e %
|
|
% %
|
|
% %
|
|
% %
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
%
|
|
% ReadTEXTImage() reads a text file and returns it as an image. It
|
|
% allocates the memory necessary for the new Image structure and returns a
|
|
% pointer to the new image.
|
|
%
|
|
% The format of the ReadTEXTImage method is:
|
|
%
|
|
% Image *ReadTEXTImage(const ImageInfo *image_info,Image *image,
|
|
% char *text,ExceptionInfo *exception)
|
|
%
|
|
% A description of each parameter follows:
|
|
%
|
|
% o image_info: the image info.
|
|
%
|
|
% o image: the image.
|
|
%
|
|
% o text: the text storage buffer.
|
|
%
|
|
% o exception: return any errors or warnings in this structure.
|
|
%
|
|
*/
|
|
static Image *ReadTEXTImage(const ImageInfo *image_info,
|
|
ExceptionInfo *exception)
|
|
{
|
|
char
|
|
filename[MagickPathExtent],
|
|
geometry[MagickPathExtent],
|
|
*p,
|
|
text[MagickPathExtent];
|
|
|
|
DrawInfo
|
|
*draw_info;
|
|
|
|
Image
|
|
*image,
|
|
*texture;
|
|
|
|
MagickBooleanType
|
|
status;
|
|
|
|
PointInfo
|
|
delta;
|
|
|
|
RectangleInfo
|
|
page;
|
|
|
|
ssize_t
|
|
offset;
|
|
|
|
TypeMetric
|
|
metrics;
|
|
|
|
/*
|
|
Open image file.
|
|
*/
|
|
assert(image_info != (const ImageInfo *) NULL);
|
|
assert(image_info->signature == MagickCoreSignature);
|
|
if (IsEventLogging() != MagickFalse)
|
|
(void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
|
|
image_info->filename);
|
|
image=AcquireImage(image_info,exception);
|
|
status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
|
|
if (status == MagickFalse)
|
|
{
|
|
image=DestroyImageList(image);
|
|
return((Image *) NULL);
|
|
}
|
|
(void) memset(text,0,sizeof(text));
|
|
(void) ReadBlobString(image,text);
|
|
/*
|
|
Set the page geometry.
|
|
*/
|
|
delta.x=DefaultResolution;
|
|
delta.y=DefaultResolution;
|
|
if ((image->resolution.x == 0.0) || (image->resolution.y == 0.0))
|
|
{
|
|
GeometryInfo
|
|
geometry_info;
|
|
|
|
MagickStatusType
|
|
flags;
|
|
|
|
flags=ParseGeometry(PSDensityGeometry,&geometry_info);
|
|
if ((flags & RhoValue) != 0)
|
|
image->resolution.x=geometry_info.rho;
|
|
image->resolution.y=image->resolution.x;
|
|
if ((flags & SigmaValue) != 0)
|
|
image->resolution.y=geometry_info.sigma;
|
|
}
|
|
page.width=612;
|
|
page.height=792;
|
|
page.x=43;
|
|
page.y=43;
|
|
if (image_info->page != (char *) NULL)
|
|
(void) ParseAbsoluteGeometry(image_info->page,&page);
|
|
/*
|
|
Initialize Image structure.
|
|
*/
|
|
image->columns=CastDoubleToSizeT(floor((((double) page.width*
|
|
image->resolution.x)/delta.x)+0.5));
|
|
image->rows=CastDoubleToSizeT(floor((((double) page.height*
|
|
image->resolution.y)/delta.y)+0.5));
|
|
status=SetImageExtent(image,image->columns,image->rows,exception);
|
|
if (status != MagickFalse)
|
|
status=ResetImagePixels(image,exception);
|
|
if (status == MagickFalse)
|
|
return(DestroyImageList(image));
|
|
image->page.x=0;
|
|
image->page.y=0;
|
|
texture=(Image *) NULL;
|
|
if (image_info->texture != (char *) NULL)
|
|
{
|
|
ImageInfo
|
|
*read_info;
|
|
|
|
read_info=CloneImageInfo(image_info);
|
|
SetImageInfoBlob(read_info,(void *) NULL,0);
|
|
(void) CopyMagickString(read_info->filename,image_info->texture,
|
|
MagickPathExtent);
|
|
texture=ReadImage(read_info,exception);
|
|
read_info=DestroyImageInfo(read_info);
|
|
}
|
|
/*
|
|
Annotate the text image.
|
|
*/
|
|
(void) SetImageBackgroundColor(image,exception);
|
|
draw_info=CloneDrawInfo(image_info,(DrawInfo *) NULL);
|
|
(void) CloneString(&draw_info->text,image_info->filename);
|
|
(void) FormatLocaleString(geometry,MagickPathExtent,"%gx%g%+g%+g",(double)
|
|
image->columns,(double) image->rows,(double) page.x,(double) page.y);
|
|
(void) CloneString(&draw_info->geometry,geometry);
|
|
status=GetTypeMetrics(image,draw_info,&metrics,exception);
|
|
if (status == MagickFalse)
|
|
{
|
|
draw_info=DestroyDrawInfo(draw_info);
|
|
texture=DestroyImageList(texture);
|
|
ThrowReaderException(TypeError,"UnableToGetTypeMetrics");
|
|
}
|
|
page.y=CastDoubleToSsizeT(ceil((double) page.y+metrics.ascent-0.5));
|
|
(void) FormatLocaleString(geometry,MagickPathExtent,"%gx%g%+g%+g",(double)
|
|
image->columns,(double) image->rows,(double) page.x,(double) page.y);
|
|
(void) CloneString(&draw_info->geometry,geometry);
|
|
(void) CopyMagickString(filename,image_info->filename,MagickPathExtent);
|
|
if (*draw_info->text != '\0')
|
|
*draw_info->text='\0';
|
|
p=text;
|
|
for (offset=2*page.y; p != (char *) NULL; )
|
|
{
|
|
/*
|
|
Annotate image with text.
|
|
*/
|
|
(void) ConcatenateString(&draw_info->text,text);
|
|
(void) ConcatenateString(&draw_info->text,"\n");
|
|
offset+=(ssize_t) (metrics.ascent-metrics.descent);
|
|
if (image->previous == (Image *) NULL)
|
|
{
|
|
status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) offset,
|
|
image->rows);
|
|
if (status == MagickFalse)
|
|
break;
|
|
}
|
|
p=ReadBlobString(image,text);
|
|
if ((offset < (ssize_t) image->rows) && (p != (char *) NULL))
|
|
continue;
|
|
if (texture != (Image *) NULL)
|
|
{
|
|
MagickProgressMonitor
|
|
progress_monitor;
|
|
|
|
progress_monitor=SetImageProgressMonitor(image,
|
|
(MagickProgressMonitor) NULL,image->client_data);
|
|
(void) TextureImage(image,texture,exception);
|
|
(void) SetImageProgressMonitor(image,progress_monitor,
|
|
image->client_data);
|
|
}
|
|
(void) AnnotateImage(image,draw_info,exception);
|
|
if (p == (char *) NULL)
|
|
break;
|
|
/*
|
|
Page is full-- allocate next image structure.
|
|
*/
|
|
*draw_info->text='\0';
|
|
offset=2*page.y;
|
|
AcquireNextImage(image_info,image,exception);
|
|
if (GetNextImageInList(image) == (Image *) NULL)
|
|
{
|
|
status=MagickFalse;
|
|
break;
|
|
}
|
|
image->next->columns=image->columns;
|
|
image->next->rows=image->rows;
|
|
image=SyncNextImageInList(image);
|
|
(void) CopyMagickString(image->filename,filename,MagickPathExtent);
|
|
(void) SetImageBackgroundColor(image,exception);
|
|
status=SetImageProgress(image,LoadImagesTag,TellBlob(image),
|
|
GetBlobSize(image));
|
|
if (status == MagickFalse)
|
|
break;
|
|
}
|
|
if (texture != (Image *) NULL)
|
|
{
|
|
MagickProgressMonitor
|
|
progress_monitor;
|
|
|
|
progress_monitor=SetImageProgressMonitor(image,
|
|
(MagickProgressMonitor) NULL,image->client_data);
|
|
(void) TextureImage(image,texture,exception);
|
|
(void) SetImageProgressMonitor(image,progress_monitor,image->client_data);
|
|
}
|
|
(void) AnnotateImage(image,draw_info,exception);
|
|
texture=DestroyImageList(texture);
|
|
draw_info=DestroyDrawInfo(draw_info);
|
|
if (CloseBlob(image) == MagickFalse)
|
|
status=MagickFalse;
|
|
if (status == MagickFalse)
|
|
return(DestroyImageList(image));
|
|
return(GetFirstImageInList(image));
|
|
}
|
|
|
|
/*
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% %
|
|
% %
|
|
% %
|
|
% R e a d T X T I m a g e %
|
|
% %
|
|
% %
|
|
% %
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
%
|
|
% ReadTXTImage() reads a text file and returns it as an image. It allocates
|
|
% the memory necessary for the new Image structure and returns a pointer to
|
|
% the new image.
|
|
%
|
|
% The format of the ReadTXTImage method is:
|
|
%
|
|
% Image *ReadTXTImage(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 *ReadTXTImage(const ImageInfo *image_info,ExceptionInfo *exception)
|
|
{
|
|
char
|
|
text[MagickPathExtent] = "\0";
|
|
|
|
Image
|
|
*image;
|
|
|
|
MagickBooleanType
|
|
status;
|
|
|
|
ssize_t
|
|
y;
|
|
|
|
/*
|
|
Open image file.
|
|
*/
|
|
assert(image_info != (const ImageInfo *) NULL);
|
|
assert(image_info->signature == MagickCoreSignature);
|
|
assert(exception != (ExceptionInfo *) NULL);
|
|
assert(exception->signature == MagickCoreSignature);
|
|
if (IsEventLogging() != MagickFalse)
|
|
(void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
|
|
image_info->filename);
|
|
image=AcquireImage(image_info,exception);
|
|
status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
|
|
if (status == MagickFalse)
|
|
{
|
|
image=DestroyImageList(image);
|
|
return((Image *) NULL);
|
|
}
|
|
(void) ReadBlobString(image,text);
|
|
if (LocaleNCompare((char *) text,MagickTXTID,strlen(MagickTXTID)) != 0)
|
|
ThrowReaderException(CorruptImageError,"ImproperImageHeader");
|
|
do
|
|
{
|
|
char
|
|
colorspace[MagickPathExtent] = "\0";
|
|
|
|
double
|
|
max_value = 0.0;
|
|
|
|
QuantumAny
|
|
range = 0;
|
|
|
|
ssize_t
|
|
count = 0,
|
|
i,
|
|
type = 0;
|
|
|
|
unsigned long
|
|
depth = 0,
|
|
height = 0,
|
|
number_meta_channels = 0,
|
|
width = 0;
|
|
|
|
count=(ssize_t) MagickSscanf(text+32,"%lu,%lu,%lu,%lf,%32s",&width,&height,
|
|
&number_meta_channels,&max_value,colorspace);
|
|
if (count < 5)
|
|
{
|
|
number_meta_channels=0;
|
|
count=(ssize_t) MagickSscanf(text+32,"%lu,%lu,%lf,%32s",&width,&height,
|
|
&max_value,colorspace);
|
|
}
|
|
if ((count < 4) || (width == 0) || (height == 0) || (max_value == 0.0) ||
|
|
(number_meta_channels >= (unsigned long) (MaxPixelChannels-MetaPixelChannels)))
|
|
ThrowReaderException(CorruptImageError,"ImproperImageHeader");
|
|
image->columns=width;
|
|
image->rows=height;
|
|
image->number_meta_channels=number_meta_channels;
|
|
if ((max_value == 0.0) || (max_value >= 18446744073709551615.0))
|
|
ThrowReaderException(CorruptImageError,"ImproperImageHeader");
|
|
for (depth=1; ((double) GetQuantumRange(depth)+1) < max_value; depth++) ;
|
|
image->depth=depth;
|
|
status=SetImageExtent(image,image->columns,image->rows,exception);
|
|
if (status != MagickFalse)
|
|
status=ResetImagePixels(image,exception);
|
|
if (status == MagickFalse)
|
|
return(DestroyImageList(image));
|
|
LocaleLower(colorspace);
|
|
i=(ssize_t) strlen(colorspace)-1;
|
|
image->alpha_trait=UndefinedPixelTrait;
|
|
if ((i > 0) && (colorspace[i] == 'a'))
|
|
{
|
|
colorspace[i]='\0';
|
|
image->alpha_trait=BlendPixelTrait;
|
|
}
|
|
type=ParseCommandOption(MagickColorspaceOptions,MagickFalse,colorspace);
|
|
if (type < 0)
|
|
ThrowReaderException(CorruptImageError,"ImproperImageHeader");
|
|
(void) SetImageColorspace(image,(ColorspaceType) type,exception);
|
|
(void) SetImageBackgroundColor(image,exception);
|
|
range=GetQuantumRange(image->depth);
|
|
status=MagickTrue;
|
|
for (y=0; y < (ssize_t) image->rows; y++)
|
|
{
|
|
ssize_t
|
|
x;
|
|
|
|
if (status == MagickFalse)
|
|
break;
|
|
for (x=0; x < (ssize_t) image->columns; x++)
|
|
{
|
|
char
|
|
token[MagickPathExtent] = "\0";
|
|
|
|
const char
|
|
*p;
|
|
|
|
double
|
|
channels[MaxPixelChannels+2] = { 0 };
|
|
|
|
Quantum
|
|
*q;
|
|
|
|
ssize_t
|
|
n;
|
|
|
|
/*
|
|
Read one pixel per line in this format:
|
|
(x-offset,y-offset) (red,green,blue,...) #HEX #CSS
|
|
*/
|
|
if (ReadBlobString(image,text) == (char *) NULL)
|
|
{
|
|
status=MagickFalse;
|
|
break;
|
|
}
|
|
n=0;
|
|
channels[0]=(double) x;
|
|
channels[1]=(double) y;
|
|
for (p=text; (*p != ')') && (*p != '\0') && (n < MaxPixelChannels); )
|
|
{
|
|
if (LocaleNCompare(p,"sRGB(",5) == 0)
|
|
{
|
|
p+=(ptrdiff_t) 5;
|
|
n=2;
|
|
}
|
|
(void) GetNextToken(p,&p,MagickPathExtent,token);
|
|
if (isdigit((int) ((unsigned char) *token)) != 0)
|
|
{
|
|
char
|
|
*end = (char *) NULL;
|
|
|
|
channels[n]=strtod(token,&end);
|
|
(void) GetNextToken(p,&p,MagickPathExtent,token);
|
|
if (*end == '%')
|
|
channels[n]*=0.01*range;
|
|
n++;
|
|
}
|
|
}
|
|
q=GetAuthenticPixels(image,CastDoubleToSsizeT(channels[0]),
|
|
CastDoubleToSsizeT(channels[1]),1,1,exception);
|
|
if (q == (Quantum *) NULL)
|
|
break;
|
|
for (i=0; i < (ssize_t) GetImageChannels(image); i++)
|
|
q[i]=ScaleAnyToQuantum(CastDoubleToQuantumAny(channels[i+2]),range);
|
|
if (SyncAuthenticPixels(image,exception) == MagickFalse)
|
|
{
|
|
status=MagickFalse;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (status == MagickFalse)
|
|
break;
|
|
*text='\0';
|
|
(void) ReadBlobString(image,text);
|
|
if (LocaleNCompare((char *) text,MagickTXTID,strlen(MagickTXTID)) == 0)
|
|
{
|
|
/*
|
|
Allocate next image structure.
|
|
*/
|
|
AcquireNextImage(image_info,image,exception);
|
|
if (GetNextImageInList(image) == (Image *) NULL)
|
|
{
|
|
status=MagickFalse;
|
|
break;
|
|
}
|
|
image=SyncNextImageInList(image);
|
|
status=SetImageProgress(image,LoadImagesTag,TellBlob(image),
|
|
GetBlobSize(image));
|
|
if (status == MagickFalse)
|
|
break;
|
|
}
|
|
} while (LocaleNCompare((char *) text,MagickTXTID,strlen(MagickTXTID)) == 0);
|
|
(void) CloseBlob(image);
|
|
return(GetFirstImageInList(image));
|
|
}
|
|
|
|
|
|
/*
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% %
|
|
% %
|
|
% %
|
|
% R e g i s t e r T X T I m a g e %
|
|
% %
|
|
% %
|
|
% %
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
%
|
|
% RegisterTXTImage() adds attributes for the TXT 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 RegisterTXTImage method is:
|
|
%
|
|
% size_t RegisterTXTImage(void)
|
|
%
|
|
*/
|
|
ModuleExport size_t RegisterTXTImage(void)
|
|
{
|
|
MagickInfo
|
|
*entry;
|
|
|
|
entry=AcquireMagickInfo("TXT","SPARSE-COLOR","Sparse Color");
|
|
entry->encoder=(EncodeImageHandler *) WriteTXTImage;
|
|
entry->flags|=CoderRawSupportFlag;
|
|
entry->flags|=CoderEndianSupportFlag;
|
|
(void) RegisterMagickInfo(entry);
|
|
entry=AcquireMagickInfo("TXT","TEXT","Text");
|
|
entry->decoder=(DecodeImageHandler *) ReadTEXTImage;
|
|
entry->format_type=ImplicitFormatType;
|
|
entry->flags|=CoderRawSupportFlag;
|
|
entry->flags|=CoderEndianSupportFlag;
|
|
(void) RegisterMagickInfo(entry);
|
|
entry=AcquireMagickInfo("TXT","TXT","Text");
|
|
entry->decoder=(DecodeImageHandler *) ReadTXTImage;
|
|
entry->encoder=(EncodeImageHandler *) WriteTXTImage;
|
|
entry->magick=(IsImageFormatHandler *) IsTXT;
|
|
(void) RegisterMagickInfo(entry);
|
|
return(MagickImageCoderSignature);
|
|
}
|
|
|
|
/*
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% %
|
|
% %
|
|
% %
|
|
% U n r e g i s t e r T X T I m a g e %
|
|
% %
|
|
% %
|
|
% %
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
%
|
|
% UnregisterTXTImage() removes format registrations made by the
|
|
% TXT module from the list of supported format.
|
|
%
|
|
% The format of the UnregisterTXTImage method is:
|
|
%
|
|
% UnregisterTXTImage(void)
|
|
%
|
|
*/
|
|
ModuleExport void UnregisterTXTImage(void)
|
|
{
|
|
(void) UnregisterMagickInfo("SPARSE-COLOR");
|
|
(void) UnregisterMagickInfo("TEXT");
|
|
(void) UnregisterMagickInfo("TXT");
|
|
}
|
|
|
|
/*
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% %
|
|
% %
|
|
% %
|
|
% W r i t e T X T I m a g e %
|
|
% %
|
|
% %
|
|
% %
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
%
|
|
% WriteTXTImage writes the pixel values as text numbers.
|
|
%
|
|
% The format of the WriteTXTImage method is:
|
|
%
|
|
% MagickBooleanType WriteTXTImage(const ImageInfo *image_info,
|
|
% Image *image,ExceptionInfo *exception)
|
|
%
|
|
% A description of each parameter follows.
|
|
%
|
|
% o image_info: the image info.
|
|
%
|
|
% o image: The image.
|
|
%
|
|
% o exception: return any errors or warnings in this structure.
|
|
%
|
|
*/
|
|
static MagickBooleanType WriteTXTImage(const ImageInfo *image_info,Image *image,
|
|
ExceptionInfo *exception)
|
|
{
|
|
MagickBooleanType
|
|
status;
|
|
|
|
MagickOffsetType
|
|
scene;
|
|
|
|
size_t
|
|
number_scenes;
|
|
|
|
/*
|
|
Open output image file.
|
|
*/
|
|
assert(image_info != (const ImageInfo *) NULL);
|
|
assert(image_info->signature == MagickCoreSignature);
|
|
assert(image != (Image *) NULL);
|
|
assert(image->signature == MagickCoreSignature);
|
|
if (IsEventLogging() != MagickFalse)
|
|
(void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
|
|
status=OpenBlob(image_info,image,WriteBlobMode,exception);
|
|
if (status == MagickFalse)
|
|
return(status);
|
|
scene=0;
|
|
number_scenes=GetImageListLength(image);
|
|
do
|
|
{
|
|
char
|
|
buffer[MagickPathExtent],
|
|
colorspace[MagickPathExtent];
|
|
|
|
PixelInfo
|
|
pixel;
|
|
|
|
QuantumAny
|
|
range = 0;
|
|
|
|
ssize_t
|
|
y;
|
|
|
|
(void) CopyMagickString(colorspace,CommandOptionToMnemonic(
|
|
MagickColorspaceOptions,(ssize_t) image->colorspace),MagickPathExtent);
|
|
LocaleLower(colorspace);
|
|
image->depth=GetImageQuantumDepth(image,MagickTrue);
|
|
range=GetQuantumRange(image->depth);
|
|
if (image->alpha_trait != UndefinedPixelTrait)
|
|
(void) ConcatenateMagickString(colorspace,"a",MagickPathExtent);
|
|
if (LocaleCompare(image_info->magick,"SPARSE-COLOR") != 0)
|
|
{
|
|
(void) FormatLocaleString(buffer,MagickPathExtent,
|
|
"# ImageMagick pixel enumeration: %.20g,%.20g,%.20g,%.20g,%s\n",
|
|
(double) image->columns,(double) image->rows,
|
|
(double) image->number_meta_channels,
|
|
(double) GetQuantumRange(image->depth),colorspace);
|
|
(void) WriteBlobString(image,buffer);
|
|
}
|
|
GetPixelInfo(image,&pixel);
|
|
for (y=0; y < (ssize_t) image->rows; y++)
|
|
{
|
|
const Quantum
|
|
*p;
|
|
|
|
ssize_t
|
|
x;
|
|
|
|
p=GetVirtualPixels(image,0,y,image->columns,1,exception);
|
|
if (p == (const Quantum *) NULL)
|
|
break;
|
|
for (x=0; x < (ssize_t) image->columns; x++)
|
|
{
|
|
char
|
|
tuple[MagickPathExtent];
|
|
|
|
ssize_t
|
|
i;
|
|
|
|
GetPixelInfoPixel(image,p,&pixel);
|
|
if (LocaleCompare(image_info->magick,"SPARSE-COLOR") == 0)
|
|
{
|
|
/*
|
|
Sparse-color format.
|
|
*/
|
|
if (GetPixelAlpha(image,p) == (Quantum) OpaqueAlpha)
|
|
{
|
|
(void) FormatLocaleString(buffer,MagickPathExtent,
|
|
"%.20g,%.20g,",(double) x,(double) y);
|
|
GetColorTuple(&pixel,MagickFalse,tuple);
|
|
(void) ConcatenateMagickString(buffer,tuple,MagickPathExtent);
|
|
(void) ConcatenateMagickString(buffer," ",MagickPathExtent);
|
|
(void) WriteBlobString(image,buffer);
|
|
}
|
|
p+=(ptrdiff_t) GetPixelChannels(image);
|
|
continue;
|
|
}
|
|
(void) FormatLocaleString(buffer,MagickPathExtent,"%.20g,%.20g: (",
|
|
(double) x,(double) y);
|
|
for (i=0; i < (ssize_t) GetImageChannels(image); i++)
|
|
{
|
|
QuantumAny channel = ScaleQuantumToAny(p[i],range);
|
|
(void) FormatLocaleString(tuple,MagickPathExtent,"%.20g",
|
|
(double) channel);
|
|
(void) ConcatenateMagickString(buffer,tuple,MagickPathExtent);
|
|
if ((i+1) < (ssize_t) GetImageChannels(image))
|
|
(void) ConcatenateMagickString(buffer,",",MagickPathExtent);
|
|
}
|
|
(void) ConcatenateMagickString(buffer,") ",MagickPathExtent);
|
|
GetColorTuple(&pixel,MagickTrue,tuple);
|
|
(void) ConcatenateMagickString(buffer,tuple,MagickPathExtent);
|
|
(void) ConcatenateMagickString(buffer," ",MagickPathExtent);
|
|
(void) QueryColorname(image,&pixel,SVGCompliance,tuple,exception);
|
|
(void) ConcatenateMagickString(buffer,tuple,MagickPathExtent);
|
|
(void) ConcatenateMagickString(buffer,"\n",MagickPathExtent);
|
|
(void) WriteBlobString(image,buffer);
|
|
p+=(ptrdiff_t) GetPixelChannels(image);
|
|
}
|
|
status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
|
|
image->rows);
|
|
if (status == MagickFalse)
|
|
break;
|
|
}
|
|
if (GetNextImageInList(image) == (Image *) NULL)
|
|
break;
|
|
image=SyncNextImageInList(image);
|
|
status=SetImageProgress(image,SaveImagesTag,scene++,number_scenes);
|
|
if (status == MagickFalse)
|
|
break;
|
|
} while (image_info->adjoin != MagickFalse);
|
|
if (CloseBlob(image) == MagickFalse)
|
|
status=MagickFalse;
|
|
return(status);
|
|
}
|