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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T18:01:33+00:00 2026-06-17T18:01:33+00:00

I’ve been looking for, but haven’t been able to find, a Web/JavaScript based image

  • 0

I’ve been looking for, but haven’t been able to find, a Web/JavaScript based image editor. Something like aviary, but with the ability to POST the image data back to my hosted server directly (without processing by aviary before POSTing to my server).

I’m only looking for basic image editing – cropping, resizing and maybe some filtering capabilities.

Aviary would’ve been the solution, but the aforementioned limitations rule it out as viable.

  • 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-17T18:01:34+00:00Added an answer on June 17, 2026 at 6:01 pm

    I use Aviary and all I do is take the data and send it to a new page and save it to the server using asp.net

    On the edit page I changed the function:

    onSaveButtonClicked: function() 
    {
        myEditor.getImageData(function(data) 
       {
          // set image to new data, and close editor
          if (myImage) 
          {
        document.getElementById('image2').value=data;
        document.form2.submit();  //Send to next page
          }
          myEditor.close();
        });
        return false;
    }
    
    I added a new form under the first form:
    
    <form name="form2" id="form2"> method="post" action="edit_save_image_task.aspx?filename=<%=filename %>" 
            <input id="image2" type="hidden" name="image2" value="" />
    </form>
    

    On the following page I save the file with the code below:

    <script Runat="Server">    
        Sub Page_Load()
            Dim file1,image3
            image3 = Replace(request("image2"), vbCrLf, "")
            image3 = Replace(image3, vbTab, "")
            image3 = Replace(image3, " ", "")
    
            file1=replace(image3,"data:image/png;base64,","")
    
            ' Convert the Base64 UUEncoded input into binary output. 
            Dim binaryData() As Byte
            Try
                binaryData = System.Convert.FromBase64String(file1)
            Catch exp As System.ArgumentNullException
                System.Console.WriteLine("Base 64 string is null.")
                Return
            Catch exp As System.FormatException
                System.Console.WriteLine("Base 64 length is not 4 or is " + _
                                         "not an even multiple of 4.")
                Return
            End Try
    
            'Write out the decoded data. 
            Dim outFile As System.IO.FileStream
            Try
                Dim filelocation
    
                filelocation="Where you would like the file saved"
    
                outFile = New System.IO.FileStream(filelocation, _
                                                   System.IO.FileMode.Create, _
                                                   System.IO.FileAccess.Write)
                outFile.Write(binaryData, 0, binaryData.Length - 1)
                outFile.Close()
            Catch exp As System.Exception
                ' Error creating stream or writing to it.
                System.Console.WriteLine("{0}", exp.Message)
            End Try
    
        End Sub
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Seemingly simple, but I cannot find anything relevant on the web. What is the
I have a jquery bug and I've been looking for hours now, I can't
I have a small JavaScript validation script that validates inputs based on Regex. I
I am trying to render a haml file in a javascript response like so:
I would like my Web page http://www.gmarks.org/math_in_e-mail.txt on my Apache 2.2.14 server to display
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I want to count how many characters a certain string has in PHP, but
For some reason, after submitting a string like this Jack’s Spindle from a text

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.