Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Modifying the Image Palette

Modifying the Image Palette

Scheduled Pinned Locked Moved C#
question
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    Shailesh H
    wrote on last edited by
    #1

    I have a Format8bppIndexed image . I tried to modify the palette using the below code. ColorPalette pal = bitmapImage.Palette; for (int i = 0; i < pal.Entries.Length/2; i++) pal.Entries[i] = Color.FromArgb(255, 255, 255); bitmapImage.Palette = pal; but the somehow this change in palette does not affect on the image when i save the Image using bitmapImage.Save("filepath"); How do I make the change in palette affect the image.

    E 1 Reply Last reply
    0
    • S Shailesh H

      I have a Format8bppIndexed image . I tried to modify the palette using the below code. ColorPalette pal = bitmapImage.Palette; for (int i = 0; i < pal.Entries.Length/2; i++) pal.Entries[i] = Color.FromArgb(255, 255, 255); bitmapImage.Palette = pal; but the somehow this change in palette does not affect on the image when i save the Image using bitmapImage.Save("filepath"); How do I make the change in palette affect the image.

      E Offline
      E Offline
      Ed Nutting
      wrote on last edited by
      #2

      Hi, Not sure if this help you at all but it seems to have some working sample code and explanantion with it so have a look: http://www.charlespetzold.com/pwcs/PaletteChange.html[^] Hope this helps, Ed

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups