#include #include #include #include "common.h" namespace sharp { // How many tasks are in the queue? volatile int counterQueue = 0; // How many tasks are being processed? volatile int counterProcess = 0; // Filename extension checkers static bool EndsWith(std::string const &str, std::string const &end) { return str.length() >= end.length() && 0 == str.compare(str.length() - end.length(), end.length(), end); } bool IsJpeg(std::string const &str) { return EndsWith(str, ".jpg") || EndsWith(str, ".jpeg") || EndsWith(str, ".JPG") || EndsWith(str, ".JPEG"); } bool IsPng(std::string const &str) { return EndsWith(str, ".png") || EndsWith(str, ".PNG"); } bool IsWebp(std::string const &str) { return EndsWith(str, ".webp") || EndsWith(str, ".WEBP"); } bool IsTiff(std::string const &str) { return EndsWith(str, ".tif") || EndsWith(str, ".tiff") || EndsWith(str, ".TIF") || EndsWith(str, ".TIFF"); } bool IsDz(std::string const &str) { return EndsWith(str, ".dzi") || EndsWith(str, ".DZI"); } /* Determine image format of a buffer. */ ImageType DetermineImageType(void *buffer, size_t const length) { ImageType imageType = ImageType::UNKNOWN; char const *load = vips_foreign_find_load_buffer(buffer, length); if (load != NULL) { std::string loader = load; if (EndsWith(loader, "JpegBuffer")) { imageType = ImageType::JPEG; } else if (EndsWith(loader, "PngBuffer")) { imageType = ImageType::PNG; } else if (EndsWith(loader, "WebpBuffer")) { imageType = ImageType::WEBP; } else if (EndsWith(loader, "TiffBuffer")) { imageType = ImageType::TIFF; } else if (EndsWith(loader, "MagickBuffer")) { imageType = ImageType::MAGICK; } } return imageType; } /* Initialise and return a VipsImage from a buffer. Supports JPEG, PNG, WebP and TIFF. */ VipsImage* InitImage(void *buffer, size_t const length, VipsAccess const access) { return vips_image_new_from_buffer(buffer, length, NULL, "access", access, NULL); } /* Determine image format, reads the first few bytes of the file */ ImageType DetermineImageType(char const *file) { ImageType imageType = ImageType::UNKNOWN; char const *load = vips_foreign_find_load(file); if (load != NULL) { std::string loader = load; if (EndsWith(loader, "JpegFile")) { imageType = ImageType::JPEG; } else if (EndsWith(loader, "Png")) { imageType = ImageType::PNG; } else if (EndsWith(loader, "WebpFile")) { imageType = ImageType::WEBP; } else if (EndsWith(loader, "Openslide")) { imageType = ImageType::OPENSLIDE; } else if (EndsWith(loader, "TiffFile")) { imageType = ImageType::TIFF; } else if (EndsWith(loader, "Magick") || EndsWith(loader, "MagickFile")) { imageType = ImageType::MAGICK; } } return imageType; } /* Initialise and return a VipsImage from a file. */ VipsImage* InitImage(char const *file, VipsAccess const access) { return vips_image_new_from_file(file, "access", access, NULL); } /* Does this image have an embedded profile? */ bool HasProfile(VipsImage *image) { return (vips_image_get_typeof(image, VIPS_META_ICC_NAME) > 0) ? TRUE : FALSE; } /* Does this image have an alpha channel? Uses colour space interpretation with number of channels to guess this. */ bool HasAlpha(VipsImage *image) { return ( (image->Bands == 2 && image->Type == VIPS_INTERPRETATION_B_W) || (image->Bands == 4 && image->Type != VIPS_INTERPRETATION_CMYK) || (image->Bands == 5 && image->Type == VIPS_INTERPRETATION_CMYK) ); } /* Get EXIF Orientation of image, if any. */ int ExifOrientation(VipsImage const *image) { int orientation = 0; const char *exif; if ( vips_image_get_typeof(image, "exif-ifd0-Orientation") != 0 && !vips_image_get_string(image, "exif-ifd0-Orientation", &exif) ) { orientation = atoi(&exif[0]); } return orientation; } /* Returns the window size for the named interpolator. For example, a window size of 3 means a 3x3 pixel grid is used for the calculation. */ int InterpolatorWindowSize(char const *name) { VipsInterpolate *interpolator = vips_interpolate_new(name); if (interpolator == NULL) { return -1; } int window_size = vips_interpolate_get_window_size(interpolator); g_object_unref(interpolator); return window_size; } } // namespace sharp