Rgb15toRgb24
Rgb = Rgb15toRgb24(15BitRgb)
 
Parameters:

    15BitRgb = The 15 Bit RGB colour you wish to convert
Returns:

    Rgb = The RGB colour in 888 (24/32bit) format
 

      The Rgb15toRgb24 function will covert a 24bit RGB colour value to a 15bit (555) RGB colour value.


FACTS:


      * The input colour must be in the form. $--RRGGBB

      * The function will convert the colour to a 16bit (rrrrrgggggbbbbb 555) format.

      * Converting between 24bit and 15Bit means some colour information is lost.




Mini Tutorial:


      Show some examples

  
; Convert some 24bit RGB colour to 15 and 16 bit format
  Show_Converted_16bit_Colour(RGB(255,255,255))
  Show_Converted_15bit_Colour(RGB(255,255,255))
  
  Show_Converted_16bit_Colour(RGB(255,0,0))
  Show_Converted_15bit_Colour(RGB(255,0,0))
  
  Show_Converted_16bit_Colour(RGB(0,255,0))
  Show_Converted_15bit_Colour(RGB(0,255,0))
  
  Show_Converted_16bit_Colour(RGB(0,0,255))
  Show_Converted_15bit_Colour(RGB(0,0,255))
  
  
  Sync
  WaitKey
  
  
  
Function Show_Converted_16bit_Colour(ThisRGB)
  
  Print "16Bit"
; Print the Colour Value in Hex$
  Print Hex$(ThisRgb)
  
; Convert the 24bit colour to a 16bit equivalent
; Note: some of the lower bits of the colour will
; be lose during the conversion !!
  NewCol_16Bit = RGB24ToRGB16(ThisRgb)
  
; Print the Colour Value in Hex$
  Print Hex$(NewCol_16Bit)
  
; Now Convert the 16 bit colour back to 24 bit
  
  NewCol_24Bit = RGB16ToRGB24( NewCol_16Bit)
  Print Hex$(NewCol_24Bit)
  Print ""
EndFunction
  
  
  
  
Function Show_Converted_15bit_Colour(ThisRGB)
  
  Print "15Bit"
  
; Print the Colour Value in Hex$
  Print Hex$(ThisRgb)
  
; Convert the 24bit colour to a 15bit equivalent
; Note: some of the lower bits of the colour will
; be lose during the conversion !!
  NewCol_15Bit = RGB24ToRGB15(ThisRgb)
  
; Print the Colour Value in Hex$
  Print Hex$(NewCol_15Bit)
  
; Now Convert the 16 bit colour back to 24 bit
  
  NewCol_24Bit = RGB15ToRGB24( NewCol_15Bit)
  Print Hex$(NewCol_24Bit)
  Print ""
EndFunction
  
  


This example would output.

  
  16Bit
  $00FFFFFF
  $0000FFFF
  $00F8FCF8
  
  15Bit
  $00FFFFFF
  $00007FFF
  $00F8F8F8
  
  16Bit
  $00FF0000
  $0000F800
  $00F80000
  
  15Bit
  $00FF0000
  $00007C00
  $00F80000
  
  16Bit
  $0000FF00
  $000007E0
  $0000FC00
  
  15Bit
  $0000FF00
  $000003E0
  $0000F800
  
  16Bit
  $000000FF
  $0000001F
  $000000F8
  
  15Bit
  $000000FF
  $0000001F
  $000000F8
  
  
  

 
Related Info: ARGB | RGB | Rgb16toRgb24 | Rgb24toRgb15 | Rgb24toRgb16 | RGBA | RGBB | RGBG | RGBR :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com