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 7571303
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T15:38:33+00:00 2026-05-30T15:38:33+00:00

It seems like there are two ways to send <canvas> data to the server.

  • 0

It seems like there are two ways to send <canvas> data to the server. One is to use canvas.getImageData() to get an array of pixels and their 8-bit color values. The other method is to use canvas.toDataURL()) to send a file attachment. This method is demonstrated here.

I want to build a site where people can save their canvas drawings. Which method would be more scalable and faster for my users?

  • 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-05-30T15:38:34+00:00Added an answer on May 30, 2026 at 3:38 pm

    To open your options: Using fabric.js you could serialize your fabric.js canvas to JSON.

    Not only does it provide an additional layer of editing capabilities but allows you to do the following (Not to mention being able to edit their images at a later stage) :

    var canvas = new fabric.Canvas('c');
    canvas.add(
        new fabric.Rect({ top: 100, left: 100, width: 50, height: 50, fill: '#f55' }),
        new fabric.Circle({ top: 140, left: 230, radius: 75, fill: 'green' }),
        new fabric.Triangle({ top: 300, left: 210, width: 100, height: 100, fill: 'blue' })
    );
    

    Now when you want to serialize this canvas you simply call the JSON.stringify function on the fabric canvas object;

    JSON.stringify(canvas);

    Which gives you something like the following for our example above:

    {
        "objects": [
            {
                "type": "rect",
                "left": 100,
                "top": 100,
                "width": 50,
                "height": 50,
                "fill": "#f55",
                "overlayFill": null,
                "stroke": null,
                "strokeWidth": 1,
                "scaleX": 1,
                "scaleY": 1,
                "angle": 0,
                "flipX": false,
                "flipY": false,
                "opacity": 1,
                "selectable": true
            },
            ...
        ]
    }
    

    De serializing the canvas back to its state is reversed by using:

    var canvas = new fabric.Canvas('c');
    canvas.loadFromJSON(yourJSONString);
    

    Some Additional Resources:

    Kitchen Sink Demo – View the capabilities of fabric.js (Including free drawing; modifying the size and position of the free drawing afterwards)

    Homepage

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

Sidebar

Related Questions

cgi.escape seems like one possible choice. Does it work well? Is there something that
It seems like there should be something shorter than this: private string LoadFromFile(string path)
It seems like there is a lot of overhead involved in rapidly opening and
It seems like there should be a simpler way than: import string s =
It seems like there should be a removalAllOccuring(Collection) (or similiar) method in Multiset. A
It seems like there used to be way more binary protocols because of the
I am used to the c-style getchar() , but it seems like there is
I been wondering about this for a while. It seems like there are so
It seems to me like there's a lot of sheeping going on, with everyone
Is there some easy way to pad Strings in Java? Seems like something that

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.