mirror of
https://github.com/webmproject/libwebp.git
synced 2024-12-25 21:28:22 +01:00
da0d9c7d4e
cwebp, gif2webp, img2webp, vwebp and webpinfo are modified in this change to align with the other examples. When given no arguments, the examples print their help output and exit with failure. Bug: webp:42340557, webp:381372617 Change-Id: Ifed4eb79e98233f7aa780c42e489636d0cf4a035
110 lines
2.6 KiB
C
110 lines
2.6 KiB
C
// Copyright 2017 Google Inc. All Rights Reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style license
|
|
// that can be found in the COPYING file in the root of the source
|
|
// tree. An additional intellectual property rights grant can be found
|
|
// in the file PATENTS. All contributing project authors may
|
|
// be found in the AUTHORS file in the root of the source tree.
|
|
// -----------------------------------------------------------------------------
|
|
//
|
|
// Simple SDL-based WebP file viewer.
|
|
// Does not support animation, just static images.
|
|
//
|
|
// Press 'q' to exit.
|
|
//
|
|
// Author: James Zern (jzern@google.com)
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "webp/config.h"
|
|
#endif
|
|
|
|
#if defined(WEBP_HAVE_SDL)
|
|
|
|
#include "webp_to_sdl.h"
|
|
#include "webp/decode.h"
|
|
#include "imageio/imageio_util.h"
|
|
#include "../examples/unicode.h"
|
|
|
|
#if defined(WEBP_HAVE_JUST_SDL_H)
|
|
#include <SDL.h>
|
|
#else
|
|
#include <SDL2/SDL.h>
|
|
#endif
|
|
|
|
static void ProcessEvents(void) {
|
|
int done = 0;
|
|
SDL_Event event;
|
|
while (!done && SDL_WaitEvent(&event)) {
|
|
switch (event.type) {
|
|
case SDL_KEYUP:
|
|
switch (event.key.keysym.sym) {
|
|
case SDLK_q: done = 1; break;
|
|
default: break;
|
|
}
|
|
break;
|
|
default: break;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Returns EXIT_SUCCESS on success, EXIT_FAILURE on failure.
|
|
int main(int argc, char* argv[]) {
|
|
int c;
|
|
int ok = 0;
|
|
|
|
INIT_WARGV(argc, argv);
|
|
|
|
if (argc == 1) {
|
|
fprintf(stderr, "Usage: %s [-h] image.webp [more_files.webp...]\n",
|
|
argv[0]);
|
|
goto Error;
|
|
}
|
|
|
|
for (c = 1; c < argc; ++c) {
|
|
const char* file = NULL;
|
|
const uint8_t* webp = NULL;
|
|
size_t webp_size = 0;
|
|
if (!strcmp(argv[c], "-h")) {
|
|
printf("Usage: %s [-h] image.webp [more_files.webp...]\n", argv[0]);
|
|
FREE_WARGV_AND_RETURN(EXIT_SUCCESS);
|
|
} else {
|
|
file = (const char*)GET_WARGV(argv, c);
|
|
}
|
|
if (file == NULL) continue;
|
|
if (!ImgIoUtilReadFile(file, &webp, &webp_size)) {
|
|
WFPRINTF(stderr, "Error opening file: %s\n", (const W_CHAR*)file);
|
|
goto Error;
|
|
}
|
|
if (webp_size != (size_t)(int)webp_size) {
|
|
free((void*)webp);
|
|
fprintf(stderr, "File too large.\n");
|
|
goto Error;
|
|
}
|
|
ok = WebPToSDL((const char*)webp, (int)webp_size);
|
|
free((void*)webp);
|
|
if (!ok) {
|
|
WFPRINTF(stderr, "Error decoding file %s\n", (const W_CHAR*)file);
|
|
goto Error;
|
|
}
|
|
ProcessEvents();
|
|
}
|
|
ok = 1;
|
|
|
|
Error:
|
|
SDL_Quit();
|
|
FREE_WARGV_AND_RETURN(ok ? EXIT_SUCCESS : EXIT_FAILURE);
|
|
}
|
|
|
|
#else // !WEBP_HAVE_SDL
|
|
|
|
int main(int argc, const char* argv[]) {
|
|
fprintf(stderr, "SDL support not enabled in %s.\n", argv[0]);
|
|
(void)argc;
|
|
return 0;
|
|
}
|
|
|
|
#endif
|