diff options
| author | sostler <sbostler@gmail.com> | 2010-04-23 22:41:49 -0400 |
|---|---|---|
| committer | sostler <sbostler@gmail.com> | 2010-04-23 22:41:49 -0400 |
| commit | 4bf18f0771162cd7618851bf5a5126d9666b6750 (patch) | |
| tree | ff3b09e79b342794ba7e56fd62c758371cbd2e12 | |
| parent | 1e73dda53e47407bd51f15c9b7b61917533276e2 (diff) | |
| parent | 1dab11cd33a37185e59fee997f5dc815643905f3 (diff) | |
Merge branch 'master' of ssh://dump.fm/pichat/repo
| -rw-r--r-- | docs/gm.patch | 140 | ||||
| -rw-r--r-- | docs/names_we_want.rtf | 58 | ||||
| -rw-r--r-- | docs/nonolinky.rtf | 71 |
3 files changed, 269 insertions, 0 deletions
diff --git a/docs/gm.patch b/docs/gm.patch new file mode 100644 index 0000000..a82f9b4 --- /dev/null +++ b/docs/gm.patch @@ -0,0 +1,140 @@ +diff -ur gm.old/coders/gif.c gm.new/coders/gif.c +--- gm.old/coders/gif.c 2009-12-16 10:50:03.000000000 -0800 ++++ gm.new/coders/gif.c 2010-04-19 08:07:34.000000000 -0700 +@@ -1022,6 +1022,8 @@ + image->colormap[i].red=ScaleCharToQuantum(*p++); + image->colormap[i].green=ScaleCharToQuantum(*p++); + image->colormap[i].blue=ScaleCharToQuantum(*p++); ++ if (i == opacity) ++ image->colormap[i].opacity=(Quantum) TransparentOpacity; + } + image->background_color= + image->colormap[Min(background,image->colors-1)]; +@@ -1048,6 +1050,8 @@ + image->colormap[i].red=ScaleCharToQuantum(*p++); + image->colormap[i].green=ScaleCharToQuantum(*p++); + image->colormap[i].blue=ScaleCharToQuantum(*p++); ++ if (i == opacity) ++ image->colormap[i].opacity=(Quantum) TransparentOpacity; + } + MagickFreeMemory(colormap); + } +diff -ur gm.old/magick/image.c gm.new/magick/image.c +--- gm.old/magick/image.c 2010-03-02 13:46:44.000000000 -0800 ++++ gm.new/magick/image.c 2010-04-19 08:20:33.000000000 -0700 +@@ -1925,7 +1925,57 @@ + image->is_monochrome=IsMonochrome(image->background_color); + return status; + } +- ++ ++/* ++%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ++% % ++% % ++% S e t I m a g e C o l o r % ++% % ++% % ++% % ++%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ++% ++% SetImageColor() sets the red, green, blue and opacity components of each pixel to ++% a specified level. ++% ++% The format of the SetImageColor method is: ++% ++% void SetImageColor(Image *image,const PixelPacket pixel) ++% ++% A description of each parameter follows: ++% ++% o image: The image. ++% ++% o pixel: Set each pixel in the image to this pixel's color and transparency. ++% ++% ++*/ ++MagickExport MagickPassFail SetImageColor(Image *image, const PixelPacket pixel) ++{ ++ MagickPassFail ++ status; ++ ++ assert(image != (Image *) NULL); ++ assert(image->signature == MagickSignature); ++ status=MagickPass; ++ ++ image->matte=True; ++ image->colorspace=RGBColorspace; ++ image->storage_class=DirectClass; ++ ++ status=PixelIterateMonoModify(SetImageColorCallBack,NULL, ++ SetImageColorText, ++ NULL,&pixel,0,0, ++ image->columns,image->rows, ++ image,&image->exception); ++ ++ image->is_grayscale=IsGray(image->background_color); ++ image->is_monochrome=IsMonochrome(image->background_color); ++ return status; ++} ++ ++ + /* + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + % % +diff -ur gm.old/magick/image.h gm.new/magick/image.h +--- gm.old/magick/image.h 2010-03-01 13:15:28.000000000 -0800 ++++ gm.new/magick/image.h 2010-04-19 07:27:27.000000000 -0700 +@@ -1008,6 +1008,7 @@ + DisplayImages(const ImageInfo *image_info,Image *image), + RemoveDefinitions(const ImageInfo *image_info,const char *options), + SetImage(Image *,const Quantum), ++ SetImageColor(Image *,const PixelPacket), + SetImageClipMask(Image *image,const Image *clip_mask), + SetImageDepth(Image *,const unsigned long), + SetImageInfo(ImageInfo *image_info,const unsigned int flags,ExceptionInfo *exception), +diff -ur gm.old/magick/transform.c gm.new/magick/transform.c +--- gm.old/magick/transform.c 2010-02-27 13:30:13.000000000 -0800 ++++ gm.new/magick/transform.c 2010-04-19 07:28:35.000000000 -0700 +@@ -317,6 +317,12 @@ + register const Image + *next; + ++ register long ++ i; ++ ++ MagickBool ++ found_transparency=False; ++ + /* + Coalesce the image sequence. + */ +@@ -352,9 +358,19 @@ + } + case BackgroundDispose: + { ++ /* fill image with transparent color, if one exists */ + coalesce_image->next=CloneImage(coalesce_image,0,0,True,exception); +- if (coalesce_image->next != (Image *) NULL) +- (void) SetImage(coalesce_image->next,OpaqueOpacity); ++ if (coalesce_image->next != (Image *) NULL) { ++ for (i = 0; i < (long) coalesce_image->colors; i++) { ++ if (coalesce_image->colormap[i].opacity == TransparentOpacity) { ++ found_transparency = True; ++ (void) SetImageColor(coalesce_image->next,coalesce_image->colormap[i]); ++ break; ++ } ++ } ++ if (!found_transparency) ++ (void) SetImage(coalesce_image->next,OpaqueOpacity); ++ } + break; + } + case PreviousDispose: +@@ -376,6 +392,7 @@ + (void) CompositeImage(coalesce_image,next->matte ? OverCompositeOp : + CopyCompositeOp,next,next->page.x,next->page.y); + } ++ + while (coalesce_image->previous != (Image *) NULL) + coalesce_image=coalesce_image->previous; + return(coalesce_image); diff --git a/docs/names_we_want.rtf b/docs/names_we_want.rtf new file mode 100644 index 0000000..444bb85 --- /dev/null +++ b/docs/names_we_want.rtf @@ -0,0 +1,58 @@ +{\rtf1\ansi\ansicpg1252\cocoartf949\cocoasubrtf540 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\margl1440\margr1440\vieww9000\viewh8400\viewkind0 +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural\pardirnatural + +\f0\fs24 \cf0 admin\ +administrator\ +mobile\ +apps\ +dumpfm\ +dump\ +about\ +clients\ +ads\ +help\ +terms\ +privacy\ +goodies\ +browser\ +search\ +shop\ +clothing\ +advertising\ +video\ +xxx\ +porn\ +live\ +free\ +google\ +login\ +post\ +pics\ +viewer\ +api\ +team\ +jobs\ +legal\ +wiki\ +forums\ +classifieds \ +niggers\ +hookup\ +meetup\ +iphone\ +ipad\ +phone\ +developers\ +friends\ +links\ +art\ +members\ +affiliates\ +business\ +investors\ +\ +\ +}
\ No newline at end of file diff --git a/docs/nonolinky.rtf b/docs/nonolinky.rtf new file mode 100644 index 0000000..7f54efc --- /dev/null +++ b/docs/nonolinky.rtf @@ -0,0 +1,71 @@ +{\rtf1\ansi\ansicpg1252\cocoartf949\cocoasubrtf540 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\margl1440\margr1440\vieww9000\viewh8400\viewkind0 +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural\pardirnatural + +\f0\fs24 \cf0 http://www.bloody-disgusting.com\ +http://www.4chan.org\ +http://henshin.250x.com/\ +http://izismile.com/\ +http://www.angelfire.com/\ +http://www.nudecelebritieshentai.com\ +http://izismile.com/img/img2/20090424/fetish_06.jpg\ +http://www.masternewmedia.org/\ +http://current.com/\ +http://i.pbase.com/\ +http://www.sevenoaksart.co.uk\ +http://nexus404.com\ +http://www.markagame.ru/\ +http://amitkulkarni.info/\ +http://www.mymodernmagic.com/\ + +\b\fs26 www.suicidekiss.com\ +http://uallknow.com/\ +http://www.vintagecomputing.com\ +\pard\pardeftab720\sl420\ql\qnatural + +\b0 \cf0 portfolio.deeperstudy.com\ +http://www.hail-to-the-thief.org/\ +http://www.schm032.com/\ +http://www.arrested.com/\ +http://files.shroomery.org/\ +www.fortunecity.com\ +\pard\pardeftab720\sl420\ql\qnatural + +\b \cf0 http://www.b3tards.com/\ +tripod.com\ +http://nofatclips.com/\ +http://victoryaworld.com\ +http://izismile.com/\ +http://catcatcat.com/\ +http://www.virtuallandmedia.com/\ +http://www.coolnotions.com/\ +http://celebskin.com/\ +http://www.commenthaven.com/\ +http://www.goatse.fr\ +http://www.ysmarko.com\ +http://xxxspacegirls.us/\ +http://www.willrich.supanet.com\ +http://www.gifbin.com/\ +http://www.animation-central.com\ +http://www.creepygif.com/\ +http://www.retrojunk.com\ +http://www.mortalkombatonline.com\ +http://www.dailymakeover.com/\ +http://www.oldtimestrongman.com\ +http://mytextgraphics.com/\ +http://www.veryboy.fr/\ +http://www.knowledgebase-script.com/\ +http://www.popularpages.net/\ +http://www.thecinemasource.com\ +http://images.nintendolife.com/\ +http://guides.macrumors.com/\ +http://69.42.73.10/\ +http://ru.fishki.net\ +http://ski.far.ru/\ +nintendolife.com\ +http://www.whudat.com/\ +http://www.mystkittsdivebuddy.com\ +http://img.bettersoft.de/\ +http://13gb.com/}
\ No newline at end of file |
