-->
Home » , » Jpeginfo is a command line tool used to generate informative listings of JPEG files, and also to check JPEG files for errors
Saturday
20 April 2013

Jpeginfo is a command line tool used to generate informative listings of JPEG files, and also to check JPEG files for errors

Jpeginfo_1Jpeginfo is a small tool that shows information about jpegs. Given a list of jpeg file arguments, it shows the image sizes, the number of components in each image, and the color scheme.

It's a really small tool of which I'm sure that countless other exist. I was too lazy to search for something suitable, so I just cooked it myself. As an example, given a command line like jpeginfo *.jpg it might show:

xroads2.jpg: 1203 x 800 / 3 components / Y/Cb/Cr
xroads4.jpg: 1203 x 800 / 3 components / Y/Cb/Cr

To get it yourself, copy the two listings below as jpeginfo.c and as Makefile. Then hit make install. You will need libjpeg on your system, including the header file jpeglib.h. This is often called package libjpeg-devel or similar (so you'll need not just the runtime package, but the development files as well).

The step make install puts the binary program jpeginfo into /usr/local/bin. Edit the Makefile if you want a different location.

The Files.

Here is jpeginfo.c:

/*
 * jpeginfo.c
 * Part of jpeginfo, a small tool to show properties of jpeg images.
 */
   
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <jpeglib.h>

int main (int argc, char **argv) {
    struct jpeg_decompress_struct cinfo;
    struct jpeg_error_mgr jerr;
    int i;
    FILE *inf;
    
    /* Verify argument list */
    if (argc < 2) {
 fprintf (stderr,
"\n"   
"This is jpeginfo V" VER ", copyright (c) Karel Kubat <karel@kubat.nl>.\n" 
"Visit http://www.kubat.nl/pages/jpeginfo for downloads and information.\n"
"Usage: jpeginfo jpegfile(s)\n"
"Shows properties of the stated file(s). Use '-' for stdin.\n"
"\n");   
 exit (1


jpeginfo_8h__dep__incl);
    }

    /* Process all files. */
    for (i = 1; i < argc; i++) {
 cinfo.err = jpeg_std_error (&jerr);
 jpeg_create_decompress (&cinfo);

 printf ("%s: ", argv[i]);
        fflush (stdout);
 
 if (!strcmp (argv[i], "-"))
     jpeg_stdio_src (&cinfo, stdin);
 else if (! (inf = fopen (argv[i], "r")) ) {
     fprintf (stderr, "Cannot read %s: %s\n", argv[i], strerror(errno));
     exit (1);
 } else
     jpeg_stdio_src (&cinfo, inf);

 jpeg_read_header (&cinfo, TRUE);

 printf ("%u x %u / %d components / ",
  cinfo.image_width, cinfo.image_height,
  cinfo.num_components);
 switch (cinfo.jpeg_color_space) {
 case JCS_GRAYSCALE:
     printf ("monochrome");
     break;
 case JCS_RGB:
     printf ("red/green/blue");
     break;
 case JCS_YCbCr:
     printf ("Y/Cb/Cr");
     break;
 case JCS_CMYK:
     printf ("C/M/Y/K");
     break;
 case JCS_YCCK:
     printf ("Y/Cb/Cr/K");
     break;
 default:
     printf ("unknown");
 }
 putchar ('\n');
 
 jpeg_destroy_decompress (&cinfo);
 if (strcmp (argv[i], "-"))
     fclose (inf);
    }

    /* All done */
    return (0);
}
    

And here is the Makefile:

# Central Makefile for jpeginfo
# -----------------------------

BINDIR = /usr/local/bin
VER = 1.00

jpeginfo: jpeginfo.o
 $(CC) -o $@ -L/opt/local/lib -ljpeg $<

jpeginfo.o: jpeginfo.c Makefile
 $(CC) -c -g -Wall -W -o $@ -DVER=\"$(VER)\" $<

clean:
 rm -f jpeginfo jpeginfo.o .gdb_history

install: jpeginfo
 mkdir -p $(BINDIR)
 install -s jpeginfo $(BINDIR)/jpeginfo
    

Custom Search
 
If you liked this article, subscribe to the feed by clicking the image below to keep informed about new contents of the blog:

0 commenti:

Post a Comment

Random Posts

  • Mixxx User Manual: Installation.
    19.09.2014 - 0 Comments
    Mixxx is free mixing software for DJs, providing everything needed to create live mixes. It allows you to beatmatch songs and crossfade them together, like you would with turntables and a mixer. Installation on GNU/Linux. Official packages of…
  • Tuquito is an Ubuntu-based Linux distribution created in Tucumán, Argentina
    15.09.2009 - 0 Comments
    Tuquito is an Ubuntu-based Linux distribution created in Tucumán, Argentina, by Ignacio Díaz, Chris Arenas and Mauro Torres, students of The National University of Tucumán. Torres is also the creator of Garfio, a tool designed for the development…
  • Top Reasons to Use MySQL
    16.07.2009 - 0 Comments
    1. Scalability and Flexibility The MySQL database server provides the ultimate in scalability, sporting the capacity to handle deeply embedded applications with a footprint of only 1MB to running massive data warehouses holding terabytes of…
  • MOPSLinux is a Russian community distribution based on Slackware Linux.
    15.12.2009 - 0 Comments
    The first beta release of MOPSLinux 7.0, a Russian Slackware-based community distribution with an advanced package manager, is ready for download and testing.According to the release announcement, the distribution has now reached a reasonable level…
  • Knoppix is an operating system based on Debian designed to be run directly from a CD  / DVD (Live CD) and a USB key (Live USB)
    24.07.2010 - 0 Comments
    Knoppix, or KNOPPIX, is a Linux distribution based on Debian GNU/Linux designed to be run directly from a CD / DVD. Knoppix is one of the best-known live CDs. Knoppix was developed by Linux consultant Klaus Knopper. When starting a program it …
  • Warsow is a completely free fastpaced first-person shooter (FPS) set in a futuristic cartoon-like world.
    17.07.2011 - 0 Comments
    Warsow is a multiplayer first-person shooter computer game first publicly released on June 8, 2005. The game is in active development. Warsow’s codebase is free and open source software, distributed under the terms of the GPL; it is built upon…
  • pMachine is online publishing's most flexible and creative software.
    17.10.2008 - 0 Comments
    Blogs are useful add-on's for your website. You can also start your own webblog now with help of Fantastico script installer. Spice up your site with these useful utilities free of cost as…
  • Black Lab Linux is the only distribution that really focuses on ease of use for the user.
    17.05.2017 - 1 Comments
    Black Lab Linux is a free software Linux distribution for x86 and x86-64 hardware. It was first released in November 2013 by PC/OpenSystems LLC. Black Lab Linux is based on Ubuntu Linux tailored both for general desktop use and for the more…
  • MCNLive is a Mandriva-based live CD developed by MandrakeClub.nl in the Netherlands.
    10.03.2010 - 0 Comments
    MCNLive, a Mandriva-based distribution and live CD, has been resurrected by the members of the Dutch Mandriva Club.Update: Michel Hoogervorst has announced the availability of the first release candidate for MCNLive Kris, a small Mandriva-based…
  • Top 10 blog posts for December 2013 from Linuxlandit & The Conqueror Penguin.
    06.01.2014 - 0 Comments
    1.- The state of Linux: the most popular Linux distributions [Infographic]. DistroWatch is a website which provides news, popularity rankings, and other general information about various Linux distributions as well as other free software/open…

Recent Posts

Recent Posts Widget

Popular Posts

Labels

Archive

page counter follow us in feedly
 
Copyright © 2014 Linuxlandit & The Conqueror Penguin
-->