#include #include #include #include #include #include #include "nan.h" using namespace v8; using namespace node; struct resize_baton { std::string file_in; void* buffer_in; size_t buffer_in_len; std::string file_out; void* buffer_out; size_t buffer_out_len; int width; int height; bool crop; bool max; VipsExtend extend; bool sharpen; bool progressive; VipsAccess access_method; int quality; int compressionLevel; int angle; std::string err; resize_baton(): buffer_in_len(0), buffer_out_len(0), crop(false), max(false), sharpen(false), progressive(false) {} }; typedef enum { JPEG, PNG, WEBP, TIFF, MAGICK } ImageType; unsigned char const MARKER_JPEG[] = {0xff, 0xd8}; unsigned char const MARKER_PNG[] = {0x89, 0x50}; unsigned char const MARKER_WEBP[] = {0x52, 0x49}; static bool ends_with(std::string const &str, std::string const &end) { return str.length() >= end.length() && 0 == str.compare(str.length() - end.length(), end.length(), end); } static bool is_jpeg(std::string const &str) { return ends_with(str, ".jpg") || ends_with(str, ".jpeg") || ends_with(str, ".JPG") || ends_with(str, ".JPEG"); } static bool is_png(std::string const &str) { return ends_with(str, ".png") || ends_with(str, ".PNG"); } static bool is_webp(std::string const &str) { return ends_with(str, ".webp") || ends_with(str, ".WEBP"); } static bool is_tiff(std::string const &str) { return ends_with(str, ".tif") || ends_with(str, ".tiff") || ends_with(str, ".TIF") || ends_with(str, ".TIFF"); } static void resize_error(resize_baton *baton, VipsImage *unref) { (baton->err).append(vips_error_buffer()); vips_error_clear(); g_object_unref(unref); vips_thread_shutdown(); return; } /* Calculate the angle of rotation for the output image. In order of priority: 1. Use explicitly requested angle (supports 90, 180, 270) 2. Use input image EXIF Orientation header (does not support mirroring) 3. Otherwise default to zero, i.e. no rotation */ static VipsAngle calc_rotation(int const angle, VipsImage const *input) { VipsAngle rotate = VIPS_ANGLE_0; if (angle == -1) { const char *exif; if (!vips_image_get_string(input, "exif-ifd0-Orientation", &exif)) { if (exif[0] == 0x36) { // "6" rotate = VIPS_ANGLE_90; } else if (exif[0] == 0x33) { // "3" rotate = VIPS_ANGLE_180; } else if (exif[0] == 0x38) { // "8" rotate = VIPS_ANGLE_270; } } } else { if (angle == 90) { rotate = VIPS_ANGLE_90; } else if (angle == 180) { rotate = VIPS_ANGLE_180; } else if (angle == 270) { rotate = VIPS_ANGLE_270; } } return rotate; } class ResizeWorker : public NanAsyncWorker { public: ResizeWorker(NanCallback *callback, resize_baton *baton) : NanAsyncWorker(callback), baton(baton) {} ~ResizeWorker() {} void Execute () { // Input ImageType inputImageType = JPEG; VipsImage *in = vips_image_new(); if (baton->buffer_in_len > 1) { if (memcmp(MARKER_JPEG, baton->buffer_in, 2) == 0) { if (vips_jpegload_buffer(baton->buffer_in, baton->buffer_in_len, &in, "access", baton->access_method, NULL)) { return resize_error(baton, in); } } else if(memcmp(MARKER_PNG, baton->buffer_in, 2) == 0) { inputImageType = PNG; if (vips_pngload_buffer(baton->buffer_in, baton->buffer_in_len, &in, "access", baton->access_method, NULL)) { return resize_error(baton, in); } } else if(memcmp(MARKER_WEBP, baton->buffer_in, 2) == 0) { inputImageType = WEBP; if (vips_webpload_buffer(baton->buffer_in, baton->buffer_in_len, &in, "access", baton->access_method, NULL)) { return resize_error(baton, in); } } else { resize_error(baton, in); (baton->err).append("Unsupported input buffer"); return; } } else if (vips_foreign_is_a("jpegload", baton->file_in.c_str())) { if (vips_jpegload((baton->file_in).c_str(), &in, "access", baton->access_method, NULL)) { return resize_error(baton, in); } } else if (vips_foreign_is_a("pngload", baton->file_in.c_str())) { inputImageType = PNG; if (vips_pngload((baton->file_in).c_str(), &in, "access", baton->access_method, NULL)) { return resize_error(baton, in); } } else if (vips_foreign_is_a("webpload", baton->file_in.c_str())) { inputImageType = WEBP; if (vips_webpload((baton->file_in).c_str(), &in, "access", baton->access_method, NULL)) { return resize_error(baton, in); } } else if (vips_foreign_is_a("tiffload", baton->file_in.c_str())) { inputImageType = TIFF; if (vips_tiffload((baton->file_in).c_str(), &in, "access", baton->access_method, NULL)) { return resize_error(baton, in); } } else if(vips_foreign_is_a("magickload", (baton->file_in).c_str())) { inputImageType = MAGICK; if (vips_magickload((baton->file_in).c_str(), &in, "access", baton->access_method, NULL)) { return resize_error(baton, in); } } else { resize_error(baton, in); (baton->err).append("Unsupported input file " + baton->file_in); return; } // Get input image width and height int inputWidth = in->Xsize; int inputHeight = in->Ysize; // Calculate angle of rotation, to be carried out later VipsAngle rotation = calc_rotation(baton->angle, in); if (rotation == VIPS_ANGLE_90 || rotation == VIPS_ANGLE_270) { // Swap input output width and height when rotating by 90 or 270 degrees int swap = inputWidth; inputWidth = inputHeight; inputHeight = swap; } // Scaling calculations double factor; if (baton->width > 0 && baton->height > 0) { // Fixed width and height double xfactor = static_cast(inputWidth) / static_cast(baton->width); double yfactor = static_cast(inputHeight) / static_cast(baton->height); factor = baton->crop ? std::min(xfactor, yfactor) : std::max(xfactor, yfactor); // if max is set, we need to compute the real size of the thumb image if (baton->max) { if (xfactor > yfactor) { baton->height = round(static_cast(inputHeight) / xfactor); } else { baton->width = round(static_cast(inputWidth) / yfactor); } } } else if (baton->width > 0) { // Fixed width, auto height factor = static_cast(inputWidth) / static_cast(baton->width); baton->height = floor(static_cast(inputHeight) / factor); } else if (baton->height > 0) { // Fixed height, auto width factor = static_cast(inputHeight) / static_cast(baton->height); baton->width = floor(static_cast(inputWidth) / factor); } else { // Identity transform factor = 1; baton->width = inputWidth; baton->height = inputHeight; } int shrink = floor(factor); if (shrink < 1) { shrink = 1; } double residual = static_cast(shrink) / factor; // Try to use libjpeg shrink-on-load int shrink_on_load = 1; if (inputImageType == JPEG) { if (shrink >= 8) { factor = factor / 8; shrink_on_load = 8; } else if (shrink >= 4) { factor = factor / 4; shrink_on_load = 4; } else if (shrink >= 2) { factor = factor / 2; shrink_on_load = 2; } } VipsImage *shrunk_on_load = vips_image_new(); if (shrink_on_load > 1) { // Recalculate integral shrink and double residual factor = std::max(factor, 1.0); shrink = floor(factor); residual = static_cast(shrink) / factor; // Reload input using shrink-on-load if (baton->buffer_in_len > 1) { if (vips_jpegload_buffer(baton->buffer_in, baton->buffer_in_len, &shrunk_on_load, "shrink", shrink_on_load, NULL)) { return resize_error(baton, in); } } else { if (vips_jpegload((baton->file_in).c_str(), &shrunk_on_load, "shrink", shrink_on_load, NULL)) { return resize_error(baton, in); } } } else { vips_copy(in, &shrunk_on_load, NULL); } g_object_unref(in); VipsImage *shrunk = vips_image_new(); if (shrink > 1) { // Use vips_shrink with the integral reduction if (vips_shrink(shrunk_on_load, &shrunk, shrink, shrink, NULL)) { return resize_error(baton, shrunk_on_load); } // Recalculate residual float based on dimensions of required vs shrunk images double shrunkWidth = shrunk->Xsize; double shrunkHeight = shrunk->Ysize; if (rotation == VIPS_ANGLE_90 || rotation == VIPS_ANGLE_270) { // Swap input output width and height when rotating by 90 or 270 degrees int swap = shrunkWidth; shrunkWidth = shrunkHeight; shrunkHeight = swap; } double residualx = static_cast(baton->width) / static_cast(shrunkWidth); double residualy = static_cast(baton->height) / static_cast(shrunkHeight); if (baton->crop || baton->max) { residual = std::max(residualx, residualy); } else { residual = std::min(residualx, residualy); } } else { vips_copy(shrunk_on_load, &shrunk, NULL); } g_object_unref(shrunk_on_load); // Use vips_affine with the remaining float part using bilinear interpolation VipsImage *affined = vips_image_new(); if (residual != 0) { if (vips_affine(shrunk, &affined, residual, 0, 0, residual, "interpolate", vips_interpolate_bilinear_static(), NULL)) { return resize_error(baton, shrunk); } } else { vips_copy(shrunk, &affined, NULL); } g_object_unref(shrunk); // Rotate VipsImage *rotated = vips_image_new(); if (rotation != VIPS_ANGLE_0) { if (vips_rot(affined, &rotated, rotation, NULL)) { return resize_error(baton, affined); } } else { vips_copy(affined, &rotated, NULL); } g_object_unref(affined); // Crop/embed VipsImage *canvased = vips_image_new(); if (rotated->Xsize != baton->width || rotated->Ysize != baton->height) { if (baton->crop || baton->max) { // Crop/max int width = std::min(rotated->Xsize, baton->width); int height = std::min(rotated->Ysize, baton->height); int left = (rotated->Xsize - width + 1) / 2; int top = (rotated->Ysize - height + 1) / 2; if (vips_extract_area(rotated, &canvased, left, top, width, height, NULL)) { return resize_error(baton, rotated); } } else { // Embed int left = (baton->width - rotated->Xsize) / 2; int top = (baton->height - rotated->Ysize) / 2; if (vips_embed(rotated, &canvased, left, top, baton->width, baton->height, "extend", baton->extend, NULL)) { return resize_error(baton, rotated); } } } else { vips_copy(rotated, &canvased, NULL); } g_object_unref(rotated); // Mild sharpen VipsImage *sharpened = vips_image_new(); if (baton->sharpen) { VipsImage *sharpen = vips_image_new_matrixv(3, 3, -1.0, -1.0, -1.0, -1.0, 32.0, -1.0, -1.0, -1.0, -1.0); vips_image_set_double(sharpen, "scale", 24); if (vips_conv(canvased, &sharpened, sharpen, NULL)) { g_object_unref(sharpen); return resize_error(baton, canvased); } g_object_unref(sharpen); } else { vips_copy(canvased, &sharpened, NULL); } g_object_unref(canvased); // Output if (baton->file_out == "__jpeg" || (baton->file_out == "__input" && inputImageType == JPEG)) { // Write JPEG to buffer if (vips_jpegsave_buffer(sharpened, &baton->buffer_out, &baton->buffer_out_len, "strip", TRUE, "Q", baton->quality, "optimize_coding", TRUE, "interlace", baton->progressive, NULL)) { return resize_error(baton, sharpened); } } else if (baton->file_out == "__png" || (baton->file_out == "__input" && inputImageType == PNG)) { // Write PNG to buffer if (vips_pngsave_buffer(sharpened, &baton->buffer_out, &baton->buffer_out_len, "strip", TRUE, "compression", baton->compressionLevel, "interlace", baton->progressive, NULL)) { return resize_error(baton, sharpened); } } else if (baton->file_out == "__webp" || (baton->file_out == "__input" && inputImageType == WEBP)) { // Write WEBP to buffer if (vips_webpsave_buffer(sharpened, &baton->buffer_out, &baton->buffer_out_len, "strip", TRUE, "Q", baton->quality, NULL)) { return resize_error(baton, sharpened); } } else if (is_jpeg(baton->file_out)) { // Write JPEG to file if (vips_jpegsave(sharpened, baton->file_out.c_str(), "strip", TRUE, "Q", baton->quality, "optimize_coding", TRUE, "interlace", baton->progressive, NULL)) { return resize_error(baton, sharpened); } } else if (is_png(baton->file_out)) { // Write PNG to file if (vips_pngsave(sharpened, baton->file_out.c_str(), "strip", TRUE, "compression", baton->compressionLevel, "interlace", baton->progressive, NULL)) { return resize_error(baton, sharpened); } } else if (is_webp(baton->file_out)) { // Write WEBP to file if (vips_webpsave(sharpened, baton->file_out.c_str(), "strip", TRUE, "Q", baton->quality, NULL)) { return resize_error(baton, sharpened); } } else if (is_tiff(baton->file_out)) { // Write TIFF to file if (vips_tiffsave(sharpened, baton->file_out.c_str(), "strip", TRUE, "compression", VIPS_FOREIGN_TIFF_COMPRESSION_JPEG, "Q", baton->quality, NULL)) { return resize_error(baton, sharpened); } } else { (baton->err).append("Unsupported output " + baton->file_out); } g_object_unref(sharpened); vips_thread_shutdown(); } void HandleOKCallback () { NanScope(); Handle argv[2] = { NanNull(), NanNull() }; if (!baton->err.empty()) { // Error argv[0] = NanNew(baton->err.data(), baton->err.size()); } else if (baton->buffer_out_len > 0) { // Buffer argv[1] = NanNewBufferHandle((char *)baton->buffer_out, baton->buffer_out_len); g_free(baton->buffer_out); } delete baton; callback->Call(2, argv); } private: resize_baton* baton; }; NAN_METHOD(resize) { NanScope(); resize_baton *baton = new resize_baton; baton->file_in = *String::Utf8Value(args[0]->ToString()); if (args[1]->IsObject()) { Local buffer = args[1]->ToObject(); baton->buffer_in_len = Buffer::Length(buffer); baton->buffer_in = Buffer::Data(buffer); } baton->file_out = *String::Utf8Value(args[2]->ToString()); baton->width = args[3]->Int32Value(); baton->height = args[4]->Int32Value(); Local canvas = args[5]->ToString(); if (canvas->Equals(NanNew("c"))) { baton->crop = true; } else if (canvas->Equals(NanNew("w"))) { baton->extend = VIPS_EXTEND_WHITE; } else if (canvas->Equals(NanNew("b"))) { baton->extend = VIPS_EXTEND_BLACK; } else if (canvas->Equals(NanNew("m"))) { baton->max = true; } baton->sharpen = args[6]->BooleanValue(); baton->progressive = args[7]->BooleanValue(); baton->access_method = args[8]->BooleanValue() ? VIPS_ACCESS_SEQUENTIAL : VIPS_ACCESS_RANDOM; baton->quality = args[9]->Int32Value(); baton->compressionLevel = args[10]->Int32Value(); baton->angle = args[11]->Int32Value(); NanCallback *callback = new NanCallback(args[12].As()); NanAsyncQueueWorker(new ResizeWorker(callback, baton)); NanReturnUndefined(); } NAN_METHOD(cache) { NanScope(); // Set cache limit if (args[0]->IsInt32()) { vips_cache_set_max_mem(args[0]->Int32Value() * 1048576); } // Get cache statistics Local cache = NanNew(); cache->Set(NanNew("current"), NanNew(vips_tracked_get_mem() / 1048576)); cache->Set(NanNew("high"), NanNew(vips_tracked_get_mem_highwater() / 1048576)); cache->Set(NanNew("limit"), NanNew(vips_cache_get_max_mem() / 1048576)); NanReturnValue(cache); } static void at_exit(void* arg) { NanScope(); vips_shutdown(); } extern "C" void init(Handle target) { NanScope(); vips_init(""); AtExit(at_exit); NODE_SET_METHOD(target, "resize", resize); NODE_SET_METHOD(target, "cache", cache); } NODE_MODULE(sharp, init)