Load jpegs without gdk-pixbuf

Use our own loader for jpeg files.
This commit is contained in:
Matthias Clasen 2021-09-11 17:02:41 -04:00 committed by Benjamin Otte
parent 729ba8111a
commit daf29e174f

View File

@ -48,6 +48,7 @@
#include <graphene.h>
#include "loaders/gdkpngprivate.h"
#include "loaders/gdktiffprivate.h"
#include "loaders/gdkjpegprivate.h"
G_DEFINE_QUARK (gdk-texture-error-quark, gdk_texture_error)
@ -445,6 +446,11 @@ gdk_texture_new_from_bytes (GBytes *bytes,
{
return gdk_load_tiff (bytes, error);
}
else if (size > strlen (JPEG_SIGNATURE) &&
memcmp (data, JPEG_SIGNATURE, strlen (JPEG_SIGNATURE)) == 0)
{
return gdk_load_jpeg (bytes, error);
}
else
{
GInputStream *stream;