Annonce
Pour sa 21ème année, l’association GeoRezo a toujours besoin de vous !
10€ = 1 mois de frais bancaires ; 15€ = 12 mois de nom de domaine ; 30€ = 1 semaine de location des serveurs …
Retrouver nos membres bienfaiteurs
#1 Wed 18 May 2005 17:47
- Lecomte Quentin
- Invité
resolution export JPG sous Mapbasic
Bonjour,
J'ai suivi les recommandations (archives) pour realiser un export automatique garce a une programmation Mapbasic. Mais lorsque j'applique le programme :
sub export_jpg
dim mep as integer
dim vnom_jpg as string
dialog
title Saisir nom
control statictext title nom du document JPG :
control edittext into vnom_jpg
control okbutton
control cancelbutton
if commandinfo(CMD_INFO_DLG_OK)=true then
mep=frontwindow()
save window (mep)
as vnom_jpg
type JPEG
width 29.7 units cm
height 42 units cm
resolution 300
end if
end sub
il y a ce message : unrecognized command : resolution.
De plus je n'ai pas cette commande dans l'aide Mapbasic (6.0) :Save Window window_id
As filespec
Type filetype
[ Width image_width [ Units paper_units ] ]
[ Height image_height [ Units paper_units ] ]
[ Copyright notice [ Font ... ] ]
Pkoi? comment resoudre ce probleme?
Merci de me repondre.
#2 Wed 18 May 2005 17:48
- Christophe BARBIER
- Invité
Re: resolution export JPG sous Mapbasic
Bonjour,
Effectivement, le parametre Resolution de l'instruction Save Window... est apparu a partir de MapBasic 7.0.
Christophe Barbier, I²G
#3 Wed 18 May 2005 17:48
- Annick Lagnion
- Invité
Re: resolution export JPG sous Mapbasic
si tu as une version 6 de mapbasic et une version 7 de mapinfo,(mais je ne
sais pas si c'est ton cas) pour faire tourner une commande qui n'existait
pas avant, il suffit de faire:
scom= save window (mep) as +vnom_jpg+ type JPEG width 29.7 units
cm height 42 units cm resolution 300
run command scom
(si vnom_jpg est une variable)
alors ca ne plante pas a la compilation et ca tourne a l'execution dans mi 7
annick lagnion
DDE29