Novembre 2024 | Lun | Mar | Mer | Jeu | Ven | Sam | Dim |
---|
| | | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | | Calendrier |
|
|
| KGF_prerelease | |
| | |
Auteur | Message |
---|
Klaus
Nombre de messages : 12331 Age : 75 Localisation : Ile de France Date d'inscription : 29/12/2009
| Sujet: Re: KGF_prerelease Dim 27 Mar 2016 - 10:13 | |
| @Papudall: - Citation :
- <CTRL> <Z> est inopérant sur Texte LED et sur Charger JPG
Oui et non. C'est volontaire, et entièrement paramétré en Panoramic. Voici la section du code qui imprime le texte: - Code:
-
form7: res% = dll_call4("KGraphicFunction",KG%,10,0,0) res% = dll_call4("KGraphicFunction",KG%,11,0,0) ' res% = dll_call4("KGraphicFunction",KG%,12,0,0) res% = dll_call4("KGraphicFunction",KG%,13,0,1) : ' interdire le ctrl/z, effacer historique ! res% = dll_call4("SetKGraphicPen",KG%,0,3,255*256*256) res% = dll_call3("SetKGraphicBrush",KG%,0,255*256+255) txt$ = time$ res% = dll_call5("DrawKGraphicTextAsLED",KG%,adr(txt$),1,6,1) txt$ = date$ res% = dll_call4("KGraphicFunction",KG%,11,40,60) res% = dll_call5("DrawKGraphicTextAsLED",KG%,adr(txt$),1,4,1) res% = dll_call4("KGraphicFunction",KG%,13,1,1) : ' autoriser le ctrl/z, effacer historique ! return Tu vois la 4ème ligne ? Elle bloque le ctrl/Z. Si tu mets cette ligne en commentaire, alors ctrl/Z marchera... Avec les excuses pour le nom de la DLL - ça m'a encore échappé ! @Jiocehel: Merci ! J'espère bien en faire un objet graphique souple et complet. En ce moment, je lui ajoute l'impression de textes normales, en préservant le fond. | |
| | | Klaus
Nombre de messages : 12331 Age : 75 Localisation : Ile de France Date d'inscription : 29/12/2009
| Sujet: Re: KGF_prerelease Dim 27 Mar 2016 - 12:24 | |
| Nouvelle version de KGF_prerelease.cll: Il y a maintenant deux fonctions pour gérer l'impression de textes normaux (pas en LED) dans l'objet KGraphic. La première permet de spécifier police, taille, couleur et attributs graphiques. La seconde permet d'imprimer un texte à partir d'une position ciblée, à un angle donné en 10èmes de degrés. En voici un exemple de texte gras en italique, imprimé à 30 degrés: En voici le code (bouton "Texte normal"): - Code:
-
' test_KGraphic.bas
label creer, supprimer label form1, form2, form3, form4, form5, form6, form7, form8 label sauver1, sauver2, sauver3, charger3, cacher, mode3d
dim res%, KG%, bmp$, jpg$, v%, m3d%, txt$, fnt$ v% = 1
dll_on "KGF_prerelease.dll" width 0,1000 : height 0,600 panel 1 : top 1,10 : left 1,20 : width 1,700 : height 1,300 color 1,127,255,255 dlist 2 item_add 2,"5,5" item_add 2,"35,235" item_add 2,"350,18" item_add 2,"90,140" dlist 3 item_add 3,"10,220" item_add 3,"70,40" item_add 3,"130,200" item_add 3,"200,120" item_add 3,"270,160" item_add 3,"340,80"
button 11 : top 11,10 : left 11,750 : width 11,120 : caption 11,"Créer KGraphic" on_click 11,creer button 12 : top 12,40 : left 12,750 : width 12,120 : caption 12,"Supprimer KGraphic" on_click 12,supprimer button 13 : top 13,70 : left 13,770 : width 13,170 : caption 13,"Rectangle rouge bord noir" on_click 13,form1 button 14 : top 14,100 : left 14,770 : width 14,170 : caption 14,"Rectangle bleu arrondi bord jaune" on_click 14,form2 button 15 : top 15,130 : left 15,770 : width 15,170 : caption 15,"Oval violet bord noir" on_click 15,form3 button 16 : top 16,160 : left 16,770 : width 16,170 : caption 16,"Rectangle transparent bord noir" on_click 16,form4 button 17 : top 17,190 : left 17,770 : width 17,170 : caption 17,"Polygone jaune" on_click 17,form5 button 24 : top 24,220 : left 24,770 : width 24,170 : caption 24,"Histogramme bleu" on_click 24,form6 button 25 : top 25,250 : left 25,770 : width 25,170 : caption 25,"Texte LED" on_click 25,form7 button 26 : top 26,280 : left 26,770 : width 26,170 : caption 26,"Texte normal" on_click 26,form8
button 18 : top 18,310 : left 18,750 : width 18,120 : caption 18,"Copier -> presse-papier" on_click 18,sauver1 button 19 : top 19,340 : left 19,750 : width 19,120 : caption 19,"Copier -> BMP" on_click 19,sauver2 button 20 : top 20,370 : left 20,750 : width 20,120 : caption 20,"Copier -> JPG" on_click 20,sauver3 button 21 : top 21,400 : left 21,750 : width 21,120 : caption 21,"Charger JPG" on_click 21,charger3 button 22 : top 22,430 : left 22,750 : width 22,120 : caption 22,"Cacher/Montrer" on_click 22,cacher button 23 : top 23,460 : left 23,750 : width 23,120 : caption 23,"3D/2D" on_click 23,mode3d
alpha 31 : top 31,350 : left 31,10 : font_size 31,16 : font_bold 31 caption 31,"Taper ctrl/Z pour annuler une étape..."
open_dialog 41 : filter 41,"Image JPG|*.jpg" end
creer: if KG%<>0 message "Cet objet existe déjà" return end_if KG% = dll_call6("CreateKGraphic",handle(1),20,20,650,250,0) return
supprimer: KG% = dll_call1("DeleteKGraphic",KG%) if KG%<0 message "Erreur" KG% = 0 end_if return form1: if KG%=0 message "KGraphic inexistant" return end_if res% = dll_call4("SetKGraphicPen",KG%,0,3,0) res% = dll_call3("SetKGraphicBrush",KG%,0,255) res% = dll_call5("DrawKGrapicShape",KG%,0,20*65536+30,320*65536+180,0) return form2: res% = dll_call4("SetKGraphicPen",KG%,0,3,255*256+255) res% = dll_call3("SetKGraphicBrush",KG%,0,255*256*256) res% = dll_call5("DrawKGrapicShape",KG%,1,10*65536+90,280*65536+150,30*65536+20) return form3: res% = dll_call4("SetKGraphicPen",KG%,0,5,0) res% = dll_call3("SetKGraphicBrush",KG%,0,127*256*256) res% = dll_call5("DrawKGrapicShape",KG%,2,80*65536+50,120*65536+180,0) return form4: res% = dll_call4("SetKGraphicPen",KG%,0,2,0) res% = dll_call5("DrawKGrapicShape",KG%,3,190*65536+140,120*65536+60,0) return form5: res% = dll_call4("SetKGraphicPen",KG%,0,2,255*256+255) res% = dll_call3("DrawKGraphicPolygon",KG%,1,object_internal(2)) return form6: res% = dll_call4("SetKGraphicPen",KG%,0,1,255*256*256) res% = dll_call3("SetKGraphicBrush",KG%,0,127*256*256) ' res% = dll_call4("KGraphicFunction",KG%,9,30,50) : ' 30°, profondeur 50 pixels (par défaut) res% = dll_call3("DrawKGraphicPolygon",KG%,0,object_internal(3)) res% = dll_call3("DrawKGraphicPolygon",KG%,0,object_internal(3)) return form7: res% = dll_call4("KGraphicFunction",KG%,10,0,0) res% = dll_call4("KGraphicFunction",KG%,11,0,0) ' res% = dll_call4("KGraphicFunction",KG%,12,0,0) res% = dll_call4("KGraphicFunction",KG%,13,0,1) : ' interdire le ctrl/z, effacer historique ! res% = dll_call4("SetKGraphicPen",KG%,0,3,255*256*256) res% = dll_call3("SetKGraphicBrush",KG%,0,255*256+255) txt$ = time$ res% = dll_call5("DrawKGraphicTextAsLED",KG%,adr(txt$),1,6,1) txt$ = date$ res% = dll_call4("KGraphicFunction",KG%,11,40,60) res% = dll_call5("DrawKGraphicTextAsLED",KG%,adr(txt$),1,4,1) res% = dll_call4("KGraphicFunction",KG%,13,1,1) : ' autoriser le ctrl/z, effacer historique ! return
form8: txt$ = "Texte à 30°" fnt$ = "Arial" res% = dll_call5("SetKGraphicFontAttributes",KG%,adr(fnt$),12,255,1+2) res% = dll_call5("DrawKGraphicText",KG%,30,100,300,adr(txt$)) return
sauver1: res% = dll_call3("SaveKGraphicImage",KG%,0,0) return sauver2: bmp$ = "KGraphic.bmp" res% = dll_call3("SaveKGraphicImage",KG%,1,adr(bmp$)) return sauver3: jpg$ = "KGraphic.jpg" res% = dll_call3("SaveKGraphicImage",KG%,2,adr(jpg$)) return
charger3: jpg$ = "KGraphic.jpg" jpg$ = file_name$(41) if jpg$="_" then return res% = dll_call3("LoadKGraphicImage",KG%,2,adr(jpg$)) return
cacher: v% = 1 - v% res% = dll_call4("KGraphicFunction",KG%,7,v%,0) return mode3d: m3d% = 1 - m3d% res% = dll_call4("KGraphicFunction",KG%,8,m3d%,0) return
| |
| | | papydall
Nombre de messages : 7017 Age : 74 Localisation : Moknine (Tunisie) Entre la chaise et le clavier Date d'inscription : 03/03/2012
| Sujet: Re: KGF_prerelease Dim 27 Mar 2016 - 14:06 | |
| - Klaus a écrit:
- … angle donné en 10èmes de degrés.
Je pense qu’une telle précision (angle en dixième de degré) n’a pas trop d’intérêt. Il suffit que l’angle soit indiqué en degré : par exemple pour un texte à 45°, c’est plus simple de coder 45 au lieu de 450 (c’est plus intuitif) et c'est largement suffisant. Mais bon, c’était simplement pour pinailler. De toutes les façons, MERCI , c'est du beau travail. Continue à nous épater. - Code:
-
form8: txt$ = "Texte à 180°" fnt$ = "Arial" res% = dll_call5("SetKGraphicFontAttributes",KG%,adr(fnt$),12,255,1+2) res% = dll_call5("DrawKGraphicText",KG%,100,100,1800,adr(txt$)) txt$ = "Texte à 270°" res% = dll_call5("DrawKGraphicText",KG%,300,100,2700,adr(txt$)) txt$ = "Texte à 300°" res% = dll_call5("DrawKGraphicText",KG%,400,100,3000,adr(txt$)) txt$ = "Texte à 45°" res% = dll_call5("DrawKGraphicText",KG%,500,200,450,adr(txt$)) return
| |
| | | Klaus
Nombre de messages : 12331 Age : 75 Localisation : Ile de France Date d'inscription : 29/12/2009
| Sujet: Re: KGF_prerelease Dim 27 Mar 2016 - 14:32 | |
| Merci, Papydall ! Alors, voici la suite. J'ai fait des codes fonction pour KGraphicFunction pour gérer l'aspect visuel. On peut maintenant déplacer l'origine virtuelle des coordonnées en n'importe quel pixel de l'espace de travail. On peut aussi changer indépendamment le taux d'agrandissement (scale factor) pour les axes X et Y, toujours de façon relative à l'origine. La position par défaut de l'origine est (0,0). Les facteurs par défaut sont (1,1). Un facteur négatif produit un effet "miroir" pour l'axe concerné. Voici le résultat visuel, appliqué à la deuxième ligne de texte LED. La nouvelle origine est fixée à (0,300) et les facteurs ) (1,-1): Et le code associé: - Code:
-
' test_KGraphic.bas
label creer, supprimer label form1, form2, form3, form4, form5, form6, form7, form8 label sauver1, sauver2, sauver3, charger3, cacher, mode3d
dim res%, KG%, bmp$, jpg$, v%, m3d%, txt$, fnt$ v% = 1
dll_on "KGF_prerelease.dll" width 0,1000 : height 0,600 panel 1 : top 1,10 : left 1,20 : width 1,700 : height 1,300 color 1,127,255,255 dlist 2 item_add 2,"5,5" item_add 2,"35,235" item_add 2,"350,18" item_add 2,"90,140" dlist 3 item_add 3,"10,220" item_add 3,"70,40" item_add 3,"130,200" item_add 3,"200,120" item_add 3,"270,160" item_add 3,"340,80"
button 11 : top 11,10 : left 11,750 : width 11,120 : caption 11,"Créer KGraphic" on_click 11,creer button 12 : top 12,40 : left 12,750 : width 12,120 : caption 12,"Supprimer KGraphic" on_click 12,supprimer button 13 : top 13,70 : left 13,770 : width 13,170 : caption 13,"Rectangle rouge bord noir" on_click 13,form1 button 14 : top 14,100 : left 14,770 : width 14,170 : caption 14,"Rectangle bleu arrondi bord jaune" on_click 14,form2 button 15 : top 15,130 : left 15,770 : width 15,170 : caption 15,"Oval violet bord noir" on_click 15,form3 button 16 : top 16,160 : left 16,770 : width 16,170 : caption 16,"Rectangle transparent bord noir" on_click 16,form4 button 17 : top 17,190 : left 17,770 : width 17,170 : caption 17,"Polygone jaune" on_click 17,form5 button 24 : top 24,220 : left 24,770 : width 24,170 : caption 24,"Histogramme bleu" on_click 24,form6 button 25 : top 25,250 : left 25,770 : width 25,170 : caption 25,"Texte LED" on_click 25,form7 button 26 : top 26,280 : left 26,770 : width 26,170 : caption 26,"Texte normal" on_click 26,form8
button 18 : top 18,310 : left 18,750 : width 18,120 : caption 18,"Copier -> presse-papier" on_click 18,sauver1 button 19 : top 19,340 : left 19,750 : width 19,120 : caption 19,"Copier -> BMP" on_click 19,sauver2 button 20 : top 20,370 : left 20,750 : width 20,120 : caption 20,"Copier -> JPG" on_click 20,sauver3 button 21 : top 21,400 : left 21,750 : width 21,120 : caption 21,"Charger JPG" on_click 21,charger3 button 22 : top 22,430 : left 22,750 : width 22,120 : caption 22,"Cacher/Montrer" on_click 22,cacher button 23 : top 23,460 : left 23,750 : width 23,120 : caption 23,"3D/2D" on_click 23,mode3d
alpha 31 : top 31,350 : left 31,10 : font_size 31,16 : font_bold 31 caption 31,"Taper ctrl/Z pour annuler une étape..."
open_dialog 41 : filter 41,"Image JPG|*.jpg" end
creer: if KG%<>0 message "Cet objet existe déjà" return end_if KG% = dll_call6("CreateKGraphic",handle(1),20,20,650,250,0) return
supprimer: KG% = dll_call1("DeleteKGraphic",KG%) if KG%<0 message "Erreur" KG% = 0 end_if return form1: if KG%=0 message "KGraphic inexistant" return end_if res% = dll_call4("SetKGraphicPen",KG%,0,3,0) res% = dll_call3("SetKGraphicBrush",KG%,0,255) res% = dll_call5("DrawKGrapicShape",KG%,0,20*65536+30,320*65536+180,0) return form2: res% = dll_call4("SetKGraphicPen",KG%,0,3,255*256+255) res% = dll_call3("SetKGraphicBrush",KG%,0,255*256*256) res% = dll_call5("DrawKGrapicShape",KG%,1,10*65536+90,280*65536+150,30*65536+20) return form3: res% = dll_call4("SetKGraphicPen",KG%,0,5,0) res% = dll_call3("SetKGraphicBrush",KG%,0,127*256*256) res% = dll_call5("DrawKGrapicShape",KG%,2,80*65536+50,120*65536+180,0) return form4: res% = dll_call4("SetKGraphicPen",KG%,0,2,0) res% = dll_call5("DrawKGrapicShape",KG%,3,190*65536+140,120*65536+60,0) return form5: res% = dll_call4("SetKGraphicPen",KG%,0,2,255*256+255) res% = dll_call3("DrawKGraphicPolygon",KG%,1,object_internal(2)) return form6: res% = dll_call4("SetKGraphicPen",KG%,0,1,255*256*256) res% = dll_call3("SetKGraphicBrush",KG%,0,127*256*256) ' res% = dll_call4("KGraphicFunction",KG%,9,30,50) : ' 30°, profondeur 50 pixels (par défaut) res% = dll_call3("DrawKGraphicPolygon",KG%,0,object_internal(3)) res% = dll_call3("DrawKGraphicPolygon",KG%,0,object_internal(3)) return form7: res% = dll_call4("KGraphicFunction",KG%,10,0,0) res% = dll_call4("KGraphicFunction",KG%,11,0,0) ' res% = dll_call4("KGraphicFunction",KG%,12,0,0) res% = dll_call4("KGraphicFunction",KG%,13,0,1) : ' interdire le ctrl/z, effacer historique ! res% = dll_call4("SetKGraphicPen",KG%,0,3,255*256*256) res% = dll_call3("SetKGraphicBrush",KG%,0,255*256+255) txt$ = time$ res% = dll_call5("DrawKGraphicTextAsLED",KG%,adr(txt$),1,6,1) txt$ = date$ res% = dll_call4("KGraphicFunction",KG%,11,40,60) res% = dll_call4("KGraphicFunction",KG%,14,0,300) res% = dll_call4("KGraphicFunction",KG%,15,1,0-1) res% = dll_call5("DrawKGraphicTextAsLED",KG%,adr(txt$),1,4,1) res% = dll_call4("KGraphicFunction",KG%,14,0,0) res% = dll_call4("KGraphicFunction",KG%,15,1,1) res% = dll_call4("KGraphicFunction",KG%,13,1,1) : ' autoriser le ctrl/z, effacer historique ! return
form8: txt$ = "Texte à 30°" fnt$ = "Arial" res% = dll_call5("SetKGraphicFontAttributes",KG%,adr(fnt$),12,255,1+2) ' res% = dll_call5("DrawKGraphicText",KG%,30,100,300,adr(txt$)) res% = dll_call4("KGraphicFunction",KG%,14,0,300) res% = dll_call4("KGraphicFunction",KG%,15,1,0-1) res% = dll_call5("DrawKGraphicText",KG%,30,100,300,adr(txt$)) return
sauver1: res% = dll_call3("SaveKGraphicImage",KG%,0,0) return sauver2: bmp$ = "KGraphic.bmp" res% = dll_call3("SaveKGraphicImage",KG%,1,adr(bmp$)) return sauver3: jpg$ = "KGraphic.jpg" res% = dll_call3("SaveKGraphicImage",KG%,2,adr(jpg$)) return
charger3: jpg$ = "KGraphic.jpg" jpg$ = file_name$(41) if jpg$="_" then return res% = dll_call3("LoadKGraphicImage",KG%,2,adr(jpg$)) return
cacher: v% = 1 - v% res% = dll_call4("KGraphicFunction",KG%,7,v%,0) return mode3d: m3d% = 1 - m3d% res% = dll_call4("KGraphicFunction",KG%,8,m3d%,0) return
| |
| | | Contenu sponsorisé
| Sujet: Re: KGF_prerelease | |
| |
| | | | KGF_prerelease | |
|
| Permission de ce forum: | Vous ne pouvez pas répondre aux sujets dans ce forum
| |
| |
| |