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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T17:07:54+00:00 2026-06-13T17:07:54+00:00

In my app, the client user can draw some shape or lines, then these

  • 0

In my app, the client user can draw some shape or lines, then these shape data should be send to server and be saved to database. The shape should can be redraw on the client again.

My problem is how to design one effective data structure to represent the shape, the data structure should be easy to transfer and save to database.

Thanks!

EDTION: those shapes include the regular shapes(like circle) and the irregular shapes which user can draw it freely.

  • 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-13T17:07:55+00:00Added an answer on June 13, 2026 at 5:07 pm

    I think it depends on how you are letting the user draw shapes. Are they simply moving their cursor around a canvas? If that’s the case, there isn’t much mathematical to it, so cbranch’s solution is probably a good way to go. It just needs to be an array of on/off bits. You could even optimize it by using some sort of compression technique.

    However, if you’re giving them specific ways to draw, for instance — a square tool, a circle tool, a bezier tool, then each of those could be stored more efficiently than pixel data. A square could be stored as a simple structure like:

    struct square {
        int x;
        int y;
        int length;
    }
    

    A circle:

    struct circle {
        int x;
        int y;
        int radius;
    }
    

    A Bezier curve:

    struct bezier {
        int x1;
        int y1;
        int x2;
        int y2;
    }
    

    Then, just recreate the appropriate type of shape from the data when you’re drawing it back on screen.

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

Sidebar

Related Questions

We have client server based app which saves user related data into a zip
In my web app, the user can create some HTML/CSS markup that is saved
I have a small app that a client uses to manually update some data.
I'm making an Android app where the user can download files from a FTP-server.
I use a request dialog in my app where the user can send requests
In my GWT app I have the following model class: import com.google.gwt.user.client.rpc.IsSerializable; public class
I'm writing a Windows 8 Metro app (client-server) and would like to allow my
I have Android client app that communicates with server using Socket . On my
I have a client app and a server app. The client calls a wcf
I have a DDE client app which connects to the DDE server app by

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.