Example images for code and mark-up Q&As

JavaJavascriptCssImage

Java Problem Overview


When preparing an MCVE/SSCCE that involves images, it is useful to have direct access to images.

The types of images that would cover most questions are - small images in multiple colors or shapes, animated GIFs with/without transparency, JPEGs that are 'pairs' of pictures & can be used in image transitions, tile sets, sprite sheets..

Are there any small (under 30KB), on-site, license & royalty free images we can hot-link to for these types of examples?

Java Solutions


Solution 1 - Java

Here are some example images for common use, mostly from existing answers on SO.

#Icons

Simple Geometric shapes generated using Java as originally seen in this answer. It includes a Java based interface that defines the URLs and makes them easy to access.

Details: 32x32 pixel PNG (4 colors x 5 shapes) with partial transparency (along the edges).

Categories: [tag:png] [tag:icons]

> http://i.stack.imgur.com/gJmeJ.png" > http://i.stack.imgur.com/L5DGx.png" > http://i.stack.imgur.com/in9g1.png" > http://i.stack.imgur.com/IucNt.png" > http://i.stack.imgur.com/yoKxT.png" >   http://i.stack.imgur.com/T5uTa.png" > http://i.stack.imgur.com/gYxHm.png" > http://i.stack.imgur.com/1lgtq.png" > http://i.stack.imgur.com/yBOv3.png" > http://i.stack.imgur.com/zJ8am.png" >
http://i.stack.imgur.com/IHARa.png" > http://i.stack.imgur.com/8BGfi.png" > http://i.stack.imgur.com/6ZXhi.png" > http://i.stack.imgur.com/Lqkl0.png" > http://i.stack.imgur.com/c67nr.png" >   http://i.stack.imgur.com/wCF8S.png" > http://i.stack.imgur.com/5v2TX.png" > http://i.stack.imgur.com/F0JHK.png" > http://i.stack.imgur.com/4EVv1.png" > http://i.stack.imgur.com/xj49g.png" >

##Sprite Sheets

Chess Pieces as originally seen on this answer that includes 2 other sprite sets (same image in different colors).

Details: 384x128 px (each sprite 64x64 px) PNG with partial transparency.

Categories: [tag:png] [tag:sprite-sheet] [tag:icons]

> http://i.stack.imgur.com/memI0.png" >

##Animated

GIF is the only image format that supports animation. Here are a few examples.

Categories: [tag:gif] [tag:animated-gif]

###Solid BG

Animated dashed border as seen in this answer.

Details: 100x30 px with filled BG (no transparency)

> http://i.stack.imgur.com/DnzXV.gif" >

Zooming stars as seen in this answer, originally developed as a 'screen-shot' of a screensaver.

Details: 160x120 px with filled BG (no transparency)

> http://i.stack.imgur.com/iQFxo.gif" >

Animated Water as seen in this answer to https://stackoverflow.com/q/17893429/418556.

Details: 60x60 px with filled BG (no transparency)

> http://i.stack.imgur.com/HXCUV.gif">

###Transparent BG

Orbital animation, originally developed for 1.1C. The orbits of the 'inner' planets (from Mercury to Jupiter, with an extra orbit shown in the thick of the asteroid belt). Better on a dark BG.

Details: 450x450 & 150x150 px animated GIFs with transparency.

> http://i.stack.imgur.com/OtTIY.gif" >http://i.stack.imgur.com/z9rv7.gif" >

##Pictures

Sunrise & moonset over the CBD of Sydney, Australia
Sunset & Venus over a telescope on Mt Stromlo, near Canberra, Australia.

Categories: [tag:jpeg] [tag:slideshow] + Image Transitions

Details: 480x320 px JPEGs x 4. (Displayed here at 1/2 size.)

> http://i.stack.imgur.com/XZ4V5.jpg" width="240" height="160" >http://i.stack.imgur.com/7bI1Y.jpg" width="240" height="160" >
http://i.stack.imgur.com/OVOg3.jpg" width="240" height="160" >http://i.stack.imgur.com/lxthA.jpg" width="240" height="160" >

Panorama at Dawn across the South-Eastern Suburbs of Sydney.

Categories: [tag:jpg] [tag:panoramas] [tag:animation] (scrolling)

Details: 1474x436 px JPEG.

> Dawn Panorama

##Tiles

This Mercator map of Earth can be tiled left/right. Originally seen on this answer. The answer also includes a second version of the image that shows a semi-transparent line for the equator (which is not in the center, but significantly below it).

Details: 640x316 px (add 44 px at bottom to center equator) PNG with transparent BG.

Categories: [tag:png] [tag:tile] [tag:animation] (scrolling)

> http://i.stack.imgur.com/P59NF.png">

##Tip

For getting the URLs of the images, you might 'context click' on the image as seen in the browser and either:

  • Show the properties. The URL can be copied from the dialog that appears.
  • View image. Copy the URL from the browser address bar.

Alternately:

  • Use the browser 'show source' and copy it from the HTML.
  • For those with enough rep. (100+, to edit a community Wiki answer), go to edit the answer and pull the URL from the text.

Code

Below is a Java class which splits up the chess piece sprite sheet, suitable for pasting in to an MCVE:

import java.awt.image.*;
import javax.imageio.*;
import java.net.*;
import java.io.*;
import java.util.*;

public final class ChessSprites {
    private ChessSprites() {}
    public static final int SIZE = 64;
    public static final BufferedImage SHEET;
    static {
        try {
            // see https://stackoverflow.com/a/19209651/2891664
            SHEET = ImageIO.read(new URL("https://i.stack.imgur.com/memI0.png"));
        } catch (IOException x) {
            throw new UncheckedIOException(x);
        }
    }
    public static final BufferedImage GOLD_QUEEN    = SHEET.getSubimage(0 * SIZE, 0,    SIZE, SIZE);
    public static final BufferedImage SILVER_QUEEN  = SHEET.getSubimage(0 * SIZE, SIZE, SIZE, SIZE);
    public static final BufferedImage GOLD_KING     = SHEET.getSubimage(1 * SIZE, 0,    SIZE, SIZE);
    public static final BufferedImage SILVER_KING   = SHEET.getSubimage(1 * SIZE, SIZE, SIZE, SIZE);
    public static final BufferedImage GOLD_ROOK     = SHEET.getSubimage(2 * SIZE, 0,    SIZE, SIZE);
    public static final BufferedImage SILVER_ROOK   = SHEET.getSubimage(2 * SIZE, SIZE, SIZE, SIZE);
    public static final BufferedImage GOLD_KNIGHT   = SHEET.getSubimage(3 * SIZE, 0,    SIZE, SIZE);
    public static final BufferedImage SILVER_KNIGHT = SHEET.getSubimage(3 * SIZE, SIZE, SIZE, SIZE);
    public static final BufferedImage GOLD_BISHOP   = SHEET.getSubimage(4 * SIZE, 0,    SIZE, SIZE);
    public static final BufferedImage SILVER_BISHOP = SHEET.getSubimage(4 * SIZE, SIZE, SIZE, SIZE);
    public static final BufferedImage GOLD_PAWN     = SHEET.getSubimage(5 * SIZE, 0,    SIZE, SIZE);
    public static final BufferedImage SILVER_PAWN   = SHEET.getSubimage(5 * SIZE, SIZE, SIZE, SIZE);
    public static final List<BufferedImage> SPRITES =
        Collections.unmodifiableList(Arrays.asList(GOLD_QUEEN,  SILVER_QUEEN,
                                                   GOLD_KING,   SILVER_KING,
                                                   GOLD_ROOK,   SILVER_ROOK,
                                                   GOLD_KNIGHT, SILVER_KNIGHT,
                                                   GOLD_BISHOP, SILVER_BISHOP,
                                                   GOLD_PAWN,   SILVER_PAWN));
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAndrew ThompsonView Question on Stackoverflow
Solution 1 - JavaAndrew ThompsonView Answer on Stackoverflow