Lines Matching refs:next_image
7662 *next_image, in ReadOneMNGImage() local
7673 next_image=CoalesceImages(image,exception); in ReadOneMNGImage()
7675 if (next_image == (Image *) NULL) in ReadOneMNGImage()
7679 image=next_image; in ReadOneMNGImage()
7681 for (next=image; next != (Image *) NULL; next=next_image) in ReadOneMNGImage()
7688 next_image=GetNextImageInList(next); in ReadOneMNGImage()
7690 if (next_image == (Image *) NULL) in ReadOneMNGImage()
7696 next_image->previous=GetPreviousImageInList(next); in ReadOneMNGImage()
7698 image=next_image; in ReadOneMNGImage()
7700 next->previous->next=next_image; in ReadOneMNGImage()
13390 *next_image; in WriteMNGImage() local
13589 for (next_image=image; next_image != (Image *) NULL; ) in WriteMNGImage()
13593 if ((next_image->columns+next_image->page.x) > mng_info->page.width) in WriteMNGImage()
13594 mng_info->page.width=next_image->columns+next_image->page.x; in WriteMNGImage()
13596 if ((next_image->rows+next_image->page.y) > mng_info->page.height) in WriteMNGImage()
13597 mng_info->page.height=next_image->rows+next_image->page.y; in WriteMNGImage()
13600 if (next_image->page.x || next_image->page.y) in WriteMNGImage()
13603 if (next_image->alpha_trait != UndefinedPixelTrait) in WriteMNGImage()
13606 if ((int) next_image->dispose >= BackgroundDispose) in WriteMNGImage()
13607 if ((next_image->alpha_trait != UndefinedPixelTrait) || in WriteMNGImage()
13608 next_image->page.x || next_image->page.y || in WriteMNGImage()
13609 ((next_image->columns < mng_info->page.width) && in WriteMNGImage()
13610 (next_image->rows < mng_info->page.height))) in WriteMNGImage()
13613 if (next_image->iterations) in WriteMNGImage()
13616 final_delay=next_image->delay; in WriteMNGImage()
13619 next_image->ticks_per_second) in WriteMNGImage()
13634 mng_info->equal_palettes=PalettesAreEqual(image,next_image); in WriteMNGImage()
13640 if (GetNextImageInList(next_image) != (Image *) NULL) in WriteMNGImage()
13642 if (next_image->background_color.red != in WriteMNGImage()
13643 next_image->next->background_color.red || in WriteMNGImage()
13644 next_image->background_color.green != in WriteMNGImage()
13645 next_image->next->background_color.green || in WriteMNGImage()
13646 next_image->background_color.blue != in WriteMNGImage()
13647 next_image->next->background_color.blue) in WriteMNGImage()
13650 if (next_image->gamma != next_image->next->gamma) in WriteMNGImage()
13653 if (next_image->rendering_intent != in WriteMNGImage()
13654 next_image->next->rendering_intent) in WriteMNGImage()
13657 if ((next_image->units != next_image->next->units) || in WriteMNGImage()
13658 (next_image->resolution.x != next_image->next->resolution.x) || in WriteMNGImage()
13659 (next_image->resolution.y != next_image->next->resolution.y)) in WriteMNGImage()
13664 if (next_image->chromaticity.red_primary.x != in WriteMNGImage()
13665 next_image->next->chromaticity.red_primary.x || in WriteMNGImage()
13666 next_image->chromaticity.red_primary.y != in WriteMNGImage()
13667 next_image->next->chromaticity.red_primary.y || in WriteMNGImage()
13668 next_image->chromaticity.green_primary.x != in WriteMNGImage()
13669 next_image->next->chromaticity.green_primary.x || in WriteMNGImage()
13670 next_image->chromaticity.green_primary.y != in WriteMNGImage()
13671 next_image->next->chromaticity.green_primary.y || in WriteMNGImage()
13672 next_image->chromaticity.blue_primary.x != in WriteMNGImage()
13673 next_image->next->chromaticity.blue_primary.x || in WriteMNGImage()
13674 next_image->chromaticity.blue_primary.y != in WriteMNGImage()
13675 next_image->next->chromaticity.blue_primary.y || in WriteMNGImage()
13676 next_image->chromaticity.white_point.x != in WriteMNGImage()
13677 next_image->next->chromaticity.white_point.x || in WriteMNGImage()
13678 next_image->chromaticity.white_point.y != in WriteMNGImage()
13679 next_image->next->chromaticity.white_point.y) in WriteMNGImage()
13684 next_image=GetNextImageInList(next_image); in WriteMNGImage()