HomeSort by relevance Sort by last modified time
    Searched refs:gif (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/ImageMagick/PerlMagick/demo/
Makefile 16 /bin/rm -f demo.jpg button.gif model.png shadow.gif tree.gif \
17 compose-specials.jpg single-pixels.gif pixel-fx.gif
  /external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph/
__init__.py 102 dot.save_img(file_name='graph', file_type='gif')
  /docs/source.android.com/scripts/
cleanup.sh 3 for img in *.png *.gif *.jpg
  /packages/apps/Messaging/tools/messagegen/
listimages 16 for file in `ls *.jpg *.gif`;
  /external/skia/src/images/
SkImageDecoder_libgif.cpp 41 "images.gif.suppressDecoderWarnings", true,
42 "Suppress GIF warnings and errors when calling image decode "
46 /* Implement the GIF interlace algorithm in an iterator.
118 static const ColorMapObject* find_colormap(const GifFileType* gif) {
119 const ColorMapObject* cmap = gif->Image.ColorMap;
121 cmap = gif->SColorMap;
173 * Skip rows in the source gif image.
174 * @param gif Source image.
175 * @param dst Scratch output needed by gif library call. Must be >= width bytes.
180 static bool skip_src_rows(GifFileType* gif, uint8_t* dst, int width, int rowsToSkip)
245 GifFileType* gif = DGifOpen(sk_stream, DecodeCallBackProc); local
    [all...]
SkMovie_gif.cpp 347 const GifFileType* gif = fGIF; local
348 if (nullptr == gif)
351 if (gif->ImageCount < 1) {
355 const int width = gif->SWidth;
356 const int height = gif->SHeight;
395 if (gif->SColorMap != nullptr) {
396 const GifColorType& col = gif->SColorMap->Colors[fGIF->SBackGroundColor];
407 if (!trans && gif->SColorMap != nullptr) {
425 drawFrame(bm, cur, gif->SColorMap);
  /external/skia/src/codec/
SkGifCodec.cpp 19 * Checks the start of the stream to see if the image is a gif
37 SkCodecPrintf("Gif Error: %s\n", msg);
51 * Open the gif file
122 * This function cleans up the gif object after the decode completes
125 void SkGifCodec::CloseGif(GifFileType* gif) {
127 DGifCloseFile(gif);
129 DGifCloseFile(gif, nullptr);
169 // Read gif header, logical screen descriptor, and global color table
170 SkAutoTCallVProc<GifFileType, CloseGif> gif(open_gif(stream));
172 if (nullptr == gif) {
    [all...]
SkGifCodec.h 18 * This class implements the decoding for gif images
27 * Creates a gif decoder
57 * Performs the full gif decode
75 * A gif can contain multiple image frames. We will only decode the first
80 * @param gif Pointer to the library type that manages the gif decode
84 static Result ReadUpToFirstImage(GifFileType* gif, uint32_t* transIndex);
87 * A gif may contain many image frames, all of different sizes.
88 * This function checks if the gif dimensions are valid, based on the frame
89 * dimensions, and corrects the gif dimensions if necessary
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifDrawableResource.java 1 package com.bumptech.glide.load.resource.gif;
7 * A resource wrapping an {@link com.bumptech.glide.load.resource.gif.GifDrawable}.
GifBitmapProvider.java 1 package com.bumptech.glide.load.resource.gif;
GifFrameModelLoader.java 1 package com.bumptech.glide.load.resource.gif;
GifFrameResourceDecoder.java 1 package com.bumptech.glide.load.resource.gif;
26 return "GifFrameResourceDecoder.com.bumptech.glide.load.resource.gif";
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/transcode/
GifDrawableBytesTranscoder.java 5 import com.bumptech.glide.load.resource.gif.GifDrawable;
9 * {@link com.bumptech.glide.load.resource.gif.GifDrawable} into bytes by obtaining the original bytes of the GIF from
10 * the {@link com.bumptech.glide.load.resource.gif.GifDrawable}.
  /external/proguard/examples/
proguardgui.pro 45 -adaptresourcefilenames **.properties,**.gif,**.jpg
  /prebuilts/tools/common/proguard/proguard4.7/examples/
proguardgui.pro 44 -adaptresourcefilenames **.properties,**.gif,**.jpg
  /prebuilts/go/darwin-x86/src/image/gif/
reader_test.go 5 package gif package
16 // header, palette and trailer are parts of a valid 2x1 GIF image.
51 // then this should result in an invalid GIF image. First, write a
139 // testGIF is a simple GIF that we can modify to test different scenarios.
169 gif := make([]byte, len(testGIF))
170 copy(gif, testGIF)
172 gif[32] = 2
173 want := "gif: frame bounds larger than image bounds"
174 try(t, gif, want)
178 gif[32] =
    [all...]
reader.go 5 // Package gif implements a GIF image decoder and encoder.
7 // The GIF specification is at http://www.w3.org/Graphics/GIF/spec-gif89a.txt.
8 package gif package
21 errNotEnough = errors.New("gif: not enough image data")
22 errTooMuch = errors.New("gif: too much image data")
23 errBadPixel = errors.New("gif: invalid pixel value")
66 // decoder is the type used to decode a GIF file.
96 // blockReader parses the block structure of GIF image data, whic
    [all...]
  /prebuilts/go/linux-x86/src/image/gif/
reader_test.go 5 package gif package
16 // header, palette and trailer are parts of a valid 2x1 GIF image.
51 // then this should result in an invalid GIF image. First, write a
139 // testGIF is a simple GIF that we can modify to test different scenarios.
169 gif := make([]byte, len(testGIF))
170 copy(gif, testGIF)
172 gif[32] = 2
173 want := "gif: frame bounds larger than image bounds"
174 try(t, gif, want)
178 gif[32] =
    [all...]
  /frameworks/ex/framesequence/jni/
FrameSequence_gif.cpp 51 ALOGW("Gif load failed");
56 ALOGW("Gif slurp failed");
220 GifFileType* gif = mFrameSequence.getGif(); local
221 if (!gif) {
250 DGifSavedExtensionToGCB(gif, i, &gcb);
251 const SavedImage& frame = gif->SavedImages[i];
268 DGifSavedExtensionToGCB(gif, i - 1, &prevGcb);
269 const SavedImage& prevFrame = gif->SavedImages[i - 1];
305 const ColorMapObject* cmap = gif->SColorMap;
328 const int maxFrame = gif->ImageCount
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
GifBitmapWrapper.java 6 import com.bumptech.glide.load.resource.gif.GifDrawable;
10 * {@link com.bumptech.glide.load.resource.gif.GifDrawable} resource.
18 throw new IllegalArgumentException("Can only contain either a bitmap resource or a gif resource, not both");
21 throw new IllegalArgumentException("Must contain either a bitmap resource or a gif resource");
46 * Returns the wrapped {@link com.bumptech.glide.load.resource.gif.GifDrawable} resource if it exists, or null.
GifBitmapWrapperResource.java 6 import com.bumptech.glide.load.resource.gif.GifDrawable;
GifBitmapWrapperTransformation.java 8 import com.bumptech.glide.load.resource.gif.GifDrawable;
9 import com.bumptech.glide.load.resource.gif.GifDrawableTransformation;
13 * transformation to both {@link android.graphics.Bitmap}s and {@link com.bumptech.glide.load.resource.gif.GifDrawable}.
  /external/libxml2/doc/
Makefile.am 26 $(wildcard *.gif) w3c.png $(wildcard html/*.html) \
70 DOM.gif \
73 Libxml2-Logo-180x168.gif \
74 Libxml2-Logo-90x34.gif \
82 catalog.gif \
154 libxml.gif \
162 redhat.gif \
167 smallfootonly.gif \
168 structure.gif \
337 -$(INSTALL) -m 0644 $(srcdir)/xml.html $(srcdir)/encoding.html $(srcdir)/FAQ.html $(srcdir)/structure.gif $(srcdir)/DOM.gif $(srcdir)/smallfootonly.gif $(srcdir)/redhat.gif $(srcdir)/libxml.gif $(srcdir)/ (…)
    [all...]
  /prebuilts/go/darwin-x86/src/image/
decode_test.go 15 _ "image/gif"
28 // GIF images are restricted to a 256-color palette and the conversion
29 // to GIF loses significant image quality.
30 {"testdata/video-001.png", "testdata/video-001.gif", 64 << 8},
31 {"testdata/video-001.png", "testdata/video-001.interlaced.gif", 64 << 8},
32 {"testdata/video-001.png", "testdata/video-001.5bpp.gif", 128 << 8},
118 if imageFormat == "gif" {
119 // Each frame of a GIF can have a frame-local palette override the
120 // GIF-global palette. Thus, image.Decode can yield a different ColorModel
  /prebuilts/go/linux-x86/src/image/
decode_test.go 15 _ "image/gif"
28 // GIF images are restricted to a 256-color palette and the conversion
29 // to GIF loses significant image quality.
30 {"testdata/video-001.png", "testdata/video-001.gif", 64 << 8},
31 {"testdata/video-001.png", "testdata/video-001.interlaced.gif", 64 << 8},
32 {"testdata/video-001.png", "testdata/video-001.5bpp.gif", 128 << 8},
118 if imageFormat == "gif" {
119 // Each frame of a GIF can have a frame-local palette override the
120 // GIF-global palette. Thus, image.Decode can yield a different ColorModel

Completed in 3896 milliseconds

1 2 3 4