416-962-4444

647-760-3234

Icon

416-962-4444

Facial Scar Revision Surgery


Facial Scar Revision Surgery

No matter the location or cause of a scar on your body, it is very likely that you have wished it away.

When the skin is in the process of recovering from an injury, whether the result of an accident, surgery, a burn, or acne, scarring will occur wherever multiple layers of the skin have been affected.

Once a scar forms, it is permanent but may be made less visible or relocated surgically.

With very few exceptions, most people are self conscious about facial scars. Some people may also experience diminished functionality of the eyes, mouth or nose due to scarring.

If you have wondered how facial scar revision could improve your appearance, self confidence or your level of facial functioning you have come to the right place

Understanding Scar Revision Surgery

When a scar is of the contracture type, surgery generally involves removing the scar tissue entirely. Skin flaps, composed of adjacent healthy, unscarred skin, are then lifted and moved to form a new incision line. Where a flap is not possible, skin graft may be used.

A graft involves taking a section of skin tissue from one area and attaching it to another, and time must be allowed following surgery for new blood vessels and soft tissue to form.

Z­plasty is a method to move a scar from one area to another, usually into a natural fold or crease in the skin to minimize its visibility.

While Z­plasty does not remove all signs of a scar, it does make it less noticeable.

Dermabrasion and laser resurfacing are methods a surgeon uses to make “rough or elevated†scars less prominent, by removing part of the upper layers of the skin with an abrading tool or laser light.

Clearly, the scar will remain, but it will be smoother and less visible.

Keloid or hypertropic scars are often treated first with injections of steroids to reduce size. If this is not satisfactory, the scars can be removed surgically, and the incisions, closed with fine stitches, often resulting in less prominent scars.

Contact Us
=

Is Facial Scar Revision For You?

Requirements for facial scar revision of course is good health. All details of the surgery are carefully considered in discussion with your surgeon.

Expectations of the surgery and of the surgeon must be realistic. A person considering facial scar revision must understand that there is no way to remove scars completely.

The goal is to improve the appearance of the scar either by disguising it, relocating it, or minimizing its prominence. Skin color, type, age, and the type of scarring, are all important factors that must be part of the discussion with your surgeon.

Different types of scars respond to different plastic surgery techniques. Timing of surgery is another important choice. Some surgeons advise against any scar revision in cases of injury for a period that might extend up to a year after the injury.This interval allows the body enough time to heal fully.

Making The Decision For Scar Revision Surgery

Whether you decision for scar revision surgery is desired for functional or cosmetic reasons, your choice of a facial plastic surgeon is of paramount importance.

At La Fontaine Source De Jeunesse,Cosmetic Surgery Centre, you can be assured that we have the best surgeons available to suit your requirements.

Your surgeon will examine the scar in order to decide upon the proper treatment and inform you of the outcome that can be expected from facial scar revision surgery.

Different scars require different treatments. For example:

Burns: severe burns that destroy large sections of skin cause the skin to heal in a puckered way. As the skin heals, muscles and tendons may be affected in this “contracting†movement.

Keloid scars are a result of the skin’s overproduction of collagen after a wound has healed. These scars generally appear as growths in the scar site.

Hypertrophic scars, unlike keloids, do not grow out of the boundaries of the scar area, but because of their thick, raised texture, can be unsightly and may also restrict the natural movements of muscles and tendons.

Some facial scars are unattractive simply because of where they appear on the face, while others affect facial expression. All surgical possibilities will be discussed in the initial consultation along with risks involved for each type of scarring.

At your consultation your doctor will decide on how best to proceed with your scar revision surgery. Your surgeon will inform you about the anesthesia, any supportive surgery options, and answer any questions you may have.

Because scars are highly individualistic and the patient’s attitude toward scars is so personal, maximum improvement in facial scars may require more than one procedure, and more than one technique may be suggested.

What To Expect After Your Scar Revision Surgery

You can expect to feel some discomfort after facial scar revision surgery. Some swelling, bruising and redness are generally unavoidable.

It is important for you to follow your surgeon’s after care recommendations.

Though the sutures will be removed within days after the surgery, your skin needs time to heal. Surgeons generally insist on decreased activity after surgery and instruct the patient to keep the head elevated when lying down, to use cold compresses to reduce swelling, and to avoid any activity that places undue stress on the area of the incision.

Depending on the surgery performed and the site of the scar, the facial plastic surgeon will explain the types of activities to avoid.

No medication should be taken without first consulting the surgeon. It is important to remember that scar tissues require a year or more to fully heal and achieve maximum improved appearance.

Facial plastic surgery makes it possible to correct facial flaws that can undermine selfconfidence. Changing how your scar looks can help change how you feel about yourself.

Insurance does not generally cover surgery that is purely for cosmetic reasons. Surgery correct or improve scars caused by injury may be reimbursable in whole or in part. It is your responsibility to check with the insurance carrier for information on the degree of coverage.

Our Hours

tag on yout theme's header.php Read the detailed step-by-step at https://humbertosilva.com/visual-composer-infinite-image-carousel/ */ // auxiliary code to create triggers for the add and remove class for later use (function($){ $.each(["addClass","removeClass"],function(i,methodname){ var oldmethod = $.fn[methodname]; $.fn[methodname] = function(){ oldmethod.apply( this, arguments ); this.trigger(methodname+"change"); return this; } }); })(jQuery); // main function for the infinite loop function vc_custominfiniteloop_init(vc_cil_element_id){ var vc_element = '#' + vc_cil_element_id; // because we're using this more than once let's create a variable for it window.maxItens = jQuery(vc_element).data('per-view'); // max visible items defined window.addedItens = 0; // auxiliary counter for added itens to the end // go to slides and duplicate them to the end to fill space jQuery(vc_element).find('.vc_carousel-slideline-inner').find('.vc_item').each(function(){ // we only need to duplicate the first visible images if (window.addedItens < window.maxItens) { if (window.addedItens == 0 ) { // the fisrt added slide will need a trigger so we know it ended and make it "restart" without animation jQuery(this).clone().addClass('vc_custominfiniteloop_restart').removeClass('vc_active').appendTo(jQuery(this).parent()); } else { jQuery(this).clone().removeClass('vc_active').appendTo(jQuery(this).parent()); } window.addedItens++; } }); // add the trigger so we know when to "restart" the animation without the user knowing about it jQuery('.vc_custominfiniteloop_restart').bind('addClasschange', null, function(){ // navigate to the carousel element , I know, its ugly ... var vc_carousel = jQuery(this).parent().parent().parent().parent(); // first we temporarily change the animation speed to zero jQuery(vc_carousel).data('vc.carousel').transition_speed = 0; // make the slider go to the first slide without animation and because the fist set of images shown // are the same that are being shown now the slider is now "restarted" without that being visible jQuery(vc_carousel).data('vc.carousel').to(0); // allow the carousel to go to the first image and restore the original speed setTimeout("vc_cil_restore_transition_speed('"+jQuery(vc_carousel).prop('id')+"')",100); }); } // restore original speed setting of vc_carousel function vc_cil_restore_transition_speed(element_id){ // after inspecting the original source code the value of 600 is defined there so we put back the original here jQuery('#' + element_id).data('vc.carousel').transition_speed = 600; } // init jQuery(document).ready(function(){ // find all vc_carousel with the defined class and turn them into infine loop jQuery('.vc_custominfiniteloop').find('div[data-ride="vc_carousel"]').each(function(){ // allow time for the slider to be built on the page // because the slider is "long" we can wait a bit before adding images and events needed var vc_cil_element = jQuery(this).prop("id"); setTimeout("vc_custominfiniteloop_init('"+vc_cil_element+"')",2000); }); });

Toronto © 2024. All rights reserved.