Home | History | Annotate | Download | only in MagickWand

Lines Matching full:destination

227 %  dimension.  However, the destination wand view is confined to the image
234 % const WandView *duplex,WandView *destination,const ssize_t y,
247 % WandView *duplex,WandView *destination,
256 % o destination: the destination wand view.
264 WandView *duplex,WandView *destination,DuplexTransferWandViewMethod transfer,
290 destination_image=destination->wand->images;
292 destination->exception);
347 destination_pixels=GetCacheViewAuthenticPixels(destination->view,
348 destination->extent.x,y,destination->extent.width,1,
349 destination->exception);
355 for (x=0; x < (ssize_t) destination->extent.width; x++)
357 PixelSetQuantumPixel(destination->image,destination_pixels,
358 destination->pixel_wands[id][x]);
359 destination_pixels+=GetPixelChannels(destination->image);
361 if (transfer(source,duplex,destination,y,id,context) == MagickFalse)
363 destination_pixels=GetCacheViewAuthenticPixels(destination->view,
364 destination->extent.x,y,destination->extent.width,1,
365 destination->exception);
366 for (x=0; x < (ssize_t) destination->extent.width; x++)
368 PixelGetQuantumPixel(destination->image,destination->pixel_wands[id][x],
370 destination_pixels+=GetPixelChannels(destination->image);
372 sync=SyncCacheViewAuthenticPixels(destination->view,destination->exception);
908 % MagickBooleanType SetImageViewMethod(ImageView *destination,
920 % MagickBooleanType SetWandViewIterator(WandView *destination,
925 % o destination: the wand view.
932 WandExport MagickBooleanType SetWandViewIterator(WandView *destination,
952 assert(destination != (WandView *) NULL);
953 assert(destination->signature == MagickWandSignature);
956 destination_image=destination->wand->images;
958 destination->exception);
964 height=destination->extent.height-destination->extent.y;
968 for (y=destination->extent.y; y < (ssize_t) destination->extent.height; y++)
984 pixels=GetCacheViewAuthenticPixels(destination->view,destination->extent.x,
985 y,destination->extent.width,1,destination->exception);
991 if (set(destination,y,id,context) == MagickFalse)
993 for (x=0; x < (ssize_t) destination->extent.width; x++)
995 PixelGetQuantumPixel(destination->image,destination->pixel_wands[id][x],
997 pixels+=GetPixelChannels(destination->image);
999 sync=SyncCacheViewAuthenticPixels(destination->view,destination->exception);
1010 proceed=SetImageProgress(destination_image,destination->description,
1011 progress++,destination->extent.height);
1035 % However, the destination wand view is confined to the image canvas-- that
1042 % WandView *destination,const ssize_t y,const int thread_id,
1055 % WandView *destination,TransferWandViewMethod transfer,void *context)
1061 % o destination: the destination wand view.
1069 WandView *destination,TransferWandViewMethod transfer,void *context)
1094 destination_image=destination->wand->images;
1096 destination->exception);
1137 destination_pixels=GetCacheViewAuthenticPixels(destination->view,
1138 destination->extent.x,y,destination->extent.width,1,
1139 destination->exception);
1145 for (x=0; x < (ssize_t) destination->extent.width; x++)
1147 PixelSetQuantumPixel(destination->image,destination_pixels,
1148 destination->pixel_wands[id][x]);
1149 destination_pixels+=GetPixelChannels(destination->image);
1151 if (transfer(source,destination,y,id,context) == MagickFalse)
1153 destination_pixels=GetCacheViewAuthenticPixels(destination->view,
1154 destination->extent.x,y,destination->extent.width,1,
1155 destination->exception);
1156 for (x=0; x < (ssize_t) destination->extent.width; x++)
1158 PixelGetQuantumPixel(destination->image,destination->pixel_wands[id][x],
1160 destination_pixels+=GetPixelChannels(destination->image);
1162 sync=SyncCacheViewAuthenticPixels(destination->view,destination->exception);