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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:08:15+00:00 2026-05-13T17:08:15+00:00

I am working on an application that will allow a user to scale an

  • 0

I am working on an application that will allow a user to scale an image. The issue that I am having with the method below is that the scaling is always taking place on the previous scale point.

For example: If I scale the image up one and then scale the image down one. I have to scale down twice to get it back to the point I want it to be.

Any help with this is greatly appreciated.

Here is my current code:

private var sourceBMD:BitmapData = testImage.source as BitmapData
private var matrixScaleX:Number  = 1;
private var matrixScaleY:Number  = 1;
private var baseScaleX:Number  = .05;
private var baseScaleY:Number = .05;

    private function sourceZoom(zoomType:Boolean = false):void{
        var matrix:Matrix = new Matrix();
        var matriximage:BitmapData;


        if(zoomType){
            matrixScaleX = matrixScaleX + baseScaleX;
            matrixScaleY = matrixScaleY + baseScaleY;
            matrix.a = matrixScaleX;
            matrix.d = matrixScaleY 
        }else{
            matrixScaleX = matrixScaleX - baseScaleX;
            matrixScaleY = matrixScaleY - baseScaleY;
            matrix.a = matrixScaleX;
            matrix.d = matrixScaleY;    
        }


        matriximage = new BitmapData(sourceBMD.width, sourceBMD.height, false, 0x0000000);

        trace('MatrixScaleX: ' + matrixScaleX);
        trace('MatrixScaleY: ' + matrixScaleY);
        trace('BaseScaleX: ' + baseScaleX);
        trace('BaseScaleY: ' + baseScaleY);
        trace('Matrix: ' + ObjectUtil.toString(matrix));

        matriximage.draw(sourceBMD, matrix);                
        testImage.source =  matriximage;    

    }
  • 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-13T17:08:16+00:00Added an answer on May 13, 2026 at 5:08 pm

    That looks fine, I’d suspect that the problem lies with your input or the place this is getting called.

    In order for it to work, events need to happen like this in your code:

    capture input -> scale image -> draw image.

    Since you appear to be setting the image to draw at the end of this function, I would check that this function is being called after the input has finished processing.

    Can you confirm that’s what’s happening?

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

Sidebar

Related Questions

I'm working on a web application. A user will create an email message that
I am working on an application that will be used as an extensible framework
I'm working on an application that will gather data through HTTP from several places,
We are currently working on an application that will use a WCF service. The
I'm working on a web application that will return a variable set of modules
I am working on an django application that will return what historically was a
We're working on an application that displays information through a Direct3D visualisation. A late
I am working on an application that installs a system wide keyboard hook. I
I am working on an application that is about 250,000 lines of code. I'm
I am working on an application that detects the most prominent rectangle in an

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.