Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
21answers
3k views

Which format for small website images? GIF or PNG?

When doing small icons, header graphics and the like for websites, is it better to use GIFs or PNGs? Obviously if transparency effects are required, then PNGs are definitely the way to go, and for ...
21
votes
6answers
13k views

Animated GIF in IE stopping

Does anyone know a work around to make animated GIF's continue to be animated after you click a link or submit a form on the page your on in IE? This works fine in other browsers. Thanks.
13
votes
2answers
213 views

C# Tell static GIFs apart from animated ones

I'll keep it short and simple; is there any way of telling static GIF images apart from animated ones? I'm using C#. Thanks
11
votes
7answers
11k views

Converting transparent gif / png to jpeg using java

I'd like to convert gif images to jpeg using Java. It works great for most images, but I have a simple transparent gif image: [In case the image is missing: it's a blue circle with transparent ...
10
votes
3answers
1k views

Disabling GIF animation in HTML

Is there any way, in HTML, to include an animated GIF in an <img> tag, but automatically tell the GIF to not animate? I realize that the user can stop animation by pressing ESC or clicking ...
9
votes
1answer
170 views

Android animated GIF support

How can I check if current device supports animated GIF files? Checking OS version isn't reliable, because some Android 2.1 phones have enabled support and there are phones with 2.3 which do not ...
8
votes
3answers
165 views

C# gif Image to MemoryStream and back (lose animation)

I have a small problem and I do not find any solutions. I want to convert a GIF to a byte[] and then back to a GIF. I works fine but I lose the animation. It is a perfectly animated GIF when I start ...
7
votes
4answers
790 views

Delphi 7 GIF in picture Dialog

I am using Delphi 7 and the OpenPictureDialog to open / preview various images. This works fine when opening a bmp, jpg, etc.; however, if I try to do the same with a gif I get the following error. ...
6
votes
5answers
6k views

Display GIF in a WP7 application with Silverlight

I would like to display gif in my WP7 application. Is there some way to achieve this ? I've tryed this one http://imagetools.codeplex.com/ but can't make it working with WP7. Thanks in advance for ...
6
votes
3answers
584 views

How can I convert BASE64 encoded HTML to GIF using ColdFusion?

I am receiving a BASE64 encoded string from a WebService. The string represents an HTML page, and I can use built-in ColdFusion functions to convert and display it. However, I need a GIF ...
6
votes
8answers
5k views

How can you hide information inside a jpg or gif photo?

How can I write some information inside a photo file like jpg or gif without destroying the image? and of course without showing it on the photo since the whole idea is to send information in the file ...
6
votes
8answers
966 views

How can I generate GIF images in .NET?

Is there a .NET library I can use to programmatically generate my own GIF images? At a minimum I'd like to build it pixel-by-pixel. Better would be support for text and shapes. Here's an example of ...
6
votes
4answers
7k views

How do you Draw Transparent Image using System.Drawing?

I'm trying to return a transparent GIF from an .aspx page for display within a web page. I am trying to get the image to have transparency, but I just keep getting Black being where the image should ...
5
votes
1answer
234 views

Showing gif in android

i have this code to show gif image with Movie. public class GIFView extends View{ private Movie movie; private InputStream is; private long moviestart; public GIFView(Context context) { ...
5
votes
1answer
232 views

ImageMagick convert gif with transparency problem

I wrote a script to add watermark to images on my site. Everything works ok for png/jpg, but gif images must be treaten by more complicated way. My script: convert -splice x36 -gravity south ...
5
votes
2answers
104 views

Is there something like pngcrush for GIFs?

pngcrush does a very good job at reducing the size of PNG-Files. I was wondering if the was something similar for GIFs, which we still use in our applications (can't fix that quickly). Google Page ...
5
votes
1answer
680 views

Using GD in PHP, how can I make a transparent PNG watermark on PNG and GIF files ? (JPG files work fine)

I have an image (let's call it original image) on which I want to watermark another image (let's call it logo). The logo is a transparent PNG, whereas the original image can be png, jpg, or gif. I ...
5
votes
4answers
319 views

Image palette reduction

I am playing with computer graphics programming for the first time. I want to convert RGB (24-bit) images to indexed-palette (8-bit) images (like GIF). My initial thought is to use k-means (with ...
4
votes
2answers
81 views

Is there a way to check if a GIF image has animation with PHP or Java?

You know that GIF files support animation, but a GIF image not necesarily must have an animation on it. Is there a way to check if a GIF image has an animation using php or java? Thanks.
4
votes
2answers
113 views

why showing .GIF image increase memory continuously?

i am showing simple code sample. I showed an gif image in a Jlabel. When run the programme, TASK manager shows that memory is increasing continuously. Why it happens? Edited: try this code please... ...
4
votes
1answer
87 views

Transparency and GIF in .NET — Inconsistent behavior

I am trying to edit and save an image using the .net Bitmap class. Some of the pixels are transparent, and they get converted to black under certain circumstances. If I save the same image like this: ...
4
votes
1answer
177 views

animated gifs freeze in firefox 4.0 and above

I'm using jquery to preload an animated gif and later on inject a message with animated gif to the code. it used to work fine until release 4.0 of firefox. since then only the 1st frame is showed and ...
4
votes
2answers
482 views

Why does this GIF end up as a black square when resizing with Java ImageIO

Java ImageIO correctly displays this black & white image http://www.jthink.net/jaikoz/scratch/black.gif but when I try and resize it using this code public static BufferedImage resize2D(Image ...
4
votes
3answers
5k views

Animated GIF in HTML5 canvas

In HTML5, how can I draw easily (no too much complex code please) an animated GIF in a canvas that works (with drawImage only first frame is shown in the canvas)
4
votes
4answers
2k views

Why '.png' files produced by ImageMagick are so much bigger than '.jpg' & '.gif' files?

I'm using ImageMagick to convert some files from one format to another. I was always under the impression that .png files were supposed to be as big/small as .jpg if not smaller, and definitely ...
4
votes
3answers
626 views

How to handle PNG image loading time in html, css

When I have an <a> tag set to a specific image background like this: HTML: <a href="..." title="click here">Click Here</a> CSS: a { background: transparent url(button.png); } ...
4
votes
2answers
706 views

What's the best way to make an animated GIF using an algorithm?

I have an algorithm for knight's tours on chessboards of various sizes (large sizes, like 100x100) and I'd like to animate the result. Each time the knight moves to a new square, a corresponding pixel ...
4
votes
9answers
368 views

How can I improve loading times on a static HTML site?

We are working on a website and noticed that the GIF images(100kb - 200kb) are loading very slowly. The site is a static site with CSS/HTML. Does any one have any pointers to why the images might be ...
3
votes
1answer
195 views

IOException when opening JFileChooser

Ok this one is really weird. Every first time my application opens a JFileChooser it throws a IOException then some icons don't show properly. java.io.IOException at ...
3
votes
1answer
302 views

how to run gif file in android?

I want to play gif file in my current activity. I have a xml in that some lay out is there. I want to play gif in same class Activity. Means any simple way to play gif file in activity class? ...
3
votes
2answers
199 views

Want to copy a gif image from my app to the in-app mail window. How do i do that?

I am having some confusion here... how do i display gif for my iPhone app? (I mean there are various articles which i found, but every tutorial just didn't have a complete solution) There are many ...
3
votes
4answers
280 views

Convert hex stream to GIF

How do I create a .gif file from the following HEX stream: 0d 0a 0d 0a 47 49 46 38 39 61 01 00 01 00 80 ff 00 ff ff ff 00 00 00 2c 00 00 00 00 01 00 01 00 00 02 02 44 01 00 3b 3b is the GIF file ...
3
votes
4answers
271 views

Why does this PHP tracking pixel not working correctly?

I'm working on setting up a simple pixel tracking script with PHP, and the below technically works, but when I look at the inspector in Safari I get the following warning (1by1.gif is a 42B gif): ...
3
votes
1answer
414 views

C# Capturing Direct 3D Screen

I have been fooling around with screen capture for awhile now and I managed to capture the entire screen, certain areas on the screen etc... But when I go into a game and try to capture the screen, ...
3
votes
1answer
479 views

Imagemagick animated gif size optimization

I am use this code to resize and save a animated gif (php): system("convert *originalfile* -resize *size* -coalesce *newfile*); Once done the filesize is quite large. Usually larger than the ...
3
votes
5answers
316 views

How to use JS to trigger a GIF animation?

I have an animated GIF that plays once (doesn't loop). I would like it to animate when clicked. I tried something like this: $('#plus').click(function(){ $('#plus').attr('src',''); ...
3
votes
5answers
86 views

Images with unknown content: Dangerous for a browser?

Let's say I allow users to link to any images they like. The link would be checked for syntactical correctness, escaping etc., and then inserted in an <img src="..."/> tag. Are there any known ...
3
votes
5answers
2k views

Animated GIF Not Working in FireFox after cache

I have an animated GIF that loops three times. I have noticed in Firefox and Chrome (haven't checked others) that I can view the GIF once and then if I reload the page, the cached GIF is not animated ...
3
votes
5answers
127 views

css optimization

I noticed that digg.com and google.com are using kind of css optimization in their gif header image. for example digg uses this image http://digg.com/img/menu-current.gif . can any one give me an ...
3
votes
2answers
5k views

Displaying a GIF in Silverlight

I have a number of gifs in a folder on my web server /dir/subdir/bla.gif etc. On that same server is a Silverlight 3 application /ClientBin/bla.xap. Is there any way to display the gifs in the ...
3
votes
4answers
9k views

Animated Gifs in Flex 3

Believe it or not I need a way of displaying animated gifs in Flex 3. This guy has a component for sale but it's Flex 2 only: ...
2
votes
1answer
53 views

Animated Loading GIF

So, my background is in the color #DBDBDB. I need an animated loading image like this one for my site's background. Unfortunately since GIFs don't support partial transparency, I'm left with a white ...
2
votes
3answers
116 views

How to add gif image into TextView or EditText in Android

I use ImageSpan to add image into TextView,but It can't animate.
2
votes
1answer
42 views

How to get GIF transparency color for saving with GD?

My GD wrapper works like charm with JPEG and PNG images, however when using GIF image the resulting image loses transparency. Further search suggests i have to use imagecolortransparent (sets the ...
2
votes
1answer
194 views

PHP code in .gif exploit

I need to know how to generate a GIF with php code inside, or how to modify a gif to add this so that I can perform a test on our avatar upload plugin in wordpress - I just want to ensure it is ...
2
votes
1answer
168 views

Merge images in PHP - GIF and JPG

I am trying to merge two images - a GIF image with a smaller JPG image. The output should be GIF. The issue is that GIF image colors remain correct, but the colors of the JPG image are altered. The ...
2
votes
2answers
43 views

Display text when gif animation ends

i was searching throught the internet but i didnt find the right answer.. If i have for example: <img src="gif.gif" loop="false" /> How to make this div.. to display text after last frame? Is ...
2
votes
1answer
104 views

Synced animated tiles in a 2d web game

I'm building a strategy game in the browser since 2 years back. Its already actively played by a small crowed of people so it is a working game. Our problem is that its resource hungry. Basically you ...
2
votes
0answers
82 views

Mystery issue with GIF upload?

Alright, so whenever I upload this GIF to my board (NGINX+PHP-FPM) I get a slow down until an eventual 504 Gateway Time-out, alright, so I know what you're thinking, "go ahead and fix those nginx.conf ...
2
votes
1answer
95 views

how to make animated gif play from the beginning

i've an animated gif image within a hidden div. Exactly after 7seconds page has loaded the div shows up and hence the image. Now my problem is that when the page is loaded for first time div shows up ...

1 2 3 4 5 8