Código de Java - Creación de un Gif

Imágen de perfil
Val: 231
Ha mantenido su posición en Java (en relación al último mes)
Gráfica de Java

Creación de un Gifgráfica de visualizaciones


Java

Publicado el 5 de Mayo del 2017 por Yacoobs (17 códigos)
4.188 visualizaciones desde el 5 de Mayo del 2017
Bien otro programa añadido a la lista de posibles candidatos para aprender un poco mas de programación, esta vez usando conocimientos de su creador dejo aquí plasmado su obra tan sencilla
el ejemplo toma 5 imágenes JPG y las convierte en un archivo Gif, no es un gran programa pero tampoco es un complejo programa
El programa tiene defectos como reconocimiento de imágenes con transparencia, pero bueno todo no es perfecto, espero que les agrade y aprendan una vez mas JAVA saludos....

Requerimientos

Instalado Java Jdk 8 y compilador del programa

1
estrellaestrellaestrellaestrellaestrella(2)

Actualizado el 9 de Julio del 2017 (Publicado el 5 de Mayo del 2017)gráfica de visualizaciones de la versión: 1
4.189 visualizaciones desde el 5 de Mayo del 2017
estrellaestrellaestrellaestrellaestrella
estrellaestrellaestrellaestrella
estrellaestrellaestrella
estrellaestrella
estrella

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
import javax.imageio.*;
import javax.imageio.metadata.*;
import javax.imageio.stream.*;
import java.awt.image.*;
import java.io.*;
import java.util.Iterator;
 
//  GifSequenceWriter.java
//  
//  Created by Elliot Kroo on 2009-04-25.
//
// This work is licensed under the Creative Commons Attribution 3.0 Unported
// License. To view a copy of this license, visit
// http://creativecommons.org/licenses/by/3.0/ or send a letter to Creative
// Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA.
 
//https://gist.github.com/jesuino/528703e7b1974d857b36
 
//Agradecimientos a el creador del programa y por mostranos su conocimiento a todos....
 
 
public class GifSequenceWriter {
 
 
    public static void main(String[] args) throws IOException  {
 
        new Empezar();
 
    }
 
 
 
    protected ImageWriter gifWriter;
 
    protected ImageWriteParam imageWriteParam;
 
    protected IIOMetadata imageMetaData;
 
  /**
   * Creates a new GifSequenceWriter
   * 
   * @param outputStream the ImageOutputStream to be written to
   * @param imageType one of the imageTypes specified in BufferedImage
   * @param timeBetweenFramesMS the time between frames in miliseconds
   * @param loopContinuously wether the gif should loop repeatedly
   * @throws IIOException if no gif ImageWriters are found
   *
   * @author Elliot Kroo (elliot[at]kroo[dot]net)
   */
  public GifSequenceWriter(ImageOutputStream outputStream,int imageType, int timeBetweenFramesMS,
      boolean loopContinuously) throws IIOException, IOException {
 
 
 
      gifWriter = getWriter();
 
      imageWriteParam = gifWriter.getDefaultWriteParam();
 
      ImageTypeSpecifier imageTypeSpecifier =ImageTypeSpecifier.createFromBufferedImageType(imageType);
 
      imageMetaData =gifWriter.getDefaultImageMetadata(imageTypeSpecifier,imageWriteParam);
 
      String metaFormatName = imageMetaData.getNativeMetadataFormatName();
 
    IIOMetadataNode root = (IIOMetadataNode)imageMetaData.getAsTree(metaFormatName);
 
    IIOMetadataNode graphicsControlExtensionNode = getNode(root,"GraphicControlExtension");
 
    graphicsControlExtensionNode.setAttribute("disposalMethod", "none");
    graphicsControlExtensionNode.setAttribute("userInputFlag", "FALSE");
    graphicsControlExtensionNode.setAttribute("transparentColorFlag","FALSE");
    graphicsControlExtensionNode.setAttribute("delayTime",Integer.toString(timeBetweenFramesMS / 10));
    graphicsControlExtensionNode.setAttribute("transparentColorIndex","0");
 
    IIOMetadataNode commentsNode = getNode(root, "CommentExtensions");
    commentsNode.setAttribute("CommentExtension", "Created by MAH");
 
    IIOMetadataNode appEntensionsNode = getNode(root,"ApplicationExtensions");
 
    IIOMetadataNode child = new IIOMetadataNode("ApplicationExtension");
 
    child.setAttribute("applicationID", "NETSCAPE");
    child.setAttribute("authenticationCode", "2.0");
 
    int loop = loopContinuously ? 0 : 1;
 
    child.setUserObject(new byte[]{ 0x1, (byte) (loop & 0xFF), (byte)((loop >> 8) & 0xFF)});
    appEntensionsNode.appendChild(child);
 
    imageMetaData.setFromTree(metaFormatName, root);
 
    gifWriter.setOutput(outputStream);
 
    gifWriter.prepareWriteSequence(null);
  }
 
  public void writeToSequence(RenderedImage img) throws IOException {
      gifWriter.writeToSequence(new IIOImage(img, null,imageMetaData),imageWriteParam);
  }
 
  /**
   * Close this GifSequenceWriter object. This does not close the underlying
   * stream, just finishes off the GIF.
   */
  public void close() throws IOException {
    gifWriter.endWriteSequence();
  }
 
  /**
   * Returns the first available GIF ImageWriter using 
   * ImageIO.getImageWritersBySuffix("gif").
   * 
   * @return a GIF ImageWriter object
   * @throws IIOException if no GIF image writers are returned
   */
  private static ImageWriter getWriter() throws IIOException {
    Iterator<ImageWriter> iter = ImageIO.getImageWritersBySuffix("gif");
    if(!iter.hasNext()) {
      throw new IIOException("No GIF Image Writers Exist");
    } else {
      return iter.next();
    }
  }
 
  /**
   * Returns an existing child node, or creates and returns a new child node (if 
   * the requested node does not exist).
   * 
   * @param rootNode the <tt>IIOMetadataNode</tt> to search for the child node.
   * @param nodeName the name of the child node.
   * 
   * @return the child node, if found or a new node created with the given name.
   */
  private static IIOMetadataNode getNode(IIOMetadataNode rootNode,String nodeName) {
    int nNodes = rootNode.getLength();
 
    for (int i = 0; i < nNodes; i++) {
 
        if (rootNode.item(i).getNodeName().compareToIgnoreCase(nodeName) == 0) {
        return((IIOMetadataNode) rootNode.item(i));
      }
    }
    IIOMetadataNode node = new IIOMetadataNode(nodeName);
    rootNode.appendChild(node);
    return(node);
  }
 
}
 
 class Empezar{
 
        public Empezar() throws IOException {
 
            //A ver esto se podria programar de mil formas diferentes y mejorar el programa en muchos
            //aspectos pero eso se los dejo a ustedes si les interesa, solamente mencionar que aquí
            //creamos una Array de String con 6 rutas de archivos....
            //Las 5 primeras son los png que se comprimiran como un Gif 
            //La última ruta es el nombre que tomara el archivo Gif...
 
 
            String []rutas ={"C:/Imagenes/Img1.png","C:/Imagenes/Img2.png","C:/Imagenes/Img3.png",
                "C:/Imagenes/Img4.png","C:/Imagenes/Img5.png","C:/Imagenes/AA_GifFinal.gif"};
 
 
            if (rutas.length > 5) {
 
              BufferedImage firstImage = ImageIO.read(new File(rutas[0]));
 
              // create a new BufferedOutputStream with the last argument
              ImageOutputStream output = new FileImageOutputStream(new File(rutas[rutas.length - 1]));
 
 
              //Aquí hay que tener en cuenta que los 400 es el timeBetweenFramesMS el tiempo o intervalo 
              // de secuencias ente fotogramas de los Jpg....
 
              GifSequenceWriter writer = new GifSequenceWriter(output, firstImage.getType(), 400, true);
 
 
              // write out the first image to our sequence...
              writer.writeToSequence(firstImage);
              for(int i=1; i<rutas.length-1; i++) {
                  System.out.println("Ruta: "+ rutas[i]);
                BufferedImage nextImage = ImageIO.read(new File(rutas[i]));
                writer.writeToSequence(nextImage);
              }
 
              writer.close();
              output.close();
         } else {
      System.out.println(
        "Usage: java GifSequenceWriter [list of gif files] [output file]");
    }
        }
  }



Comentarios sobre la versión: 1 (2)

Imágen de perfil
10 de Julio del 2017
estrellaestrellaestrellaestrellaestrella
Gracias. saludos
Responder
Alvaro
31 de Julio del 2017
estrellaestrellaestrellaestrellaestrella
Muchas Gracias por el Aporte, no podre comentar en todas tus publicaciones, pero ten presente que a muchas personas ayudas. Gracias de nuevo.
Responder

Comentar la versión: 1

Nombre
Correo (no se visualiza en la web)
Valoración
Comentarios...
CerrarCerrar
CerrarCerrar
Cerrar

Tienes que ser un usuario registrado para poder insertar imágenes, archivos y/o videos.

Puedes registrarte o validarte desde aquí.

Codigo
Negrita
Subrayado
Tachado
Cursiva
Insertar enlace
Imagen externa
Emoticon
Tabular
Centrar
Titulo
Linea
Disminuir
Aumentar
Vista preliminar
sonreir
dientes
lengua
guiño
enfadado
confundido
llorar
avergonzado
sorprendido
triste
sol
estrella
jarra
camara
taza de cafe
email
beso
bombilla
amor
mal
bien
Es necesario revisar y aceptar las políticas de privacidad

http://lwp-l.com/s3978