blob: e039b2180e8e3eb3bffbc600ec46da246c9ee7a9 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% SSSSS H H EEEEE AAA RRRR %
7% SS H H E A A R R %
8% SSS HHHHH EEE AAAAA RRRR %
9% SS H H E A A R R %
10% SSSSS H H EEEEE A A R R %
11% %
12% %
13% MagickCore Methods to Shear or Rotate an Image by an Arbitrary Angle %
14% %
15% Software Design %
16% John Cristy %
17% July 1992 %
18% %
19% %
cristy7e41fe82010-12-04 23:12:08 +000020% Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization %
cristy3ed852e2009-09-05 21:47:34 +000021% dedicated to making software imaging solutions freely available. %
22% %
23% You may not use this file except in compliance with the License. You may %
24% obtain a copy of the License at %
25% %
26% http://www.imagemagick.org/script/license.php %
27% %
28% Unless required by applicable law or agreed to in writing, software %
29% distributed under the License is distributed on an "AS IS" BASIS, %
30% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
31% See the License for the specific language governing permissions and %
32% limitations under the License. %
33% %
34%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35%
cristyc7c81142011-11-07 12:14:23 +000036% The XShearImage() and YShearImage() methods are based on the paper "A Fast
cristy7f81c002011-11-07 01:08:58 +000037% Algorithm for General Raster Rotatation" by Alan W. Paeth, Graphics
cristyc7c81142011-11-07 12:14:23 +000038% Interface '86 (Vancouver). ShearRotateImage() is adapted from a similar
39% method based on the Paeth paper written by Michael Halle of the Spatial
40% Imaging Group, MIT Media Lab.
cristy3ed852e2009-09-05 21:47:34 +000041%
42*/
43
44/*
45 Include declarations.
46*/
cristy4c08aed2011-07-01 19:47:50 +000047#include "MagickCore/studio.h"
48#include "MagickCore/artifact.h"
49#include "MagickCore/attribute.h"
50#include "MagickCore/blob-private.h"
51#include "MagickCore/cache-private.h"
52#include "MagickCore/color-private.h"
53#include "MagickCore/colorspace-private.h"
54#include "MagickCore/composite.h"
55#include "MagickCore/composite-private.h"
56#include "MagickCore/decorate.h"
57#include "MagickCore/distort.h"
58#include "MagickCore/draw.h"
59#include "MagickCore/exception.h"
60#include "MagickCore/exception-private.h"
61#include "MagickCore/gem.h"
62#include "MagickCore/geometry.h"
63#include "MagickCore/image.h"
64#include "MagickCore/image-private.h"
65#include "MagickCore/memory_.h"
66#include "MagickCore/list.h"
67#include "MagickCore/monitor.h"
68#include "MagickCore/monitor-private.h"
cristy0740a982011-10-13 15:01:01 +000069#include "MagickCore/nt-base-private.h"
cristy4c08aed2011-07-01 19:47:50 +000070#include "MagickCore/pixel-accessor.h"
71#include "MagickCore/quantum.h"
72#include "MagickCore/resource_.h"
73#include "MagickCore/shear.h"
74#include "MagickCore/statistic.h"
75#include "MagickCore/string_.h"
76#include "MagickCore/string-private.h"
77#include "MagickCore/thread-private.h"
78#include "MagickCore/threshold.h"
79#include "MagickCore/transform.h"
cristy3ed852e2009-09-05 21:47:34 +000080
81/*
82%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
83% %
84% %
85% %
cristy3ed852e2009-09-05 21:47:34 +000086+ C r o p T o F i t I m a g e %
87% %
88% %
89% %
90%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
91%
92% CropToFitImage() crops the sheared image as determined by the bounding box
93% as defined by width and height and shearing angles.
94%
95% The format of the CropToFitImage method is:
96%
cristyecc2c142010-01-17 22:25:46 +000097% MagickBooleanType CropToFitImage(Image **image,
98% const MagickRealType x_shear,const MagickRealType x_shear,
99% const MagickRealType width,const MagickRealType height,
100% const MagickBooleanType rotate,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000101%
102% A description of each parameter follows.
103%
104% o image: the image.
105%
106% o x_shear, y_shear, width, height: Defines a region of the image to crop.
107%
108% o exception: return any errors or warnings in this structure.
109%
110*/
cristyecc2c142010-01-17 22:25:46 +0000111static MagickBooleanType CropToFitImage(Image **image,
112 const MagickRealType x_shear,const MagickRealType y_shear,
113 const MagickRealType width,const MagickRealType height,
114 const MagickBooleanType rotate,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000115{
116 Image
117 *crop_image;
118
119 PointInfo
120 extent[4],
121 min,
122 max;
123
124 RectangleInfo
125 geometry,
126 page;
127
cristybb503372010-05-27 20:51:26 +0000128 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000129 i;
130
131 /*
132 Calculate the rotated image size.
133 */
134 extent[0].x=(double) (-width/2.0);
135 extent[0].y=(double) (-height/2.0);
136 extent[1].x=(double) width/2.0;
137 extent[1].y=(double) (-height/2.0);
138 extent[2].x=(double) (-width/2.0);
139 extent[2].y=(double) height/2.0;
140 extent[3].x=(double) width/2.0;
141 extent[3].y=(double) height/2.0;
142 for (i=0; i < 4; i++)
143 {
144 extent[i].x+=x_shear*extent[i].y;
145 extent[i].y+=y_shear*extent[i].x;
146 if (rotate != MagickFalse)
147 extent[i].x+=x_shear*extent[i].y;
148 extent[i].x+=(double) (*image)->columns/2.0;
149 extent[i].y+=(double) (*image)->rows/2.0;
150 }
151 min=extent[0];
152 max=extent[0];
153 for (i=1; i < 4; i++)
154 {
155 if (min.x > extent[i].x)
156 min.x=extent[i].x;
157 if (min.y > extent[i].y)
158 min.y=extent[i].y;
159 if (max.x < extent[i].x)
160 max.x=extent[i].x;
161 if (max.y < extent[i].y)
162 max.y=extent[i].y;
163 }
cristybb503372010-05-27 20:51:26 +0000164 geometry.x=(ssize_t) ceil(min.x-0.5);
165 geometry.y=(ssize_t) ceil(min.y-0.5);
166 geometry.width=(size_t) floor(max.x-min.x+0.5);
167 geometry.height=(size_t) floor(max.y-min.y+0.5);
cristy3ed852e2009-09-05 21:47:34 +0000168 page=(*image)->page;
169 (void) ParseAbsoluteGeometry("0x0+0+0",&(*image)->page);
170 crop_image=CropImage(*image,&geometry,exception);
cristyecc2c142010-01-17 22:25:46 +0000171 if (crop_image == (Image *) NULL)
172 return(MagickFalse);
173 crop_image->page=page;
174 *image=DestroyImage(*image);
175 *image=crop_image;
176 return(MagickTrue);
cristy3ed852e2009-09-05 21:47:34 +0000177}
178
179/*
180%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
181% %
182% %
183% %
184% D e s k e w I m a g e %
185% %
186% %
187% %
188%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
189%
190% DeskewImage() removes skew from the image. Skew is an artifact that
191% occurs in scanned images because of the camera being misaligned,
192% imperfections in the scanning or surface, or simply because the paper was
193% not placed completely flat when scanned.
194%
195% The format of the DeskewImage method is:
196%
197% Image *DeskewImage(const Image *image,const double threshold,
198% ExceptionInfo *exception)
199%
200% A description of each parameter follows:
201%
202% o image: the image.
203%
204% o threshold: separate background from foreground.
205%
206% o exception: return any errors or warnings in this structure.
207%
208*/
209
210typedef struct _RadonInfo
211{
212 CacheType
213 type;
214
cristybb503372010-05-27 20:51:26 +0000215 size_t
cristy3ed852e2009-09-05 21:47:34 +0000216 width,
217 height;
218
219 MagickSizeType
220 length;
221
222 MagickBooleanType
223 mapped;
224
225 char
226 path[MaxTextExtent];
227
228 int
229 file;
230
231 unsigned short
232 *cells;
233} RadonInfo;
234
235static RadonInfo *DestroyRadonInfo(RadonInfo *radon_info)
236{
237 assert(radon_info != (RadonInfo *) NULL);
238 switch (radon_info->type)
239 {
240 case MemoryCache:
241 {
242 if (radon_info->mapped == MagickFalse)
243 radon_info->cells=(unsigned short *) RelinquishMagickMemory(
244 radon_info->cells);
245 else
246 radon_info->cells=(unsigned short *) UnmapBlob(radon_info->cells,
247 (size_t) radon_info->length);
248 RelinquishMagickResource(MemoryResource,radon_info->length);
249 break;
250 }
251 case MapCache:
252 {
253 radon_info->cells=(unsigned short *) UnmapBlob(radon_info->cells,(size_t)
254 radon_info->length);
255 RelinquishMagickResource(MapResource,radon_info->length);
256 }
257 case DiskCache:
258 {
259 if (radon_info->file != -1)
260 (void) close(radon_info->file);
261 (void) RelinquishUniqueFileResource(radon_info->path);
262 RelinquishMagickResource(DiskResource,radon_info->length);
263 break;
264 }
265 default:
266 break;
267 }
268 return((RadonInfo *) RelinquishMagickMemory(radon_info));
269}
270
271static MagickBooleanType ResetRadonCells(RadonInfo *radon_info)
272{
cristybb503372010-05-27 20:51:26 +0000273 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000274 x;
275
276 ssize_t
cristyd40deb62011-03-09 00:52:27 +0000277 count,
278 y;
cristy3ed852e2009-09-05 21:47:34 +0000279
280 unsigned short
281 value;
282
283 if (radon_info->type != DiskCache)
284 {
285 (void) ResetMagickMemory(radon_info->cells,0,(size_t) radon_info->length);
286 return(MagickTrue);
287 }
288 value=0;
cristy7f317702011-02-18 20:40:28 +0000289 (void) lseek(radon_info->file,0,SEEK_SET);
cristybb503372010-05-27 20:51:26 +0000290 for (y=0; y < (ssize_t) radon_info->height; y++)
cristy3ed852e2009-09-05 21:47:34 +0000291 {
cristybb503372010-05-27 20:51:26 +0000292 for (x=0; x < (ssize_t) radon_info->width; x++)
cristy3ed852e2009-09-05 21:47:34 +0000293 {
294 count=write(radon_info->file,&value,sizeof(*radon_info->cells));
295 if (count != (ssize_t) sizeof(*radon_info->cells))
296 break;
297 }
cristybb503372010-05-27 20:51:26 +0000298 if (x < (ssize_t) radon_info->width)
cristy3ed852e2009-09-05 21:47:34 +0000299 break;
300 }
cristybb503372010-05-27 20:51:26 +0000301 return(y < (ssize_t) radon_info->height ? MagickFalse : MagickTrue);
cristy3ed852e2009-09-05 21:47:34 +0000302}
303
cristybb503372010-05-27 20:51:26 +0000304static RadonInfo *AcquireRadonInfo(const Image *image,const size_t width,
305 const size_t height,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000306{
307 MagickBooleanType
308 status;
309
310 RadonInfo
311 *radon_info;
312
cristy73bd4a52010-10-05 11:24:23 +0000313 radon_info=(RadonInfo *) AcquireMagickMemory(sizeof(*radon_info));
cristy3ed852e2009-09-05 21:47:34 +0000314 if (radon_info == (RadonInfo *) NULL)
315 return((RadonInfo *) NULL);
316 (void) ResetMagickMemory(radon_info,0,sizeof(*radon_info));
317 radon_info->width=width;
318 radon_info->height=height;
319 radon_info->length=(MagickSizeType) width*height*sizeof(*radon_info->cells);
320 radon_info->type=MemoryCache;
321 status=AcquireMagickResource(AreaResource,radon_info->length);
322 if ((status != MagickFalse) &&
323 (radon_info->length == (MagickSizeType) ((size_t) radon_info->length)))
324 {
325 status=AcquireMagickResource(MemoryResource,radon_info->length);
326 if (status != MagickFalse)
327 {
328 radon_info->mapped=MagickFalse;
329 radon_info->cells=(unsigned short *) AcquireMagickMemory((size_t)
330 radon_info->length);
331 if (radon_info->cells == (unsigned short *) NULL)
332 {
333 radon_info->mapped=MagickTrue;
334 radon_info->cells=(unsigned short *) MapBlob(-1,IOMode,0,(size_t)
335 radon_info->length);
336 }
337 if (radon_info->cells == (unsigned short *) NULL)
338 RelinquishMagickResource(MemoryResource,radon_info->length);
339 }
340 }
341 radon_info->file=(-1);
342 if (radon_info->cells == (unsigned short *) NULL)
343 {
344 status=AcquireMagickResource(DiskResource,radon_info->length);
345 if (status == MagickFalse)
346 {
347 (void) ThrowMagickException(exception,GetMagickModule(),CacheError,
348 "CacheResourcesExhausted","`%s'",image->filename);
349 return(DestroyRadonInfo(radon_info));
350 }
351 radon_info->type=DiskCache;
352 (void) AcquireMagickResource(MemoryResource,radon_info->length);
353 radon_info->file=AcquireUniqueFileResource(radon_info->path);
354 if (radon_info->file == -1)
355 return(DestroyRadonInfo(radon_info));
356 status=AcquireMagickResource(MapResource,radon_info->length);
357 if (status != MagickFalse)
358 {
359 status=ResetRadonCells(radon_info);
360 if (status != MagickFalse)
361 {
362 radon_info->cells=(unsigned short *) MapBlob(radon_info->file,
363 IOMode,0,(size_t) radon_info->length);
364 if (radon_info->cells != (unsigned short *) NULL)
365 radon_info->type=MapCache;
366 else
367 RelinquishMagickResource(MapResource,radon_info->length);
368 }
369 }
370 }
371 return(radon_info);
372}
373
374static inline size_t MagickMin(const size_t x,const size_t y)
375{
376 if (x < y)
377 return(x);
378 return(y);
379}
380
381static inline ssize_t ReadRadonCell(const RadonInfo *radon_info,
cristy2c38b272011-02-18 23:25:33 +0000382 const MagickOffsetType offset,const size_t length,unsigned char *buffer)
cristy3ed852e2009-09-05 21:47:34 +0000383{
384 register ssize_t
385 i;
386
387 ssize_t
388 count;
389
390#if !defined(MAGICKCORE_HAVE_PPREAD)
cristyb5d5f722009-11-04 03:03:49 +0000391#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy3ed852e2009-09-05 21:47:34 +0000392 #pragma omp critical (MagickCore_ReadRadonCell)
393#endif
394 {
395 i=(-1);
cristy7f317702011-02-18 20:40:28 +0000396 if (lseek(radon_info->file,offset,SEEK_SET) >= 0)
cristy3ed852e2009-09-05 21:47:34 +0000397 {
398#endif
399 count=0;
400 for (i=0; i < (ssize_t) length; i+=count)
401 {
402#if !defined(MAGICKCORE_HAVE_PPREAD)
403 count=read(radon_info->file,buffer+i,MagickMin(length-i,(size_t)
404 SSIZE_MAX));
405#else
406 count=pread(radon_info->file,buffer+i,MagickMin(length-i,(size_t)
cristy2c38b272011-02-18 23:25:33 +0000407 SSIZE_MAX),offset+i);
cristy3ed852e2009-09-05 21:47:34 +0000408#endif
409 if (count > 0)
410 continue;
411 count=0;
412 if (errno != EINTR)
413 {
414 i=(-1);
415 break;
416 }
417 }
418#if !defined(MAGICKCORE_HAVE_PPREAD)
419 }
420 }
421#endif
422 return(i);
423}
424
425static inline ssize_t WriteRadonCell(const RadonInfo *radon_info,
cristy2c38b272011-02-18 23:25:33 +0000426 const MagickOffsetType offset,const size_t length,const unsigned char *buffer)
cristy3ed852e2009-09-05 21:47:34 +0000427{
428 register ssize_t
429 i;
430
431 ssize_t
432 count;
433
434#if !defined(MAGICKCORE_HAVE_PWRITE)
cristyb5d5f722009-11-04 03:03:49 +0000435#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy3ed852e2009-09-05 21:47:34 +0000436 #pragma omp critical (MagickCore_WriteRadonCell)
437#endif
438 {
cristy7f317702011-02-18 20:40:28 +0000439 if (lseek(radon_info->file,offset,SEEK_SET) >= 0)
cristy3ed852e2009-09-05 21:47:34 +0000440 {
441#endif
442 count=0;
443 for (i=0; i < (ssize_t) length; i+=count)
444 {
445#if !defined(MAGICKCORE_HAVE_PWRITE)
446 count=write(radon_info->file,buffer+i,MagickMin(length-i,(size_t)
447 SSIZE_MAX));
448#else
449 count=pwrite(radon_info->file,buffer+i,MagickMin(length-i,(size_t)
cristy2c38b272011-02-18 23:25:33 +0000450 SSIZE_MAX),offset+i);
cristy3ed852e2009-09-05 21:47:34 +0000451#endif
452 if (count > 0)
453 continue;
454 count=0;
455 if (errno != EINTR)
456 {
457 i=(-1);
458 break;
459 }
460 }
461#if !defined(MAGICKCORE_HAVE_PWRITE)
462 }
463 }
464#endif
465 return(i);
466}
467
468static inline unsigned short GetRadonCell(const RadonInfo *radon_info,
cristybb503372010-05-27 20:51:26 +0000469 const ssize_t x,const ssize_t y)
cristy3ed852e2009-09-05 21:47:34 +0000470{
cristy2c38b272011-02-18 23:25:33 +0000471 MagickOffsetType
cristy3ed852e2009-09-05 21:47:34 +0000472 i;
473
474 unsigned short
475 value;
476
cristy2c38b272011-02-18 23:25:33 +0000477 i=(MagickOffsetType) radon_info->height*x+y;
cristy3ed852e2009-09-05 21:47:34 +0000478 if ((i < 0) ||
479 ((MagickSizeType) (i*sizeof(*radon_info->cells)) >= radon_info->length))
480 return(0);
481 if (radon_info->type != DiskCache)
482 return(radon_info->cells[i]);
483 value=0;
484 (void) ReadRadonCell(radon_info,i*sizeof(*radon_info->cells),
485 sizeof(*radon_info->cells),(unsigned char *) &value);
486 return(value);
487}
488
489static inline MagickBooleanType SetRadonCell(const RadonInfo *radon_info,
cristybb503372010-05-27 20:51:26 +0000490 const ssize_t x,const ssize_t y,const unsigned short value)
cristy3ed852e2009-09-05 21:47:34 +0000491{
cristy2c38b272011-02-18 23:25:33 +0000492 MagickOffsetType
cristy3ed852e2009-09-05 21:47:34 +0000493 i;
494
495 ssize_t
496 count;
497
cristy2c38b272011-02-18 23:25:33 +0000498 i=(MagickOffsetType) radon_info->height*x+y;
cristy3ed852e2009-09-05 21:47:34 +0000499 if ((i < 0) ||
500 ((MagickSizeType) (i*sizeof(*radon_info->cells)) >= radon_info->length))
501 return(MagickFalse);
502 if (radon_info->type != DiskCache)
503 {
504 radon_info->cells[i]=value;
505 return(MagickTrue);
506 }
507 count=WriteRadonCell(radon_info,i*sizeof(*radon_info->cells),
cristy44807bb2009-09-19 18:28:06 +0000508 sizeof(*radon_info->cells),(const unsigned char *) &value);
cristy3ed852e2009-09-05 21:47:34 +0000509 if (count != (ssize_t) sizeof(*radon_info->cells))
510 return(MagickFalse);
511 return(MagickTrue);
512}
513
514static void RadonProjection(RadonInfo *source_cells,
cristybb503372010-05-27 20:51:26 +0000515 RadonInfo *destination_cells,const ssize_t sign,size_t *projection)
cristy3ed852e2009-09-05 21:47:34 +0000516{
517 RadonInfo
518 *swap;
519
cristybb503372010-05-27 20:51:26 +0000520 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000521 x;
522
523 register RadonInfo
524 *p,
525 *q;
526
cristybb503372010-05-27 20:51:26 +0000527 size_t
cristy3ed852e2009-09-05 21:47:34 +0000528 step;
529
530 p=source_cells;
531 q=destination_cells;
532 for (step=1; step < p->width; step*=2)
533 {
cristyeaedf062010-05-29 22:36:02 +0000534 for (x=0; x < (ssize_t) p->width; x+=2*(ssize_t) step)
cristy3ed852e2009-09-05 21:47:34 +0000535 {
cristybb503372010-05-27 20:51:26 +0000536 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000537 i;
538
cristyd40deb62011-03-09 00:52:27 +0000539 ssize_t
540 y;
541
cristy3ed852e2009-09-05 21:47:34 +0000542 unsigned short
543 cell;
544
cristybb503372010-05-27 20:51:26 +0000545 for (i=0; i < (ssize_t) step; i++)
cristy3ed852e2009-09-05 21:47:34 +0000546 {
cristybb503372010-05-27 20:51:26 +0000547 for (y=0; y < (ssize_t) (p->height-i-1); y++)
cristy3ed852e2009-09-05 21:47:34 +0000548 {
549 cell=GetRadonCell(p,x+i,y);
cristyeaedf062010-05-29 22:36:02 +0000550 (void) SetRadonCell(q,x+2*i,y,cell+GetRadonCell(p,x+i+(ssize_t)
551 step,y+i));
552 (void) SetRadonCell(q,x+2*i+1,y,cell+GetRadonCell(p,x+i+(ssize_t)
553 step,y+i+1));
cristy3ed852e2009-09-05 21:47:34 +0000554 }
cristybb503372010-05-27 20:51:26 +0000555 for ( ; y < (ssize_t) (p->height-i); y++)
cristy3ed852e2009-09-05 21:47:34 +0000556 {
557 cell=GetRadonCell(p,x+i,y);
cristyeaedf062010-05-29 22:36:02 +0000558 (void) SetRadonCell(q,x+2*i,y,cell+GetRadonCell(p,x+i+(ssize_t) step,
559 y+i));
cristy3ed852e2009-09-05 21:47:34 +0000560 (void) SetRadonCell(q,x+2*i+1,y,cell);
561 }
cristybb503372010-05-27 20:51:26 +0000562 for ( ; y < (ssize_t) p->height; y++)
cristy3ed852e2009-09-05 21:47:34 +0000563 {
564 cell=GetRadonCell(p,x+i,y);
565 (void) SetRadonCell(q,x+2*i,y,cell);
566 (void) SetRadonCell(q,x+2*i+1,y,cell);
567 }
568 }
569 }
570 swap=p;
571 p=q;
572 q=swap;
573 }
cristyb5d5f722009-11-04 03:03:49 +0000574#if defined(MAGICKCORE_OPENMP_SUPPORT)
575 #pragma omp parallel for schedule(dynamic,4)
cristy3ed852e2009-09-05 21:47:34 +0000576#endif
cristybb503372010-05-27 20:51:26 +0000577 for (x=0; x < (ssize_t) p->width; x++)
cristy3ed852e2009-09-05 21:47:34 +0000578 {
cristybb503372010-05-27 20:51:26 +0000579 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000580 y;
581
cristybb503372010-05-27 20:51:26 +0000582 size_t
cristy3ed852e2009-09-05 21:47:34 +0000583 sum;
584
585 sum=0;
cristybb503372010-05-27 20:51:26 +0000586 for (y=0; y < (ssize_t) (p->height-1); y++)
cristy3ed852e2009-09-05 21:47:34 +0000587 {
cristybb503372010-05-27 20:51:26 +0000588 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000589 delta;
590
cristybb503372010-05-27 20:51:26 +0000591 delta=GetRadonCell(p,x,y)-(ssize_t) GetRadonCell(p,x,y+1);
cristy3ed852e2009-09-05 21:47:34 +0000592 sum+=delta*delta;
593 }
594 projection[p->width+sign*x-1]=sum;
595 }
596}
597
598static MagickBooleanType RadonTransform(const Image *image,
cristybb503372010-05-27 20:51:26 +0000599 const double threshold,size_t *projection,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000600{
601 CacheView
602 *image_view;
603
cristy3ed852e2009-09-05 21:47:34 +0000604 MagickBooleanType
605 status;
606
607 RadonInfo
608 *destination_cells,
609 *source_cells;
610
cristybb503372010-05-27 20:51:26 +0000611 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000612 i;
613
cristybb503372010-05-27 20:51:26 +0000614 size_t
cristy3ed852e2009-09-05 21:47:34 +0000615 count,
616 width;
617
cristyd40deb62011-03-09 00:52:27 +0000618 ssize_t
619 y;
620
621 unsigned char
622 byte;
623
cristy3ed852e2009-09-05 21:47:34 +0000624 unsigned short
625 bits[256];
626
627 for (width=1; width < ((image->columns+7)/8); width<<=1) ;
628 source_cells=AcquireRadonInfo(image,width,image->rows,exception);
629 destination_cells=AcquireRadonInfo(image,width,image->rows,exception);
630 if ((source_cells == (RadonInfo *) NULL) ||
631 (destination_cells == (RadonInfo *) NULL))
632 {
633 if (destination_cells != (RadonInfo *) NULL)
634 destination_cells=DestroyRadonInfo(destination_cells);
635 if (source_cells != (RadonInfo *) NULL)
636 source_cells=DestroyRadonInfo(source_cells);
637 return(MagickFalse);
638 }
639 if (ResetRadonCells(source_cells) == MagickFalse)
640 {
641 destination_cells=DestroyRadonInfo(destination_cells);
642 source_cells=DestroyRadonInfo(source_cells);
643 return(MagickFalse);
644 }
645 for (i=0; i < 256; i++)
646 {
647 byte=(unsigned char) i;
648 for (count=0; byte != 0; byte>>=1)
649 count+=byte & 0x01;
650 bits[i]=(unsigned short) count;
651 }
652 status=MagickTrue;
653 image_view=AcquireCacheView(image);
cristyb5d5f722009-11-04 03:03:49 +0000654#if defined(MAGICKCORE_OPENMP_SUPPORT)
655 #pragma omp parallel for schedule(dynamic,4) shared(status)
cristy3ed852e2009-09-05 21:47:34 +0000656#endif
cristybb503372010-05-27 20:51:26 +0000657 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000658 {
cristy4c08aed2011-07-01 19:47:50 +0000659 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +0000660 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +0000661
cristybb503372010-05-27 20:51:26 +0000662 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000663 i,
664 x;
665
cristybb503372010-05-27 20:51:26 +0000666 size_t
cristy3ed852e2009-09-05 21:47:34 +0000667 bit,
668 byte;
669
670 if (status == MagickFalse)
671 continue;
672 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000673 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000674 {
675 status=MagickFalse;
676 continue;
677 }
678 bit=0;
679 byte=0;
cristybb503372010-05-27 20:51:26 +0000680 i=(ssize_t) (image->columns+7)/8;
681 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000682 {
683 byte<<=1;
cristy5b8dd492011-10-09 13:56:36 +0000684 if ((double) GetPixelIntensity(image,p) < threshold)
cristy3ed852e2009-09-05 21:47:34 +0000685 byte|=0x01;
686 bit++;
687 if (bit == 8)
688 {
689 (void) SetRadonCell(source_cells,--i,y,bits[byte]);
690 bit=0;
691 byte=0;
692 }
cristyed231572011-07-14 02:18:59 +0000693 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000694 }
695 if (bit != 0)
696 {
697 byte<<=(8-bit);
698 (void) SetRadonCell(source_cells,--i,y,bits[byte]);
699 }
700 }
701 RadonProjection(source_cells,destination_cells,-1,projection);
702 (void) ResetRadonCells(source_cells);
cristyb5d5f722009-11-04 03:03:49 +0000703#if defined(MAGICKCORE_OPENMP_SUPPORT)
704 #pragma omp parallel for schedule(dynamic,4) shared(status)
cristy3ed852e2009-09-05 21:47:34 +0000705#endif
cristybb503372010-05-27 20:51:26 +0000706 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000707 {
cristy4c08aed2011-07-01 19:47:50 +0000708 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +0000709 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +0000710
cristybb503372010-05-27 20:51:26 +0000711 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000712 i,
713 x;
714
cristybb503372010-05-27 20:51:26 +0000715 size_t
cristy3ed852e2009-09-05 21:47:34 +0000716 bit,
717 byte;
718
719 if (status == MagickFalse)
720 continue;
721 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000722 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000723 {
724 status=MagickFalse;
725 continue;
726 }
727 bit=0;
728 byte=0;
729 i=0;
cristybb503372010-05-27 20:51:26 +0000730 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000731 {
732 byte<<=1;
cristy5b8dd492011-10-09 13:56:36 +0000733 if ((double) GetPixelIntensity(image,p) < threshold)
cristy3ed852e2009-09-05 21:47:34 +0000734 byte|=0x01;
735 bit++;
736 if (bit == 8)
737 {
738 (void) SetRadonCell(source_cells,i++,y,bits[byte]);
739 bit=0;
740 byte=0;
741 }
cristyed231572011-07-14 02:18:59 +0000742 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000743 }
744 if (bit != 0)
745 {
746 byte<<=(8-bit);
747 (void) SetRadonCell(source_cells,i++,y,bits[byte]);
748 }
749 }
750 RadonProjection(source_cells,destination_cells,1,projection);
751 image_view=DestroyCacheView(image_view);
752 destination_cells=DestroyRadonInfo(destination_cells);
753 source_cells=DestroyRadonInfo(source_cells);
754 return(MagickTrue);
755}
756
cristybb503372010-05-27 20:51:26 +0000757static void GetImageBackgroundColor(Image *image,const ssize_t offset,
cristy3ed852e2009-09-05 21:47:34 +0000758 ExceptionInfo *exception)
759{
760 CacheView
761 *image_view;
762
cristy4c08aed2011-07-01 19:47:50 +0000763 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000764 background;
765
766 MagickRealType
767 count;
768
cristyd40deb62011-03-09 00:52:27 +0000769 ssize_t
770 y;
771
cristy3ed852e2009-09-05 21:47:34 +0000772 /*
773 Compute average background color.
774 */
775 if (offset <= 0)
776 return;
cristy4c08aed2011-07-01 19:47:50 +0000777 GetPixelInfo(image,&background);
cristy3ed852e2009-09-05 21:47:34 +0000778 count=0.0;
779 image_view=AcquireCacheView(image);
cristybb503372010-05-27 20:51:26 +0000780 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000781 {
cristy4c08aed2011-07-01 19:47:50 +0000782 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +0000783 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +0000784
cristybb503372010-05-27 20:51:26 +0000785 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000786 x;
787
cristybb503372010-05-27 20:51:26 +0000788 if ((y >= offset) && (y < ((ssize_t) image->rows-offset)))
cristy3ed852e2009-09-05 21:47:34 +0000789 continue;
790 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000791 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000792 continue;
cristybb503372010-05-27 20:51:26 +0000793 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000794 {
cristybb503372010-05-27 20:51:26 +0000795 if ((x >= offset) && (x < ((ssize_t) image->columns-offset)))
cristy3ed852e2009-09-05 21:47:34 +0000796 continue;
cristy4c08aed2011-07-01 19:47:50 +0000797 background.red+=QuantumScale*GetPixelRed(image,p);
798 background.green+=QuantumScale*GetPixelGreen(image,p);
799 background.blue+=QuantumScale*GetPixelBlue(image,p);
cristy26295322011-09-22 00:50:36 +0000800 if ((GetPixelAlphaTraits(image) & UpdatePixelTrait) != 0)
801 background.alpha+=QuantumScale*GetPixelAlpha(image,p);
cristy3ed852e2009-09-05 21:47:34 +0000802 count++;
cristyed231572011-07-14 02:18:59 +0000803 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000804 }
805 }
806 image_view=DestroyCacheView(image_view);
cristy5b8dd492011-10-09 13:56:36 +0000807 image->background_color.red=(double) ClampToQuantum((MagickRealType)
808 QuantumRange*background.red/count);
809 image->background_color.green=(double) ClampToQuantum((MagickRealType)
810 QuantumRange*background.green/count);
811 image->background_color.blue=(double) ClampToQuantum((MagickRealType)
812 QuantumRange*background.blue/count);
cristy26295322011-09-22 00:50:36 +0000813 if ((GetPixelAlphaTraits(image) & UpdatePixelTrait) != 0)
cristy5b8dd492011-10-09 13:56:36 +0000814 image->background_color.alpha=(double) ClampToQuantum((MagickRealType)
815 QuantumRange*background.alpha/count);
cristy3ed852e2009-09-05 21:47:34 +0000816}
817
818MagickExport Image *DeskewImage(const Image *image,const double threshold,
819 ExceptionInfo *exception)
820{
821 AffineMatrix
822 affine_matrix;
823
824 const char
825 *artifact;
826
827 double
828 degrees;
829
830 Image
831 *clone_image,
832 *crop_image,
833 *deskew_image,
834 *median_image;
835
cristy3ed852e2009-09-05 21:47:34 +0000836 MagickBooleanType
837 status;
838
839 RectangleInfo
840 geometry;
841
cristybb503372010-05-27 20:51:26 +0000842 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000843 i;
844
cristybb503372010-05-27 20:51:26 +0000845 size_t
cristy3ed852e2009-09-05 21:47:34 +0000846 max_projection,
847 *projection,
848 width;
849
cristyd40deb62011-03-09 00:52:27 +0000850 ssize_t
851 skew;
852
cristy3ed852e2009-09-05 21:47:34 +0000853 /*
854 Compute deskew angle.
855 */
856 for (width=1; width < ((image->columns+7)/8); width<<=1) ;
cristybb503372010-05-27 20:51:26 +0000857 projection=(size_t *) AcquireQuantumMemory((size_t) (2*width-1),
cristy3ed852e2009-09-05 21:47:34 +0000858 sizeof(*projection));
cristybb503372010-05-27 20:51:26 +0000859 if (projection == (size_t *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000860 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
861 status=RadonTransform(image,threshold,projection,exception);
862 if (status == MagickFalse)
863 {
cristybb503372010-05-27 20:51:26 +0000864 projection=(size_t *) RelinquishMagickMemory(projection);
cristy3ed852e2009-09-05 21:47:34 +0000865 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
866 }
867 max_projection=0;
868 skew=0;
cristybb503372010-05-27 20:51:26 +0000869 for (i=0; i < (ssize_t) (2*width-1); i++)
cristy3ed852e2009-09-05 21:47:34 +0000870 {
871 if (projection[i] > max_projection)
872 {
cristybb503372010-05-27 20:51:26 +0000873 skew=i-(ssize_t) width+1;
cristy3ed852e2009-09-05 21:47:34 +0000874 max_projection=projection[i];
875 }
876 }
cristybb503372010-05-27 20:51:26 +0000877 projection=(size_t *) RelinquishMagickMemory(projection);
cristy3ed852e2009-09-05 21:47:34 +0000878 /*
879 Deskew image.
880 */
881 clone_image=CloneImage(image,0,0,MagickTrue,exception);
882 if (clone_image == (Image *) NULL)
883 return((Image *) NULL);
884 (void) SetImageVirtualPixelMethod(clone_image,BackgroundVirtualPixelMethod);
885 degrees=RadiansToDegrees(-atan((double) skew/width/8));
886 if (image->debug != MagickFalse)
cristy8cd5b312010-01-07 01:10:24 +0000887 (void) LogMagickEvent(TransformEvent,GetMagickModule(),
cristye7f51092010-01-17 00:39:37 +0000888 " Deskew angle: %g",degrees);
cristy3ed852e2009-09-05 21:47:34 +0000889 affine_matrix.sx=cos(DegreesToRadians(fmod((double) degrees,360.0)));
890 affine_matrix.rx=sin(DegreesToRadians(fmod((double) degrees,360.0)));
891 affine_matrix.ry=(-sin(DegreesToRadians(fmod((double) degrees,360.0))));
892 affine_matrix.sy=cos(DegreesToRadians(fmod((double) degrees,360.0)));
893 affine_matrix.tx=0.0;
894 affine_matrix.ty=0.0;
895 artifact=GetImageArtifact(image,"deskew:auto-crop");
896 if (artifact == (const char *) NULL)
897 {
898 deskew_image=AffineTransformImage(clone_image,&affine_matrix,exception);
899 clone_image=DestroyImage(clone_image);
900 return(deskew_image);
901 }
902 /*
903 Auto-crop image.
904 */
cristyba978e12010-09-12 20:26:50 +0000905 GetImageBackgroundColor(clone_image,(ssize_t) StringToLong(artifact),
906 exception);
cristy3ed852e2009-09-05 21:47:34 +0000907 deskew_image=AffineTransformImage(clone_image,&affine_matrix,exception);
908 clone_image=DestroyImage(clone_image);
909 if (deskew_image == (Image *) NULL)
910 return((Image *) NULL);
cristy95c38342011-03-18 22:39:51 +0000911 median_image=StatisticImage(deskew_image,MedianStatistic,3,3,exception);
cristy3ed852e2009-09-05 21:47:34 +0000912 if (median_image == (Image *) NULL)
913 {
914 deskew_image=DestroyImage(deskew_image);
915 return((Image *) NULL);
916 }
917 geometry=GetImageBoundingBox(median_image,exception);
918 median_image=DestroyImage(median_image);
919 if (image->debug != MagickFalse)
920 (void) LogMagickEvent(TransformEvent,GetMagickModule()," Deskew geometry: "
cristy6d8abba2010-06-03 01:10:47 +0000921 "%.20gx%.20g%+.20g%+.20g",(double) geometry.width,(double)
cristye8c25f92010-06-03 00:53:06 +0000922 geometry.height,(double) geometry.x,(double) geometry.y);
cristy3ed852e2009-09-05 21:47:34 +0000923 crop_image=CropImage(deskew_image,&geometry,exception);
924 deskew_image=DestroyImage(deskew_image);
925 return(crop_image);
926}
927
928/*
929%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
930% %
931% %
932% %
cristy987feef2011-11-17 12:24:56 +0000933% I n t e g r a l R o t a t e I m a g e %
cristy3ed852e2009-09-05 21:47:34 +0000934% %
935% %
936% %
937%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
938%
cristy3dfa16c2010-05-17 19:34:48 +0000939% IntegralRotateImage() rotates the image an integral of 90 degrees. It
cristy3ed852e2009-09-05 21:47:34 +0000940% allocates the memory necessary for the new Image structure and returns a
941% pointer to the rotated image.
942%
943% The format of the IntegralRotateImage method is:
944%
cristybb503372010-05-27 20:51:26 +0000945% Image *IntegralRotateImage(const Image *image,size_t rotations,
cristy3ed852e2009-09-05 21:47:34 +0000946% ExceptionInfo *exception)
947%
948% A description of each parameter follows.
949%
950% o image: the image.
951%
952% o rotations: Specifies the number of 90 degree rotations.
953%
954*/
cristy987feef2011-11-17 12:24:56 +0000955MagickExport Image *IntegralRotateImage(const Image *image,size_t rotations,
cristy3ed852e2009-09-05 21:47:34 +0000956 ExceptionInfo *exception)
957{
cristy3ed852e2009-09-05 21:47:34 +0000958#define RotateImageTag "Rotate/Image"
959
960 CacheView
961 *image_view,
962 *rotate_view;
963
964 Image
965 *rotate_image;
966
cristy3ed852e2009-09-05 21:47:34 +0000967 MagickBooleanType
968 status;
969
cristy5f959472010-05-27 22:19:46 +0000970 MagickOffsetType
971 progress;
972
cristy3ed852e2009-09-05 21:47:34 +0000973 RectangleInfo
974 page;
975
cristy5f959472010-05-27 22:19:46 +0000976 ssize_t
977 y;
978
cristy3ed852e2009-09-05 21:47:34 +0000979 /*
980 Initialize rotated image attributes.
981 */
982 assert(image != (Image *) NULL);
983 page=image->page;
984 rotations%=4;
cristyb32b90a2009-09-07 21:45:48 +0000985 if (rotations == 0)
986 return(CloneImage(image,0,0,MagickTrue,exception));
cristy3ed852e2009-09-05 21:47:34 +0000987 if ((rotations == 1) || (rotations == 3))
988 rotate_image=CloneImage(image,image->rows,image->columns,MagickTrue,
989 exception);
990 else
991 rotate_image=CloneImage(image,image->columns,image->rows,MagickTrue,
992 exception);
993 if (rotate_image == (Image *) NULL)
994 return((Image *) NULL);
995 /*
996 Integral rotate the image.
997 */
998 status=MagickTrue;
999 progress=0;
1000 image_view=AcquireCacheView(image);
1001 rotate_view=AcquireCacheView(rotate_image);
1002 switch (rotations)
1003 {
1004 case 0:
1005 {
1006 /*
1007 Rotate 0 degrees.
1008 */
cristy3ed852e2009-09-05 21:47:34 +00001009 break;
1010 }
1011 case 1:
1012 {
cristybb503372010-05-27 20:51:26 +00001013 size_t
cristyb32b90a2009-09-07 21:45:48 +00001014 tile_height,
1015 tile_width;
1016
cristyd40deb62011-03-09 00:52:27 +00001017 ssize_t
1018 tile_y;
1019
cristy3ed852e2009-09-05 21:47:34 +00001020 /*
1021 Rotate 90 degrees.
1022 */
cristyb32b90a2009-09-07 21:45:48 +00001023 GetPixelCacheTileSize(image,&tile_width,&tile_height);
cristy11b69e32011-09-29 16:32:44 +00001024 tile_width=image->columns;
cristye31fbf02011-10-10 11:58:31 +00001025#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyc8388eb2011-10-10 11:56:42 +00001026 #pragma omp parallel for schedule(dynamic,4) shared(progress, status) omp_throttle(1)
cristyad11aac2011-09-25 21:29:16 +00001027#endif
1028 for (tile_y=0; tile_y < (ssize_t) image->rows; tile_y+=(ssize_t) tile_height)
cristy3ed852e2009-09-05 21:47:34 +00001029 {
cristybb503372010-05-27 20:51:26 +00001030 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001031 tile_x;
1032
1033 if (status == MagickFalse)
1034 continue;
cristy26295322011-09-22 00:50:36 +00001035 tile_x=0;
1036 for ( ; tile_x < (ssize_t) image->columns; tile_x+=(ssize_t) tile_width)
cristy3ed852e2009-09-05 21:47:34 +00001037 {
1038 MagickBooleanType
1039 sync;
1040
cristy4c08aed2011-07-01 19:47:50 +00001041 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +00001042 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +00001043
cristy4c08aed2011-07-01 19:47:50 +00001044 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00001045 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00001046
cristya26211e2011-10-09 01:24:57 +00001047 register ssize_t
1048 y;
1049
cristybb503372010-05-27 20:51:26 +00001050 size_t
cristyb32b90a2009-09-07 21:45:48 +00001051 height,
1052 width;
cristy3ed852e2009-09-05 21:47:34 +00001053
cristyb32b90a2009-09-07 21:45:48 +00001054 width=tile_width;
cristybb503372010-05-27 20:51:26 +00001055 if ((tile_x+(ssize_t) tile_width) > (ssize_t) image->columns)
cristya45d2ec2011-08-24 13:17:19 +00001056 width=(size_t) (tile_width-(tile_x+tile_width-image->columns));
cristyb32b90a2009-09-07 21:45:48 +00001057 height=tile_height;
cristybb503372010-05-27 20:51:26 +00001058 if ((tile_y+(ssize_t) tile_height) > (ssize_t) image->rows)
cristya45d2ec2011-08-24 13:17:19 +00001059 height=(size_t) (tile_height-(tile_y+tile_height-image->rows));
cristydaa97692009-09-13 02:10:35 +00001060 p=GetCacheViewVirtualPixels(image_view,tile_x,tile_y,width,height,
1061 exception);
cristy4c08aed2011-07-01 19:47:50 +00001062 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001063 {
1064 status=MagickFalse;
1065 break;
1066 }
cristybb503372010-05-27 20:51:26 +00001067 for (y=0; y < (ssize_t) width; y++)
cristy3ed852e2009-09-05 21:47:34 +00001068 {
cristy4c08aed2011-07-01 19:47:50 +00001069 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +00001070 *restrict tile_pixels;
cristy3ed852e2009-09-05 21:47:34 +00001071
cristybb503372010-05-27 20:51:26 +00001072 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001073 x;
1074
cristy27709ef2011-09-18 02:53:53 +00001075 if (status == MagickFalse)
1076 continue;
cristybb503372010-05-27 20:51:26 +00001077 q=QueueCacheViewAuthenticPixels(rotate_view,(ssize_t)
cristy92611572011-07-07 16:02:42 +00001078 (rotate_image->columns-(tile_y+height)),y+tile_x,height,1,
1079 exception);
cristyacd2ed22011-08-30 01:44:23 +00001080 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001081 {
1082 status=MagickFalse;
cristy27709ef2011-09-18 02:53:53 +00001083 continue;
cristy3ed852e2009-09-05 21:47:34 +00001084 }
cristyed231572011-07-14 02:18:59 +00001085 tile_pixels=p+((height-1)*width+y)*GetPixelChannels(image);
cristybb503372010-05-27 20:51:26 +00001086 for (x=0; x < (ssize_t) height; x++)
cristy3ed852e2009-09-05 21:47:34 +00001087 {
cristya45d2ec2011-08-24 13:17:19 +00001088 register ssize_t
1089 i;
1090
1091 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
1092 {
1093 PixelChannel
1094 channel;
1095
1096 PixelTrait
1097 rotate_traits,
1098 traits;
1099
1100 traits=GetPixelChannelMapTraits(image,(PixelChannel) i);
cristya45d2ec2011-08-24 13:17:19 +00001101 channel=GetPixelChannelMapChannel(image,(PixelChannel) i);
1102 rotate_traits=GetPixelChannelMapTraits(rotate_image,channel);
cristy010d7d12011-08-31 01:02:48 +00001103 if ((traits == UndefinedPixelTrait) ||
1104 (rotate_traits == UndefinedPixelTrait))
cristya45d2ec2011-08-24 13:17:19 +00001105 continue;
cristy0beccfa2011-09-25 20:47:53 +00001106 SetPixelChannel(rotate_image,channel,tile_pixels[i],q);
cristya45d2ec2011-08-24 13:17:19 +00001107 }
cristyed231572011-07-14 02:18:59 +00001108 tile_pixels-=width*GetPixelChannels(image);
1109 q+=GetPixelChannels(rotate_image);
cristy3ed852e2009-09-05 21:47:34 +00001110 }
cristy3ed852e2009-09-05 21:47:34 +00001111 sync=SyncCacheViewAuthenticPixels(rotate_view,exception);
1112 if (sync == MagickFalse)
1113 status=MagickFalse;
1114 }
1115 }
1116 if (image->progress_monitor != (MagickProgressMonitor) NULL)
1117 {
1118 MagickBooleanType
1119 proceed;
1120
cristy21e03412011-09-25 22:39:35 +00001121#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy7b650b52011-10-09 01:13:39 +00001122 #pragma omp critical (MagickCore_IntegralRotateImage)
cristy21e03412011-09-25 22:39:35 +00001123#endif
cristyb32b90a2009-09-07 21:45:48 +00001124 proceed=SetImageProgress(image,RotateImageTag,progress+=tile_height,
cristy3ed852e2009-09-05 21:47:34 +00001125 image->rows);
1126 if (proceed == MagickFalse)
1127 status=MagickFalse;
1128 }
1129 }
cristyecc2c142010-01-17 22:25:46 +00001130 (void) SetImageProgress(image,RotateImageTag,(MagickOffsetType)
1131 image->rows-1,image->rows);
cristy3ed852e2009-09-05 21:47:34 +00001132 Swap(page.width,page.height);
1133 Swap(page.x,page.y);
1134 if (page.width != 0)
cristybb503372010-05-27 20:51:26 +00001135 page.x=(ssize_t) (page.width-rotate_image->columns-page.x);
cristy3ed852e2009-09-05 21:47:34 +00001136 break;
1137 }
1138 case 2:
1139 {
1140 /*
1141 Rotate 180 degrees.
1142 */
cristye31fbf02011-10-10 11:58:31 +00001143#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy7b650b52011-10-09 01:13:39 +00001144 #pragma omp parallel for schedule(dynamic,4) shared(progress,status) omp_throttle(1)
cristydaa97692009-09-13 02:10:35 +00001145#endif
cristybb503372010-05-27 20:51:26 +00001146 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00001147 {
1148 MagickBooleanType
1149 sync;
1150
cristy4c08aed2011-07-01 19:47:50 +00001151 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +00001152 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +00001153
cristy4c08aed2011-07-01 19:47:50 +00001154 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00001155 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00001156
cristy2be50602011-10-09 01:28:13 +00001157 register ssize_t
1158 x;
1159
cristy3ed852e2009-09-05 21:47:34 +00001160 if (status == MagickFalse)
1161 continue;
cristya45d2ec2011-08-24 13:17:19 +00001162 p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
1163 q=QueueCacheViewAuthenticPixels(rotate_view,0,(ssize_t) (image->rows-y-
1164 1),image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +00001165 if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
cristy3ed852e2009-09-05 21:47:34 +00001166 {
1167 status=MagickFalse;
1168 continue;
1169 }
cristyed231572011-07-14 02:18:59 +00001170 q+=GetPixelChannels(rotate_image)*image->columns;
cristybb503372010-05-27 20:51:26 +00001171 for (x=0; x < (ssize_t) image->columns; x++)
cristy4c08aed2011-07-01 19:47:50 +00001172 {
cristya45d2ec2011-08-24 13:17:19 +00001173 register ssize_t
1174 i;
1175
cristyed231572011-07-14 02:18:59 +00001176 q-=GetPixelChannels(rotate_image);
cristya45d2ec2011-08-24 13:17:19 +00001177 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
1178 {
1179 PixelChannel
1180 channel;
1181
1182 PixelTrait
1183 rotate_traits,
1184 traits;
1185
1186 traits=GetPixelChannelMapTraits(image,(PixelChannel) i);
cristya45d2ec2011-08-24 13:17:19 +00001187 channel=GetPixelChannelMapChannel(image,(PixelChannel) i);
1188 rotate_traits=GetPixelChannelMapTraits(rotate_image,channel);
cristy010d7d12011-08-31 01:02:48 +00001189 if ((traits == UndefinedPixelTrait) ||
1190 (rotate_traits == UndefinedPixelTrait))
cristya45d2ec2011-08-24 13:17:19 +00001191 continue;
cristy0beccfa2011-09-25 20:47:53 +00001192 SetPixelChannel(rotate_image,channel,p[i],q);
cristya45d2ec2011-08-24 13:17:19 +00001193 }
cristyed231572011-07-14 02:18:59 +00001194 p+=GetPixelChannels(image);
cristy4c08aed2011-07-01 19:47:50 +00001195 }
cristy3ed852e2009-09-05 21:47:34 +00001196 sync=SyncCacheViewAuthenticPixels(rotate_view,exception);
1197 if (sync == MagickFalse)
1198 status=MagickFalse;
1199 if (image->progress_monitor != (MagickProgressMonitor) NULL)
1200 {
1201 MagickBooleanType
1202 proceed;
1203
cristy21e03412011-09-25 22:39:35 +00001204#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy7b650b52011-10-09 01:13:39 +00001205 #pragma omp critical (MagickCore_IntegralRotateImage)
cristy21e03412011-09-25 22:39:35 +00001206#endif
cristy0729beb2011-09-25 23:29:32 +00001207 proceed=SetImageProgress(image,RotateImageTag,progress++,
cristy21e03412011-09-25 22:39:35 +00001208 image->rows);
1209 if (proceed == MagickFalse)
1210 status=MagickFalse;
1211 }
1212 }
1213 (void) SetImageProgress(image,RotateImageTag,(MagickOffsetType)
1214 image->rows-1,image->rows);
1215 Swap(page.width,page.height);
1216 Swap(page.x,page.y);
1217 if (page.width != 0)
1218 page.x=(ssize_t) (page.width-rotate_image->columns-page.x);
1219 break;
1220 }
cristy3ed852e2009-09-05 21:47:34 +00001221 case 3:
1222 {
cristybb503372010-05-27 20:51:26 +00001223 size_t
cristyb32b90a2009-09-07 21:45:48 +00001224 tile_height,
1225 tile_width;
1226
cristyd40deb62011-03-09 00:52:27 +00001227 ssize_t
1228 tile_y;
1229
cristy3ed852e2009-09-05 21:47:34 +00001230 /*
1231 Rotate 270 degrees.
1232 */
cristyb32b90a2009-09-07 21:45:48 +00001233 GetPixelCacheTileSize(image,&tile_width,&tile_height);
cristy11b69e32011-09-29 16:32:44 +00001234 tile_width=image->columns;
cristye31fbf02011-10-10 11:58:31 +00001235#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristyc8388eb2011-10-10 11:56:42 +00001236 #pragma omp parallel for schedule(dynamic,4) shared(progress,status) omp_throttle(1)
cristyad11aac2011-09-25 21:29:16 +00001237#endif
1238 for (tile_y=0; tile_y < (ssize_t) image->rows; tile_y+=(ssize_t) tile_height)
cristy3ed852e2009-09-05 21:47:34 +00001239 {
cristybb503372010-05-27 20:51:26 +00001240 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001241 tile_x;
1242
1243 if (status == MagickFalse)
1244 continue;
cristy26295322011-09-22 00:50:36 +00001245 tile_x=0;
1246 for ( ; tile_x < (ssize_t) image->columns; tile_x+=(ssize_t) tile_width)
cristy3ed852e2009-09-05 21:47:34 +00001247 {
1248 MagickBooleanType
1249 sync;
1250
cristy4c08aed2011-07-01 19:47:50 +00001251 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +00001252 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +00001253
cristy4c08aed2011-07-01 19:47:50 +00001254 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00001255 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00001256
cristy2be50602011-10-09 01:28:13 +00001257 register ssize_t
1258 y;
1259
cristybb503372010-05-27 20:51:26 +00001260 size_t
cristyb32b90a2009-09-07 21:45:48 +00001261 height,
1262 width;
cristy3ed852e2009-09-05 21:47:34 +00001263
cristyb32b90a2009-09-07 21:45:48 +00001264 width=tile_width;
cristybb503372010-05-27 20:51:26 +00001265 if ((tile_x+(ssize_t) tile_width) > (ssize_t) image->columns)
cristya45d2ec2011-08-24 13:17:19 +00001266 width=(size_t) (tile_width-(tile_x+tile_width-image->columns));
cristyb32b90a2009-09-07 21:45:48 +00001267 height=tile_height;
cristybb503372010-05-27 20:51:26 +00001268 if ((tile_y+(ssize_t) tile_height) > (ssize_t) image->rows)
cristya45d2ec2011-08-24 13:17:19 +00001269 height=(size_t) (tile_height-(tile_y+tile_height-image->rows));
1270 p=GetCacheViewVirtualPixels(image_view,tile_x,tile_y,width,height,
1271 exception);
cristy4c08aed2011-07-01 19:47:50 +00001272 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001273 {
1274 status=MagickFalse;
1275 break;
1276 }
cristybb503372010-05-27 20:51:26 +00001277 for (y=0; y < (ssize_t) width; y++)
cristy3ed852e2009-09-05 21:47:34 +00001278 {
cristy4c08aed2011-07-01 19:47:50 +00001279 register const Quantum
cristyc47d1f82009-11-26 01:44:43 +00001280 *restrict tile_pixels;
cristy3ed852e2009-09-05 21:47:34 +00001281
cristybb503372010-05-27 20:51:26 +00001282 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001283 x;
1284
cristy27709ef2011-09-18 02:53:53 +00001285 if (status == MagickFalse)
1286 continue;
cristya45d2ec2011-08-24 13:17:19 +00001287 q=QueueCacheViewAuthenticPixels(rotate_view,tile_y,(ssize_t) (y+
1288 rotate_image->rows-(tile_x+width)),height,1,exception);
cristyacd2ed22011-08-30 01:44:23 +00001289 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001290 {
1291 status=MagickFalse;
cristy27709ef2011-09-18 02:53:53 +00001292 continue;
cristy3ed852e2009-09-05 21:47:34 +00001293 }
cristyed231572011-07-14 02:18:59 +00001294 tile_pixels=p+((width-1)-y)*GetPixelChannels(image);
cristybb503372010-05-27 20:51:26 +00001295 for (x=0; x < (ssize_t) height; x++)
cristy3ed852e2009-09-05 21:47:34 +00001296 {
cristya45d2ec2011-08-24 13:17:19 +00001297 register ssize_t
1298 i;
1299
1300 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
1301 {
1302 PixelChannel
1303 channel;
1304
1305 PixelTrait
1306 rotate_traits,
1307 traits;
1308
1309 traits=GetPixelChannelMapTraits(image,(PixelChannel) i);
cristya45d2ec2011-08-24 13:17:19 +00001310 channel=GetPixelChannelMapChannel(image,(PixelChannel) i);
1311 rotate_traits=GetPixelChannelMapTraits(rotate_image,channel);
cristy010d7d12011-08-31 01:02:48 +00001312 if ((traits == UndefinedPixelTrait) ||
1313 (rotate_traits == UndefinedPixelTrait))
cristya45d2ec2011-08-24 13:17:19 +00001314 continue;
cristy0beccfa2011-09-25 20:47:53 +00001315 SetPixelChannel(rotate_image,channel,tile_pixels[i],q);
cristya45d2ec2011-08-24 13:17:19 +00001316 }
cristyed231572011-07-14 02:18:59 +00001317 tile_pixels+=width*GetPixelChannels(image);
1318 q+=GetPixelChannels(rotate_image);
cristy3ed852e2009-09-05 21:47:34 +00001319 }
cristy3ed852e2009-09-05 21:47:34 +00001320 sync=SyncCacheViewAuthenticPixels(rotate_view,exception);
1321 if (sync == MagickFalse)
1322 status=MagickFalse;
1323 }
1324 }
1325 if (image->progress_monitor != (MagickProgressMonitor) NULL)
1326 {
1327 MagickBooleanType
1328 proceed;
1329
cristy21e03412011-09-25 22:39:35 +00001330#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy7b650b52011-10-09 01:13:39 +00001331 #pragma omp critical (MagickCore_IntegralRotateImage)
cristy21e03412011-09-25 22:39:35 +00001332#endif
1333 proceed=SetImageProgress(image,RotateImageTag,progress+=tile_height,
1334 image->rows);
1335 if (proceed == MagickFalse)
1336 status=MagickFalse;
1337 }
1338 }
1339 (void) SetImageProgress(image,RotateImageTag,(MagickOffsetType)
1340 image->rows-1,image->rows);
1341 Swap(page.width,page.height);
1342 Swap(page.x,page.y);
1343 if (page.width != 0)
1344 page.x=(ssize_t) (page.width-rotate_image->columns-page.x);
1345 break;
1346 }
cristy3ed852e2009-09-05 21:47:34 +00001347 }
1348 rotate_view=DestroyCacheView(rotate_view);
1349 image_view=DestroyCacheView(image_view);
1350 rotate_image->type=image->type;
1351 rotate_image->page=page;
1352 if (status == MagickFalse)
1353 rotate_image=DestroyImage(rotate_image);
1354 return(rotate_image);
1355}
1356
1357/*
1358%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1359% %
1360% %
1361% %
1362+ X S h e a r I m a g e %
1363% %
1364% %
1365% %
1366%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1367%
1368% XShearImage() shears the image in the X direction with a shear angle of
1369% 'degrees'. Positive angles shear counter-clockwise (right-hand rule), and
1370% negative angles shear clockwise. Angles are measured relative to a vertical
1371% Y-axis. X shears will widen an image creating 'empty' triangles on the left
1372% and right sides of the source image.
1373%
1374% The format of the XShearImage method is:
1375%
1376% MagickBooleanType XShearImage(Image *image,const MagickRealType degrees,
cristybb503372010-05-27 20:51:26 +00001377% const size_t width,const size_t height,
1378% const ssize_t x_offset,const ssize_t y_offset,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001379%
1380% A description of each parameter follows.
1381%
1382% o image: the image.
1383%
cristycee97112010-05-28 00:44:52 +00001384% o degrees: A MagickRealType representing the shearing angle along the X
cristy3ed852e2009-09-05 21:47:34 +00001385% axis.
1386%
1387% o width, height, x_offset, y_offset: Defines a region of the image
1388% to shear.
1389%
cristyecc2c142010-01-17 22:25:46 +00001390% o exception: return any errors or warnings in this structure.
1391%
cristy3ed852e2009-09-05 21:47:34 +00001392*/
1393static MagickBooleanType XShearImage(Image *image,const MagickRealType degrees,
cristybb503372010-05-27 20:51:26 +00001394 const size_t width,const size_t height,const ssize_t x_offset,
1395 const ssize_t y_offset,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001396{
1397#define XShearImageTag "XShear/Image"
1398
1399 typedef enum
1400 {
1401 LEFT,
1402 RIGHT
1403 } ShearDirection;
1404
1405 CacheView
1406 *image_view;
1407
cristy3ed852e2009-09-05 21:47:34 +00001408 MagickBooleanType
1409 status;
1410
cristy5f959472010-05-27 22:19:46 +00001411 MagickOffsetType
1412 progress;
1413
cristy4c08aed2011-07-01 19:47:50 +00001414 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00001415 background;
1416
cristy5f959472010-05-27 22:19:46 +00001417 ssize_t
1418 y;
1419
cristy9d8c8ce2011-10-25 16:13:52 +00001420 /*
1421 X shear image.
1422 */
cristy3ed852e2009-09-05 21:47:34 +00001423 assert(image != (Image *) NULL);
1424 assert(image->signature == MagickSignature);
1425 if (image->debug != MagickFalse)
1426 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristy3ed852e2009-09-05 21:47:34 +00001427 status=MagickTrue;
cristy9d8c8ce2011-10-25 16:13:52 +00001428 background=image->background_color;
cristy3ed852e2009-09-05 21:47:34 +00001429 progress=0;
cristy3ed852e2009-09-05 21:47:34 +00001430 image_view=AcquireCacheView(image);
cristyb5d5f722009-11-04 03:03:49 +00001431#if defined(MAGICKCORE_OPENMP_SUPPORT)
1432 #pragma omp parallel for schedule(dynamic,4) shared(progress, status)
cristy3ed852e2009-09-05 21:47:34 +00001433#endif
cristybb503372010-05-27 20:51:26 +00001434 for (y=0; y < (ssize_t) height; y++)
cristy3ed852e2009-09-05 21:47:34 +00001435 {
cristy4c08aed2011-07-01 19:47:50 +00001436 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00001437 pixel,
1438 source,
1439 destination;
1440
1441 MagickRealType
1442 area,
1443 displacement;
1444
cristy4c08aed2011-07-01 19:47:50 +00001445 register Quantum
cristyc47d1f82009-11-26 01:44:43 +00001446 *restrict p,
1447 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00001448
cristyd40deb62011-03-09 00:52:27 +00001449 register ssize_t
1450 i;
1451
cristy3ed852e2009-09-05 21:47:34 +00001452 ShearDirection
1453 direction;
1454
cristyd40deb62011-03-09 00:52:27 +00001455 ssize_t
1456 step;
1457
cristy3ed852e2009-09-05 21:47:34 +00001458 if (status == MagickFalse)
1459 continue;
1460 p=GetCacheViewAuthenticPixels(image_view,0,y_offset+y,image->columns,1,
1461 exception);
cristy4c08aed2011-07-01 19:47:50 +00001462 if (p == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001463 {
1464 status=MagickFalse;
1465 continue;
1466 }
cristyed231572011-07-14 02:18:59 +00001467 p+=x_offset*GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00001468 displacement=degrees*(MagickRealType) (y-height/2.0);
1469 if (displacement == 0.0)
1470 continue;
1471 if (displacement > 0.0)
1472 direction=RIGHT;
1473 else
1474 {
1475 displacement*=(-1.0);
1476 direction=LEFT;
1477 }
cristybb503372010-05-27 20:51:26 +00001478 step=(ssize_t) floor((double) displacement);
cristy3ed852e2009-09-05 21:47:34 +00001479 area=(MagickRealType) (displacement-step);
1480 step++;
1481 pixel=background;
cristy4c08aed2011-07-01 19:47:50 +00001482 GetPixelInfo(image,&source);
1483 GetPixelInfo(image,&destination);
cristy3ed852e2009-09-05 21:47:34 +00001484 switch (direction)
1485 {
1486 case LEFT:
1487 {
1488 /*
1489 Transfer pixels left-to-right.
1490 */
1491 if (step > x_offset)
1492 break;
cristyed231572011-07-14 02:18:59 +00001493 q=p-step*GetPixelChannels(image);
cristybb503372010-05-27 20:51:26 +00001494 for (i=0; i < (ssize_t) width; i++)
cristy3ed852e2009-09-05 21:47:34 +00001495 {
1496 if ((x_offset+i) < step)
1497 {
cristyed231572011-07-14 02:18:59 +00001498 p+=GetPixelChannels(image);
cristy803640d2011-11-17 02:11:32 +00001499 GetPixelInfoPixel(image,p,&pixel);
cristyed231572011-07-14 02:18:59 +00001500 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00001501 continue;
1502 }
cristy803640d2011-11-17 02:11:32 +00001503 GetPixelInfoPixel(image,p,&source);
cristy4c08aed2011-07-01 19:47:50 +00001504 CompositePixelInfoAreaBlend(&pixel,(MagickRealType) pixel.alpha,
cristyf53a3bb2011-10-09 02:13:12 +00001505 &source,(MagickRealType) GetPixelAlpha(image,p),area,&destination);
cristy803640d2011-11-17 02:11:32 +00001506 SetPixelInfoPixel(image,&destination,q);
1507 GetPixelInfoPixel(image,p,&pixel);
cristyed231572011-07-14 02:18:59 +00001508 p+=GetPixelChannels(image);
1509 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00001510 }
cristy4c08aed2011-07-01 19:47:50 +00001511 CompositePixelInfoAreaBlend(&pixel,(MagickRealType) pixel.alpha,
1512 &background,(MagickRealType) background.alpha,area,&destination);
cristy803640d2011-11-17 02:11:32 +00001513 SetPixelInfoPixel(image,&destination,q);
cristyed231572011-07-14 02:18:59 +00001514 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00001515 for (i=0; i < (step-1); i++)
cristy4c08aed2011-07-01 19:47:50 +00001516 {
cristy803640d2011-11-17 02:11:32 +00001517 SetPixelInfoPixel(image,&background,q);
cristyed231572011-07-14 02:18:59 +00001518 q+=GetPixelChannels(image);
cristy4c08aed2011-07-01 19:47:50 +00001519 }
cristy3ed852e2009-09-05 21:47:34 +00001520 break;
1521 }
1522 case RIGHT:
1523 {
1524 /*
1525 Transfer pixels right-to-left.
1526 */
cristyed231572011-07-14 02:18:59 +00001527 p+=width*GetPixelChannels(image);
1528 q=p+step*GetPixelChannels(image);
cristybb503372010-05-27 20:51:26 +00001529 for (i=0; i < (ssize_t) width; i++)
cristy3ed852e2009-09-05 21:47:34 +00001530 {
cristyed231572011-07-14 02:18:59 +00001531 p-=GetPixelChannels(image);
1532 q-=GetPixelChannels(image);
cristybb503372010-05-27 20:51:26 +00001533 if ((size_t) (x_offset+width+step-i) >= image->columns)
cristy3ed852e2009-09-05 21:47:34 +00001534 continue;
cristy803640d2011-11-17 02:11:32 +00001535 GetPixelInfoPixel(image,p,&source);
cristy4c08aed2011-07-01 19:47:50 +00001536 CompositePixelInfoAreaBlend(&pixel,(MagickRealType) pixel.alpha,
cristyf53a3bb2011-10-09 02:13:12 +00001537 &source,(MagickRealType) GetPixelAlpha(image,p),area,&destination);
cristy803640d2011-11-17 02:11:32 +00001538 SetPixelInfoPixel(image,&destination,q);
1539 GetPixelInfoPixel(image,p,&pixel);
cristy3ed852e2009-09-05 21:47:34 +00001540 }
cristy4c08aed2011-07-01 19:47:50 +00001541 CompositePixelInfoAreaBlend(&pixel,(MagickRealType) pixel.alpha,
1542 &background,(MagickRealType) background.alpha,area,&destination);
cristyed231572011-07-14 02:18:59 +00001543 q-=GetPixelChannels(image);
cristy803640d2011-11-17 02:11:32 +00001544 SetPixelInfoPixel(image,&destination,q);
cristy3ed852e2009-09-05 21:47:34 +00001545 for (i=0; i < (step-1); i++)
cristy4c08aed2011-07-01 19:47:50 +00001546 {
cristyed231572011-07-14 02:18:59 +00001547 q-=GetPixelChannels(image);
cristy803640d2011-11-17 02:11:32 +00001548 SetPixelInfoPixel(image,&background,q);
cristy4c08aed2011-07-01 19:47:50 +00001549 }
cristy3ed852e2009-09-05 21:47:34 +00001550 break;
1551 }
1552 }
1553 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
1554 status=MagickFalse;
1555 if (image->progress_monitor != (MagickProgressMonitor) NULL)
1556 {
1557 MagickBooleanType
1558 proceed;
1559
cristyb5d5f722009-11-04 03:03:49 +00001560#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy7b650b52011-10-09 01:13:39 +00001561 #pragma omp critical (MagickCore_XShearImage)
cristy3ed852e2009-09-05 21:47:34 +00001562#endif
1563 proceed=SetImageProgress(image,XShearImageTag,progress++,height);
1564 if (proceed == MagickFalse)
1565 status=MagickFalse;
1566 }
1567 }
1568 image_view=DestroyCacheView(image_view);
1569 return(status);
1570}
1571
1572/*
1573%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1574% %
1575% %
1576% %
1577+ Y S h e a r I m a g e %
1578% %
1579% %
1580% %
1581%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1582%
1583% YShearImage shears the image in the Y direction with a shear angle of
1584% 'degrees'. Positive angles shear counter-clockwise (right-hand rule), and
1585% negative angles shear clockwise. Angles are measured relative to a
1586% horizontal X-axis. Y shears will increase the height of an image creating
1587% 'empty' triangles on the top and bottom of the source image.
1588%
1589% The format of the YShearImage method is:
1590%
1591% MagickBooleanType YShearImage(Image *image,const MagickRealType degrees,
cristybb503372010-05-27 20:51:26 +00001592% const size_t width,const size_t height,
1593% const ssize_t x_offset,const ssize_t y_offset,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001594%
1595% A description of each parameter follows.
1596%
1597% o image: the image.
1598%
cristycee97112010-05-28 00:44:52 +00001599% o degrees: A MagickRealType representing the shearing angle along the Y
cristy3ed852e2009-09-05 21:47:34 +00001600% axis.
1601%
1602% o width, height, x_offset, y_offset: Defines a region of the image
1603% to shear.
1604%
cristyecc2c142010-01-17 22:25:46 +00001605% o exception: return any errors or warnings in this structure.
1606%
cristy3ed852e2009-09-05 21:47:34 +00001607*/
1608static MagickBooleanType YShearImage(Image *image,const MagickRealType degrees,
cristybb503372010-05-27 20:51:26 +00001609 const size_t width,const size_t height,const ssize_t x_offset,
1610 const ssize_t y_offset,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001611{
1612#define YShearImageTag "YShear/Image"
1613
1614 typedef enum
1615 {
1616 UP,
1617 DOWN
1618 } ShearDirection;
1619
1620 CacheView
1621 *image_view;
1622
cristy3ed852e2009-09-05 21:47:34 +00001623 MagickBooleanType
1624 status;
1625
cristy5f959472010-05-27 22:19:46 +00001626 MagickOffsetType
1627 progress;
1628
cristy4c08aed2011-07-01 19:47:50 +00001629 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +00001630 background;
1631
cristy5f959472010-05-27 22:19:46 +00001632 ssize_t
1633 x;
1634
cristy9d8c8ce2011-10-25 16:13:52 +00001635 /*
1636 Y Shear image.
1637 */
cristy3ed852e2009-09-05 21:47:34 +00001638 assert(image != (Image *) NULL);
1639 assert(image->signature == MagickSignature);
1640 if (image->debug != MagickFalse)
1641 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristy3ed852e2009-09-05 21:47:34 +00001642 status=MagickTrue;
1643 progress=0;
cristy9d8c8ce2011-10-25 16:13:52 +00001644 background=image->background_color;
cristy3ed852e2009-09-05 21:47:34 +00001645 image_view=AcquireCacheView(image);
cristyb5d5f722009-11-04 03:03:49 +00001646#if defined(MAGICKCORE_OPENMP_SUPPORT)
1647 #pragma omp parallel for schedule(dynamic,4) shared(progress, status)
cristy3ed852e2009-09-05 21:47:34 +00001648#endif
cristybb503372010-05-27 20:51:26 +00001649 for (x=0; x < (ssize_t) width; x++)
cristy3ed852e2009-09-05 21:47:34 +00001650 {
cristybb503372010-05-27 20:51:26 +00001651 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001652 step;
1653
cristy3ed852e2009-09-05 21:47:34 +00001654 MagickRealType
1655 area,
1656 displacement;
1657
cristy4c08aed2011-07-01 19:47:50 +00001658 PixelInfo
1659 pixel,
1660 source,
1661 destination;
1662
1663 register Quantum
1664 *restrict p,
1665 *restrict q;
cristy3ed852e2009-09-05 21:47:34 +00001666
cristybb503372010-05-27 20:51:26 +00001667 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001668 i;
1669
cristy3ed852e2009-09-05 21:47:34 +00001670 ShearDirection
1671 direction;
1672
1673 if (status == MagickFalse)
1674 continue;
1675 p=GetCacheViewAuthenticPixels(image_view,x_offset+x,0,1,image->rows,
1676 exception);
cristy4c08aed2011-07-01 19:47:50 +00001677 if (p == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001678 {
1679 status=MagickFalse;
1680 continue;
1681 }
cristyed231572011-07-14 02:18:59 +00001682 p+=y_offset*GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00001683 displacement=degrees*(MagickRealType) (x-width/2.0);
1684 if (displacement == 0.0)
1685 continue;
1686 if (displacement > 0.0)
1687 direction=DOWN;
1688 else
1689 {
1690 displacement*=(-1.0);
1691 direction=UP;
1692 }
cristybb503372010-05-27 20:51:26 +00001693 step=(ssize_t) floor((double) displacement);
cristy3ed852e2009-09-05 21:47:34 +00001694 area=(MagickRealType) (displacement-step);
1695 step++;
1696 pixel=background;
cristy4c08aed2011-07-01 19:47:50 +00001697 GetPixelInfo(image,&source);
1698 GetPixelInfo(image,&destination);
cristy3ed852e2009-09-05 21:47:34 +00001699 switch (direction)
1700 {
1701 case UP:
1702 {
1703 /*
1704 Transfer pixels top-to-bottom.
1705 */
1706 if (step > y_offset)
1707 break;
cristyed231572011-07-14 02:18:59 +00001708 q=p-step*GetPixelChannels(image);
cristybb503372010-05-27 20:51:26 +00001709 for (i=0; i < (ssize_t) height; i++)
cristy3ed852e2009-09-05 21:47:34 +00001710 {
1711 if ((y_offset+i) < step)
1712 {
cristyed231572011-07-14 02:18:59 +00001713 p+=GetPixelChannels(image);
cristy803640d2011-11-17 02:11:32 +00001714 GetPixelInfoPixel(image,p,&pixel);
cristyed231572011-07-14 02:18:59 +00001715 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00001716 continue;
1717 }
cristy803640d2011-11-17 02:11:32 +00001718 GetPixelInfoPixel(image,p,&source);
cristy4c08aed2011-07-01 19:47:50 +00001719 CompositePixelInfoAreaBlend(&pixel,(MagickRealType) pixel.alpha,
1720 &source,(MagickRealType) GetPixelAlpha(image,p),area,
1721 &destination);
cristy803640d2011-11-17 02:11:32 +00001722 SetPixelInfoPixel(image,&destination,q);
1723 GetPixelInfoPixel(image,p,&pixel);
cristyed231572011-07-14 02:18:59 +00001724 p+=GetPixelChannels(image);
1725 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00001726 }
cristy4c08aed2011-07-01 19:47:50 +00001727 CompositePixelInfoAreaBlend(&pixel,(MagickRealType) pixel.alpha,
1728 &background,(MagickRealType) background.alpha,area,&destination);
cristy803640d2011-11-17 02:11:32 +00001729 SetPixelInfoPixel(image,&destination,q);
cristyed231572011-07-14 02:18:59 +00001730 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +00001731 for (i=0; i < (step-1); i++)
cristy4c08aed2011-07-01 19:47:50 +00001732 {
cristy803640d2011-11-17 02:11:32 +00001733 SetPixelInfoPixel(image,&background,q);
cristyed231572011-07-14 02:18:59 +00001734 q+=GetPixelChannels(image);
cristy4c08aed2011-07-01 19:47:50 +00001735 }
cristy3ed852e2009-09-05 21:47:34 +00001736 break;
1737 }
1738 case DOWN:
1739 {
1740 /*
1741 Transfer pixels bottom-to-top.
1742 */
cristyed231572011-07-14 02:18:59 +00001743 p+=height*GetPixelChannels(image);
1744 q=p+step*GetPixelChannels(image);
cristybb503372010-05-27 20:51:26 +00001745 for (i=0; i < (ssize_t) height; i++)
cristy3ed852e2009-09-05 21:47:34 +00001746 {
cristyed231572011-07-14 02:18:59 +00001747 p-=GetPixelChannels(image);
1748 q-=GetPixelChannels(image);
cristybb503372010-05-27 20:51:26 +00001749 if ((size_t) (y_offset+height+step-i) >= image->rows)
cristy3ed852e2009-09-05 21:47:34 +00001750 continue;
cristy803640d2011-11-17 02:11:32 +00001751 GetPixelInfoPixel(image,p,&source);
cristy4c08aed2011-07-01 19:47:50 +00001752 CompositePixelInfoAreaBlend(&pixel,(MagickRealType) pixel.alpha,
1753 &source,(MagickRealType) GetPixelAlpha(image,p),area,
1754 &destination);
cristy803640d2011-11-17 02:11:32 +00001755 SetPixelInfoPixel(image,&destination,q);
1756 GetPixelInfoPixel(image,p,&pixel);
cristy3ed852e2009-09-05 21:47:34 +00001757 }
cristy4c08aed2011-07-01 19:47:50 +00001758 CompositePixelInfoAreaBlend(&pixel,(MagickRealType) pixel.alpha,
1759 &background,(MagickRealType) background.alpha,area,&destination);
cristyed231572011-07-14 02:18:59 +00001760 q-=GetPixelChannels(image);
cristy803640d2011-11-17 02:11:32 +00001761 SetPixelInfoPixel(image,&destination,q);
cristy3ed852e2009-09-05 21:47:34 +00001762 for (i=0; i < (step-1); i++)
cristy4c08aed2011-07-01 19:47:50 +00001763 {
cristyed231572011-07-14 02:18:59 +00001764 q-=GetPixelChannels(image);
cristy803640d2011-11-17 02:11:32 +00001765 SetPixelInfoPixel(image,&background,q);
cristy4c08aed2011-07-01 19:47:50 +00001766 }
cristy3ed852e2009-09-05 21:47:34 +00001767 break;
1768 }
1769 }
1770 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse)
1771 status=MagickFalse;
1772 if (image->progress_monitor != (MagickProgressMonitor) NULL)
1773 {
1774 MagickBooleanType
1775 proceed;
1776
cristyb5d5f722009-11-04 03:03:49 +00001777#if defined(MAGICKCORE_OPENMP_SUPPORT)
cristy7b650b52011-10-09 01:13:39 +00001778 #pragma omp critical (MagickCore_YShearImage)
cristy3ed852e2009-09-05 21:47:34 +00001779#endif
1780 proceed=SetImageProgress(image,YShearImageTag,progress++,image->rows);
1781 if (proceed == MagickFalse)
1782 status=MagickFalse;
1783 }
1784 }
1785 image_view=DestroyCacheView(image_view);
1786 return(status);
1787}
1788
1789/*
1790%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1791% %
1792% %
1793% %
cristy3ed852e2009-09-05 21:47:34 +00001794% S h e a r I m a g e %
1795% %
1796% %
1797% %
1798%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1799%
1800% ShearImage() creates a new image that is a shear_image copy of an existing
cristycee97112010-05-28 00:44:52 +00001801% one. Shearing slides one edge of an image along the X or Y axis, creating
1802% a parallelogram. An X direction shear slides an edge along the X axis,
1803% while a Y direction shear slides an edge along the Y axis. The amount of
cristy3ed852e2009-09-05 21:47:34 +00001804% the shear is controlled by a shear angle. For X direction shears, x_shear
1805% is measured relative to the Y axis, and similarly, for Y direction shears
1806% y_shear is measured relative to the X axis. Empty triangles left over from
1807% shearing the image are filled with the background color defined by member
1808% 'background_color' of the image.. ShearImage() allocates the memory
1809% necessary for the new Image structure and returns a pointer to the new image.
1810%
1811% ShearImage() is based on the paper "A Fast Algorithm for General Raster
1812% Rotatation" by Alan W. Paeth.
1813%
1814% The format of the ShearImage method is:
1815%
1816% Image *ShearImage(const Image *image,const double x_shear,
1817% const double y_shear,ExceptionInfo *exception)
1818%
1819% A description of each parameter follows.
1820%
1821% o image: the image.
1822%
1823% o x_shear, y_shear: Specifies the number of degrees to shear the image.
1824%
1825% o exception: return any errors or warnings in this structure.
1826%
1827*/
1828MagickExport Image *ShearImage(const Image *image,const double x_shear,
1829 const double y_shear,ExceptionInfo *exception)
1830{
1831 Image
1832 *integral_image,
1833 *shear_image;
1834
cristybb503372010-05-27 20:51:26 +00001835 ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001836 x_offset,
1837 y_offset;
1838
cristyecc2c142010-01-17 22:25:46 +00001839 MagickBooleanType
1840 status;
1841
cristy3ed852e2009-09-05 21:47:34 +00001842 PointInfo
1843 shear;
1844
1845 RectangleInfo
1846 border_info;
1847
cristybb503372010-05-27 20:51:26 +00001848 size_t
cristy3ed852e2009-09-05 21:47:34 +00001849 y_width;
1850
1851 assert(image != (Image *) NULL);
1852 assert(image->signature == MagickSignature);
1853 if (image->debug != MagickFalse)
1854 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1855 assert(exception != (ExceptionInfo *) NULL);
1856 assert(exception->signature == MagickSignature);
1857 if ((x_shear != 0.0) && (fmod(x_shear,90.0) == 0.0))
1858 ThrowImageException(ImageError,"AngleIsDiscontinuous");
1859 if ((y_shear != 0.0) && (fmod(y_shear,90.0) == 0.0))
1860 ThrowImageException(ImageError,"AngleIsDiscontinuous");
1861 /*
1862 Initialize shear angle.
1863 */
1864 integral_image=CloneImage(image,0,0,MagickTrue,exception);
1865 if (integral_image == (Image *) NULL)
1866 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
1867 shear.x=(-tan(DegreesToRadians(fmod(x_shear,360.0))));
1868 shear.y=tan(DegreesToRadians(fmod(y_shear,360.0)));
1869 if ((shear.x == 0.0) && (shear.y == 0.0))
1870 return(integral_image);
cristy574cc262011-08-05 01:23:58 +00001871 if (SetImageStorageClass(integral_image,DirectClass,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00001872 {
cristy3ed852e2009-09-05 21:47:34 +00001873 integral_image=DestroyImage(integral_image);
1874 return(integral_image);
1875 }
1876 if (integral_image->matte == MagickFalse)
cristy63240882011-08-05 19:05:27 +00001877 (void) SetImageAlphaChannel(integral_image,OpaqueAlphaChannel,exception);
cristy3ed852e2009-09-05 21:47:34 +00001878 /*
1879 Compute image size.
1880 */
cristybb503372010-05-27 20:51:26 +00001881 y_width=image->columns+(ssize_t) floor(fabs(shear.x)*image->rows+0.5);
cristycee97112010-05-28 00:44:52 +00001882 x_offset=(ssize_t) ceil((double) image->columns+((fabs(shear.x)*image->rows)-
cristy06609ee2010-03-17 20:21:27 +00001883 image->columns)/2.0-0.5);
cristycee97112010-05-28 00:44:52 +00001884 y_offset=(ssize_t) ceil((double) image->rows+((fabs(shear.y)*y_width)-
1885 image->rows)/2.0-0.5);
cristy3ed852e2009-09-05 21:47:34 +00001886 /*
1887 Surround image with border.
1888 */
1889 integral_image->border_color=integral_image->background_color;
1890 integral_image->compose=CopyCompositeOp;
cristybb503372010-05-27 20:51:26 +00001891 border_info.width=(size_t) x_offset;
1892 border_info.height=(size_t) y_offset;
cristy633f0c62011-09-15 13:27:36 +00001893 shear_image=BorderImage(integral_image,&border_info,image->compose,exception);
cristyecc2c142010-01-17 22:25:46 +00001894 integral_image=DestroyImage(integral_image);
cristy3ed852e2009-09-05 21:47:34 +00001895 if (shear_image == (Image *) NULL)
1896 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
cristy3ed852e2009-09-05 21:47:34 +00001897 /*
1898 Shear the image.
1899 */
1900 if (shear_image->matte == MagickFalse)
cristy63240882011-08-05 19:05:27 +00001901 (void) SetImageAlphaChannel(shear_image,OpaqueAlphaChannel,exception);
cristyecc2c142010-01-17 22:25:46 +00001902 status=XShearImage(shear_image,shear.x,image->columns,image->rows,x_offset,
cristyeaedf062010-05-29 22:36:02 +00001903 (ssize_t) (shear_image->rows-image->rows)/2,exception);
cristyecc2c142010-01-17 22:25:46 +00001904 if (status == MagickFalse)
1905 {
1906 shear_image=DestroyImage(shear_image);
1907 return((Image *) NULL);
1908 }
cristyeaedf062010-05-29 22:36:02 +00001909 status=YShearImage(shear_image,shear.y,y_width,image->rows,(ssize_t)
1910 (shear_image->columns-y_width)/2,y_offset,exception);
cristyecc2c142010-01-17 22:25:46 +00001911 if (status == MagickFalse)
1912 {
1913 shear_image=DestroyImage(shear_image);
1914 return((Image *) NULL);
1915 }
1916 status=CropToFitImage(&shear_image,shear.x,shear.y,(MagickRealType)
1917 image->columns,(MagickRealType) image->rows,MagickFalse,exception);
1918 if (status == MagickFalse)
1919 {
1920 shear_image=DestroyImage(shear_image);
1921 return((Image *) NULL);
1922 }
cristy3ed852e2009-09-05 21:47:34 +00001923 shear_image->compose=image->compose;
1924 shear_image->page.width=0;
1925 shear_image->page.height=0;
1926 return(shear_image);
1927}
cristyc7c81142011-11-07 12:14:23 +00001928
1929/*
1930%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1931% %
1932% %
1933% %
1934% S h e a r R o t a t e I m a g e %
1935% %
1936% %
1937% %
1938%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1939%
1940% ShearRotateImage() creates a new image that is a rotated copy of an existing
1941% one. Positive angles rotate counter-clockwise (right-hand rule), while
1942% negative angles rotate clockwise. Rotated images are usually larger than
1943% the originals and have 'empty' triangular corners. X axis. Empty
1944% triangles left over from shearing the image are filled with the background
1945% color defined by member 'background_color' of the image. ShearRotateImage
1946% allocates the memory necessary for the new Image structure and returns a
1947% pointer to the new image.
1948%
1949% ShearRotateImage() is based on the paper "A Fast Algorithm for General
1950% Raster Rotatation" by Alan W. Paeth. ShearRotateImage is adapted from a
1951% similar method based on the Paeth paper written by Michael Halle of the
1952% Spatial Imaging Group, MIT Media Lab.
1953%
1954% The format of the ShearRotateImage method is:
1955%
1956% Image *ShearRotateImage(const Image *image,const double degrees,
1957% ExceptionInfo *exception)
1958%
1959% A description of each parameter follows.
1960%
1961% o image: the image.
1962%
1963% o degrees: Specifies the number of degrees to rotate the image.
1964%
1965% o exception: return any errors or warnings in this structure.
1966%
1967*/
1968MagickExport Image *ShearRotateImage(const Image *image,const double degrees,
1969 ExceptionInfo *exception)
1970{
1971 Image
1972 *integral_image,
1973 *rotate_image;
1974
1975 MagickBooleanType
1976 status;
1977
1978 MagickRealType
1979 angle;
1980
1981 PointInfo
1982 shear;
1983
1984 RectangleInfo
1985 border_info;
1986
1987 size_t
1988 height,
1989 rotations,
1990 width,
1991 y_width;
1992
1993 ssize_t
1994 x_offset,
1995 y_offset;
1996
1997 /*
1998 Adjust rotation angle.
1999 */
2000 assert(image != (Image *) NULL);
2001 assert(image->signature == MagickSignature);
2002 if (image->debug != MagickFalse)
2003 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
2004 assert(exception != (ExceptionInfo *) NULL);
2005 assert(exception->signature == MagickSignature);
2006 angle=degrees;
2007 while (angle < -45.0)
2008 angle+=360.0;
2009 for (rotations=0; angle > 45.0; rotations++)
2010 angle-=90.0;
2011 rotations%=4;
2012 /*
2013 Calculate shear equations.
2014 */
2015 integral_image=IntegralRotateImage(image,rotations,exception);
2016 if (integral_image == (Image *) NULL)
2017 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
2018 shear.x=(-tan((double) DegreesToRadians(angle)/2.0));
2019 shear.y=sin((double) DegreesToRadians(angle));
2020 if ((shear.x == 0.0) && (shear.y == 0.0))
2021 return(integral_image);
2022 if (SetImageStorageClass(integral_image,DirectClass,exception) == MagickFalse)
2023 {
2024 integral_image=DestroyImage(integral_image);
2025 return(integral_image);
2026 }
2027 if (integral_image->matte == MagickFalse)
2028 (void) SetImageAlphaChannel(integral_image,OpaqueAlphaChannel,exception);
2029 /*
2030 Compute image size.
2031 */
2032 width=image->columns;
2033 height=image->rows;
2034 if ((rotations == 1) || (rotations == 3))
2035 {
2036 width=image->rows;
2037 height=image->columns;
2038 }
2039 y_width=width+(ssize_t) floor(fabs(shear.x)*height+0.5);
2040 x_offset=(ssize_t) ceil((double) width+((fabs(shear.y)*height)-width)/2.0-
2041 0.5);
2042 y_offset=(ssize_t) ceil((double) height+((fabs(shear.y)*y_width)-height)/2.0-
2043 0.5);
2044 /*
2045 Surround image with a border.
2046 */
2047 integral_image->border_color=integral_image->background_color;
2048 integral_image->compose=CopyCompositeOp;
2049 border_info.width=(size_t) x_offset;
2050 border_info.height=(size_t) y_offset;
2051 rotate_image=BorderImage(integral_image,&border_info,image->compose,
2052 exception);
2053 integral_image=DestroyImage(integral_image);
2054 if (rotate_image == (Image *) NULL)
2055 ThrowImageException(ResourceLimitError,"MemoryAllocationFailed");
2056 /*
2057 Rotate the image.
2058 */
2059 status=XShearImage(rotate_image,shear.x,width,height,x_offset,(ssize_t)
2060 (rotate_image->rows-height)/2,exception);
2061 if (status == MagickFalse)
2062 {
2063 rotate_image=DestroyImage(rotate_image);
2064 return((Image *) NULL);
2065 }
2066 status=YShearImage(rotate_image,shear.y,y_width,height,(ssize_t)
2067 (rotate_image->columns-y_width)/2,y_offset,exception);
2068 if (status == MagickFalse)
2069 {
2070 rotate_image=DestroyImage(rotate_image);
2071 return((Image *) NULL);
2072 }
2073 status=XShearImage(rotate_image,shear.x,y_width,rotate_image->rows,(ssize_t)
2074 (rotate_image->columns-y_width)/2,0,exception);
2075 if (status == MagickFalse)
2076 {
2077 rotate_image=DestroyImage(rotate_image);
2078 return((Image *) NULL);
2079 }
2080 status=CropToFitImage(&rotate_image,shear.x,shear.y,(MagickRealType) width,
2081 (MagickRealType) height,MagickTrue,exception);
2082 if (status == MagickFalse)
2083 {
2084 rotate_image=DestroyImage(rotate_image);
2085 return((Image *) NULL);
2086 }
2087 rotate_image->compose=image->compose;
2088 rotate_image->page.width=0;
2089 rotate_image->page.height=0;
2090 return(rotate_image);
2091}