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

  • Home
  • SEARCH
  • 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 9157479
In Process

The Archive Base Latest Questions

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

If I draw a rectangle to the canvas, and I enable the shadows, then

  • 0

If I draw a rectangle to the canvas, and I enable the shadows, then there will be created inner, and outer shadows too, but I only want outer shadow.

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");

ctx.shadowColor = 'black';
ctx.shadowBlur = 5;

ctx.strokeRect(20,30,150,75);

The only way I’ve found is ctx.clearRect(20,30,150,75);. But it’s not really what I want, because there may be something under my rect, and I don’t want to delete it.

Thanks in advance,

  • 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-17T13:01:38+00:00Added an answer on June 17, 2026 at 1:01 pm

    You could fetch the pixels inside the rectangle, do the painting and put those pixels back. That way, pixels inside the rectangle won’t change: http://jsfiddle.net/dkAKE/.

    var imgdata = ctx.getImageData(20, 30, 150, 75);
    ctx.strokeRect(20, 30, 150, 75);
    ctx.putImageData(imgdata, 20, 30);
    

    To retain the border, use (21, 31, 148, 73) as the area (assuming a stroke width of 1px).

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

Sidebar

Related Questions

I want to draw rectangle that is only specified percent high of panel im
canvas.drawRect(left, top, right, bottom, paint); Say I want to draw rectangle x=30 to x=35
I want to draw five rectangle bars in Android. I have the regtangles, but
I want to draw a rectangle using canvas which change its size with different
i draw 4 lines (canvas.drawLine) in order to draw a rectangle. Is there any
I am trying to draw a red rectangle on my HTML5 canvas. Here is
I want to draw some Rectangle over a single Image . For example I
If I draw a shape on a GWT canvas (rectangle, circle, whatever), how can
I need to draw a rectangle in a tkinter.canvas to respond click event: click_area
I want to fill the area outside a rectangle on a canvas. I use

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.