FORUM DE DISCUSSION SUR LE LANGAGE PANORAMIC
Vous souhaitez réagir à ce message ? Créez un compte en quelques clics ou connectez-vous pour continuer.
FORUM DE DISCUSSION SUR LE LANGAGE PANORAMIC

Développement d'applications avec le langage Panoramic
 
AccueilAccueil  RechercherRechercher  Dernières imagesDernières images  S'enregistrerS'enregistrer  MembresMembres  Connexion  
Derniers sujets
» Logiciel de planétarium.
Problème color et color_pixel_xxx dans un picture Emptypar Pedro Sam 23 Nov 2024 - 15:50

» Un autre pense-bête...
Problème color et color_pixel_xxx dans un picture Emptypar Froggy One Jeu 21 Nov 2024 - 15:54

» Récupération du contenu d'une page html.
Problème color et color_pixel_xxx dans un picture Emptypar Pedro Sam 16 Nov 2024 - 14:04

» Décompilation
Problème color et color_pixel_xxx dans un picture Emptypar JL35 Mar 12 Nov 2024 - 19:57

» Un album photos comme du temps des grands-mères
Problème color et color_pixel_xxx dans un picture Emptypar jjn4 Mar 12 Nov 2024 - 17:23

» traitement d'une feuille excel
Problème color et color_pixel_xxx dans un picture Emptypar jjn4 Jeu 7 Nov 2024 - 3:52

» Aide-mémoire mensuel
Problème color et color_pixel_xxx dans un picture Emptypar jjn4 Lun 4 Nov 2024 - 18:56

» Des incomprèhension avec Timer
Problème color et color_pixel_xxx dans un picture Emptypar Klaus Mer 30 Oct 2024 - 18:26

» KGF_dll - nouvelles versions
Problème color et color_pixel_xxx dans un picture Emptypar Klaus Mar 29 Oct 2024 - 17:58

» instructions panoramic
Problème color et color_pixel_xxx dans un picture Emptypar maelilou Lun 28 Oct 2024 - 19:51

» Figures fractales
Problème color et color_pixel_xxx dans un picture Emptypar Marc Ven 25 Oct 2024 - 12:18

» Panoramic et Scanette
Problème color et color_pixel_xxx dans un picture Emptypar Yannick Mer 25 Sep 2024 - 22:16

» Editeur d étiquette avec QR évolutif
Problème color et color_pixel_xxx dans un picture Emptypar JL35 Lun 23 Sep 2024 - 22:40

» BUG QR Code DelphiZXingQRCode
Problème color et color_pixel_xxx dans un picture Emptypar Yannick Dim 22 Sep 2024 - 11:40

» fichier.exe
Problème color et color_pixel_xxx dans un picture Emptypar leclode Ven 20 Sep 2024 - 19:02

Navigation
 Portail
 Index
 Membres
 Profil
 FAQ
 Rechercher
Rechercher
 
 

Résultats par :
 
Rechercher Recherche avancée
Novembre 2024
LunMarMerJeuVenSamDim
    123
45678910
11121314151617
18192021222324
252627282930 
CalendrierCalendrier
Le Deal du moment :
Code promo Nike : -25% dès 50€ ...
Voir le deal

 

 Problème color et color_pixel_xxx dans un picture

Aller en bas 
AuteurMessage
Klaus

Klaus


Nombre de messages : 12331
Age : 75
Localisation : Ile de France
Date d'inscription : 29/12/2009

Problème color et color_pixel_xxx dans un picture Empty
MessageSujet: Problème color et color_pixel_xxx dans un picture   Problème color et color_pixel_xxx dans un picture EmptyMar 2 Mar 2010 - 9:14

Bonjour,

J'ai découvert que la couleur voulue et demandée par color sur un picture ne correspond que rarement à la couleur réelle obtenue et restituée par les fonctions color_pixel. Et le changement d'une des composantes entraîne même le changement implicite des autres composantes. Voici un petit programme permettant de visualiser immédiatement cet effet:

Code:

label change_R, change_R1
label change_G, change_G1
label change_B, change_B1

dim v%

width 0,800
height 0,400

alpha 101
top 101,35
left 101,470
caption 101,"Couleur voulue"

alpha 102
top 102,35
left 102,600
caption 102,"Couleur obtenue"

alpha 1
top 1,55
left 1,10
caption 1,"R"

track_bar 2
top 2,50
left 2,40
width 2,402
horizontal 2
min 2,0
max 2,255
position 2,0
on_change 2,change_R

edit 3
top 3,55
left 3,470
on_change 3,change_R1

edit 4
top 4,55
left 4,600

alpha 11
top 11,85
left 11,10
caption 11,"G"

track_bar 12
top 12,80
left 12,40
width 12,402
horizontal 12
min 12,0
max 12,255
position 12,0
on_change 12,change_G

edit 13
top 13,85
left 13,470
on_change 13,change_G1

edit 14
top 14,85
left 14,600

alpha 21
top 21,115
left 21,10
caption 21,"B"

track_bar 22
top 22,110
left 22,40
width 22,402
horizontal 22
min 22,0
max 22,255
position 22,0
on_change 22,change_B

edit 23
top 23,115
left 23,470
on_change 23,change_B1

edit 24
top 24,115
left 24,600

picture 5
top 5,150
left 5,150
color 5,0,0,0


end


change_R:
text 3,str$(position(2))
color 5,position(2),position(12),position(12)
text 4,color_pixel_red(5,10,10)
text 14,color_pixel_green(5,10,10)
text 24,color_pixel_blue(5,10,10)
return
change_R1:
if numeric(text$(3))=1
    v% = val(text$(3))
    if v%>=0 and v%<256 then position 2,val(text$(3))
end_if
return

change_G:
text 13,str$(position(12))
color 5,position(2),position(12),position(12)
text 4,color_pixel_red(5,10,10)
text 14,color_pixel_green(5,10,10)
text 24,color_pixel_blue(5,10,10)
return
change_G1:
if numeric(text$(13))=1
    v% = val(text$(13))
    if v%>=0 and v%<256 then position 12,val(text$(13))
end_if
return

change_B:
text 23,str$(position(22))
color 5,position(2),position(12),position(12)
text 4,color_pixel_red(5,10,10)
text 14,color_pixel_green(5,10,10)
text 24,color_pixel_blue(5,10,10)
return
change_B1:
if numeric(text$(23))=1
    v% = val(text$(23))
    if v%>=0 and v%<256 then position 22,val(text$(23))
end_if
return

Est-ce que c'est normal ? Et si oui, pourquoi ? Qu'est-ce qu'i explique cela ? Je sais bien que 256x256x256 = 1.677.716 couleurs possibles, et probablement, toutes ces nuances ne sont pas physiquement réalisables sur un écran. Mais pourquoi les modifier dans l'objet, au lieu de simplement changer cela à l'affichage ?
Revenir en haut Aller en bas
http://klauspanoramic.comxa.com/index.html
 
Problème color et color_pixel_xxx dans un picture
Revenir en haut 
Page 1 sur 1
 Sujets similaires
-
» Problème d'affichage d'image dans un Picture.
» Picture et Color
» Ecriture en coleur dans une picture
» FILE_LOAD dans picture trop grand
» Problème d'affichage sur picture

Permission de ce forum:Vous ne pouvez pas répondre aux sujets dans ce forum
FORUM DE DISCUSSION SUR LE LANGAGE PANORAMIC :: PANORAMIC :: Un problème avec PANORAMIC?-
Sauter vers: