Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7853135
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T19:35:31+00:00 2026-06-02T19:35:31+00:00

I am using https://github.com/aheckmann/gm to resize an image. var fs = require(‘fs’); var gm

  • 0

I am using https://github.com/aheckmann/gm to resize an image.

var fs = require('fs');
var gm = require('gm');

var input = __dirname   + '/input.jpg';
var output = __dirname + '/output.jpg';

gm(input)
  .resize(350)
  .stream( function(err, stdout, stderr) {

    var writeStream = fs.createWriteStream( output, { encoding: 'base64' } );

    var i = '';

    stdout.on( 'data', function(data){

      i += data.toString('base64');

    });

    stdout.on('end', function(){

      writeStream.write( new Buffer(i, 'base64') );
      writeStream.end();

    });

  } );

The problem is that it’s not writing the whole image.

half camel

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T19:35:33+00:00Added an answer on June 2, 2026 at 7:35 pm

    I’ve solved it by using the https://github.com/coolaj86/node-bufferjs concat method.

    var fs = require('fs');
    var gm = require('gm');
    
    var input = __dirname   + '/input.jpg';
    var output = __dirname + '/output.jpg';
    
    require('bufferjs');
    
    gm(input)
      .resize(800)
      .stream( function(err, stdout, stderr) {
    
        ws = fs.createWriteStream( output );
    
        i = [];
    
        stdout.on( 'data', function(data){
    
          console.log('data');
    
          i.push( data );
    
    
        });
    
        stdout.on( 'close', function(){
    
          console.log( 'close' );
    
          var image = Buffer.concat( i );
          ws.write( image.toString('base64'), 'base64' );
          ws.end();
    
        });
    
      } );
    

    Apparently you need to keep track of the length/index of your buffers when you concat them. You can find more info by looking at the source code of bufferjs’ concat method: https://github.com/coolaj86/node-bufferjs/blob/master/bufferjs/concat.js

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using https://github.com/plataformatec/simple_form and am trying to send a extra parameter. I have
Currently I'm using https://github.com/mranney/node_redis as my node redis client. client.retry_delay is set to 250ms
I'm using clearance ( https://github.com/thoughtbot/clearance/wiki ) for authentication in my rails app. But I'm
I am using PJAX https://github.com/defunkt/jquery-pjax and I was wondering since the whole page does
I am trying to create a chat application on heroku using the following https://github.com/tarnfeld/PusherChat-Rails
I have integrated Facebook functionality into my applications. By using the link https://github.com/facebook/facebook-ios-sdk ,
I followed this tutorial: https://github.com/EllisLab/CodeIgniter/wiki/PDF-generation-using-dompdf However, I can't seem to set the path right.
I am using the SSHJ library ( https://github.com/shikhar/sshj ). I can use sshClient.newSCPFileTransfer(); to
I'm using the following library https://github.com/Leonidas-from-XIV/node-xml2js To convert XML to JSON. After conversion console.log
I am using successfully the mobylette rails gem: https://github.com/tscolari/mobylette I was wondering if anybody

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.