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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T21:01:48+00:00 2026-05-16T21:01:48+00:00

How do I merge a smaller image on top of a larger background image

  • 0

How do I merge a smaller image on top of a larger background image on one canvas. The smaller image will move around. So I will need to keep reference of the original background pixel data, so that the each frame the canvas can be redrawn, with the overlay in its new position.

BgImage: 1280 x 400, overlayImage: 320 x 400, overlayOffsetX: mouseX

  • 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-16T21:01:49+00:00Added an answer on May 16, 2026 at 9:01 pm

    I think it is common to draw whole scene each time you want to change something, so:

    context.drawImage(bgImage, 0, 0);
    context.drawImage(overlayImage, overlayOffsetX, 0);
    

    UPDATE

    You could manually compose image data of two images with making copy of background image data

    or

    do something easier, probably faster. You could create new canvas element (without attaching to the document) which would store image data in easy to manage form. putImageData is good if you want to place rectangular image into the canvas. But if you want to put image with transparency, additional canvas will help. See if example below is satisfying you.

    // preparation of canvas containing data of overlayImage
    var OVERLAY_IMAGE_WIDTH = 320;
    var OVERLAY_IMAGE_Height = 400;
    var overlayImageCanvas = document.createElement('canvas');
    overlayImageCanvas.width = OVERLAY_IMAGE_WIDTH;
    overlayImageCanvas.height = OVERLAY_IMAGE_HEIGHT;
    overlayImageCanvas.getContext('2d').putImageData(overlayImage, 0, 0);
    
    // drawing scene, execute this block every time overlayOffsetX has changed
    context.putImageData(bgImage, 0, 0);
    context.drawImage(overlayImageCanvas, overlayOffsetX, 0);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've hit a wall trying to merge a large file and a smaller one.
I am trying to merge two images - a GIF image with a smaller
I need to merge some strings to one, and for efficient reason I want
EntityManager.merge() can insert new objects and update existing ones. Why would one want to
I need to generate large images (A4 image at 200 DPI, PNG format would
There are a few ways to do a merge sort, but I specifically need
How can I merge two integers from a list into one? (in Scheme) Example:
We're attemtping to merge our DLL's into one for deployment, thus ILMerge. Almost everything
I found this neat command to merge multiple PDF into one, using Ghostscript: gs
Hey all - I am trying to center 2 images on top of one

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.