Modérateur: gdm_asy
size(10cm);
draw((0,0)--(3,2),2bp+blue);asy -f gif nomdufichierasy -f gif $(FILE_NAME)settings.outformat="gif";
size(10cm);
draw((0,0)--(3,2),2bp+blue);asy nomdufichierasy $(FILE_NAME)A.add();
erase();
}
A.movie(delay=100,options="-fill #154464 -opaque white");
XavteX a écrit:Faut-il laisser :
settings.outformat="gif";
settings.prc=false;
import animate;
import graph3;
defaultrender.merge=true;
size(10cm);
draw((0,0)--(3,2),2bp+blue);
animation A;
real c=(1+sqrt(5))/2;
triple[] z={(c,1,0),(-c,1,0),(-c,-1,0),(c,-1,0)};
triple[] x={(0,c,1),(0,-c,1),(0,-c,-1),(0,c,-1)};
triple[] y={(1,0,c),(1,0,-c),(-1,0,-c),(-1,0,c)};
triple[][] Q={
{(c,1,0),(1,0,-c),(0,c,-1),(0,c,1),(1,0,c),(c,-1,0)},
{(-c,1,0),(0,c,1),(0,c,-1),(-1,0,-c),(-c,-1,0),(-1,0,c)},
{(-c,-1,0),(-c,1,0),(-1,0,-c),(0,-c,-1),(0,-c,1),(-1,0,c)},
{(c,-1,0),(c,1,0),(1,0,c),(0,-c,1),(0,-c,-1),(1,0,-c)},
{(0,c,1),(0,c,-1),(-c,1,0),(-1,0,c),(1,0,c),(c,1,0)},
{(0,-c,1),(0,-c,-1),(-c,-1,0),(-1,0,c),(1,0,c),(c,-1,0)},
{(0,-c,-1),(0,-c,1),(c,-1,0),(1,0,-c),(-1,0,-c),(-c,-1,0)},
{(0,c,-1),(0,c,1),(c,1,0),(1,0,-c),(-1,0,-c),(-c,1,0)},
{(1,0,c),(-1,0,c),(0,-c,1),(c,-1,0),(c,1,0),(0,c,1)},
{(1,0,-c),(-1,0,-c),(0,-c,-1),(c,-1,0),(c,1,0),(0,c,-1)},
{(-1,0,-c),(1,0,-c),(0,c,-1),(-c,1,0),(-c,-1,0),(0,-c,-1)},
{(-1,0,c),(1,0,c),(0,c,1),(-c,1,0),(-c,-1,0),(0,-c,1)}
};
real R=abs(interp(Q[0][0],Q[0][1],1/3));
triple[][] P;
for(int i=0; i < Q.length; ++i) {
P[i]=new triple[] ;
for(int j=0; j < Q[i].length; ++j) {
P[i][j]=Q[i][j]/R;
}
}
for (int k=0; k<180; k+=5) {
transform3 T=rotate(-degrees(2pi*k/360),Z);
for(int i=0; i < P.length; ++i) {
for(int j=1; j < P[i].length; ++j) {
triple C=P[i][0];
triple A=P[i][j];
triple B=P[i][j % 5+1];
triple[] sixout=new
triple[] {interp(C,A,1/3),interp(C,A,2/3),interp(A,B,1/3),interp(A,B,2/3),
interp(B,C,1/3),interp(B,C,2/3)};
triple M=(sum(sixout))/6;
triple[] sixin=sequence(new triple(int k) {
return interp(sixout[k],M,0.1);
},6);
draw(T*surface(reverse(operator--(...sixout)--cycle)^^
operator--(...sixin)--cycle,planar=true),orange);
}
}
for(int i=0; i < P.length; ++i) {
triple[] fiveout=sequence(new triple(int k) {
return interp(P[i][0],P[i][k+1],1/3);
},5);
triple M=(sum(fiveout))/5;
triple[] fivein=sequence(new triple(int k) {
return interp(fiveout[k],M,0.1);
},5);
draw(T*surface(reverse(operator--(...fiveout)--cycle)^^
operator--(...fivein)--cycle,planar=true),yellow);
}
draw(unitsphere,nullpen);
}
XavteX a écrit:Le code suivant aboutit à une figure PRC ou les images se superposent... Et là je suis paumé...
GMaths a écrit:Qu'est ce que ce code délirant ?![]()
![]()
![]()
![]()
![]()
Si je lis bien... tu as pris le code qui est ici dans lequel tu as ajouté ce que je t'ai demandé de tester pour tenter de résoudre ton problème de bord blanc... et dans lequel tu as supprimé les lignes qui permettent de créer l'animation.
Cela n'a aucun sens !!!
settings.prc=false;
import animate;
import graph3;
defaultrender.merge=true;
size(300);
animation A;
real c=(1+sqrt(5))/2;
triple[] z={(c,1,0),(-c,1,0),(-c,-1,0),(c,-1,0)};
triple[] x={(0,c,1),(0,-c,1),(0,-c,-1),(0,c,-1)};
triple[] y={(1,0,c),(1,0,-c),(-1,0,-c),(-1,0,c)};
triple[][] Q={
{(c,1,0),(1,0,-c),(0,c,-1),(0,c,1),(1,0,c),(c,-1,0)},
{(-c,1,0),(0,c,1),(0,c,-1),(-1,0,-c),(-c,-1,0),(-1,0,c)},
{(-c,-1,0),(-c,1,0),(-1,0,-c),(0,-c,-1),(0,-c,1),(-1,0,c)},
{(c,-1,0),(c,1,0),(1,0,c),(0,-c,1),(0,-c,-1),(1,0,-c)},
{(0,c,1),(0,c,-1),(-c,1,0),(-1,0,c),(1,0,c),(c,1,0)},
{(0,-c,1),(0,-c,-1),(-c,-1,0),(-1,0,c),(1,0,c),(c,-1,0)},
{(0,-c,-1),(0,-c,1),(c,-1,0),(1,0,-c),(-1,0,-c),(-c,-1,0)},
{(0,c,-1),(0,c,1),(c,1,0),(1,0,-c),(-1,0,-c),(-c,1,0)},
{(1,0,c),(-1,0,c),(0,-c,1),(c,-1,0),(c,1,0),(0,c,1)},
{(1,0,-c),(-1,0,-c),(0,-c,-1),(c,-1,0),(c,1,0),(0,c,-1)},
{(-1,0,-c),(1,0,-c),(0,c,-1),(-c,1,0),(-c,-1,0),(0,-c,-1)},
{(-1,0,c),(1,0,c),(0,c,1),(-c,1,0),(-c,-1,0),(0,-c,1)}
};
real R=abs(interp(Q[0][0],Q[0][1],1/3));
triple[][] P;
for(int i=0; i < Q.length; ++i) {
P[i]=new triple[] ;
for(int j=0; j < Q[i].length; ++j) {
P[i][j]=Q[i][j]/R;
}
}
for (int k=0; k<15; k+=5) {
transform3 T=rotate(-degrees(2pi*k/360),Z);
for(int i=0; i < P.length; ++i) {
for(int j=1; j < P[i].length; ++j) {
triple C=P[i][0];
triple A=P[i][j];
triple B=P[i][j % 5+1];
triple[] sixout=new
triple[] {interp(C,A,1/3),interp(C,A,2/3),interp(A,B,1/3),interp(A,B,2/3),
interp(B,C,1/3),interp(B,C,2/3)};
triple M=(sum(sixout))/6;
triple[] sixin=sequence(new triple(int k) {
return interp(sixout[k],M,0.1);
},6);
draw(T*surface(reverse(operator--(...sixout)--cycle)^^
operator--(...sixin)--cycle,planar=true),magenta);
}
}
for(int i=0; i < P.length; ++i) {
triple[] fiveout=sequence(new triple(int k) {
return interp(P[i][0],P[i][k+1],1/3);
},5);
triple M=(sum(fiveout))/5;
triple[] fivein=sequence(new triple(int k) {
return interp(fiveout[k],M,0.1);
},5);
draw(T*surface(reverse(operator--(...fiveout)--cycle)^^
operator--(...fivein)--cycle,planar=true),cyan);
}
draw(unitsphere,nullpen);
A.add();
erase();
}
A.movie(delay=100,options=" -fill #154464 -opaque white ");asy -k testasy -k $(FILE_NAME)

asy -k -vvv $(FILE_NAME)

XavteX a écrit:avec quelques différences...

settings.papertype="a4";CD: C:\test
Current directory: C:\test
asy -k -vvv test.asy
Process started >>>
Using configuration directory C:/Documents and Settings/Enfants\.asy
Welcome to Asymptote version 2.15
cd /cygdrive/c/test
Processing test
Loading plain from C:\Program Files\Asymptote/plain.asy
Including plain_constants from C:\Program Files\Asymptote/plain_constants.asy
Loading version from C:\Program Files\Asymptote/version.asy
Including plain_strings from C:\Program Files\Asymptote/plain_strings.asy
Including plain_pens from C:\Program Files\Asymptote/plain_pens.asy
Including plain_paths from C:\Program Files\Asymptote/plain_paths.asy
Including plain_filldraw from C:\Program Files\Asymptote/plain_filldraw.asy
Including plain_margins from C:\Program Files\Asymptote/plain_margins.asy
Including plain_picture from C:\Program Files\Asymptote/plain_picture.asy
Loading plain_scaling from C:\Program Files\Asymptote/plain_scaling.asy
Loading simplex from C:\Program Files\Asymptote/simplex.asy
Loading plain_bounds from C:\Program Files\Asymptote/plain_bounds.asy
Including plain_scaling from C:\Program Files\Asymptote/plain_scaling.asy
Including plain_prethree from C:\Program Files\Asymptote/plain_prethree.asy
Including plain_Label from C:\Program Files\Asymptote/plain_Label.asy
Including plain_shipout from C:\Program Files\Asymptote/plain_shipout.asy
Including plain_xasy from C:\Program Files\Asymptote/plain_xasy.asy
Including plain_arcs from C:\Program Files\Asymptote/plain_arcs.asy
Including plain_boxes from C:\Program Files\Asymptote/plain_boxes.asy
Including plain_markers from C:\Program Files\Asymptote/plain_markers.asy
Including plain_arrows from C:\Program Files\Asymptote/plain_arrows.asy
Including plain_debugger from C:\Program Files\Asymptote/plain_debugger.asy
Loading test.asy from test.asy
Loading animate from C:\Program Files\Asymptote/animate.asy
Loading animation from C:\Program Files\Asymptote/animation.asy
Loading graph3 from C:\Program Files\Asymptote/graph3.asy
Loading math from C:\Program Files\Asymptote/math.asy
Loading graph from C:\Program Files\Asymptote/graph.asy
Loading graph_splinetype from C:\Program Files\Asymptote/graph_splinetype.asy
Loading graph_settings from C:\Program Files\Asymptote/graph_settings.asy
Loading three from C:\Program Files\Asymptote/three.asy
Loading embed from C:\Program Files\Asymptote/embed.asy
Including three_light from C:\Program Files\Asymptote/three_light.asy
Including three_surface from C:\Program Files\Asymptote/three_surface.asy
Loading bezulate from C:\Program Files\Asymptote/bezulate.asy
Loading interpolate from C:\Program Files\Asymptote/interpolate.asy
Including three_margins from C:\Program Files\Asymptote/three_margins.asy
Including three_tube from C:\Program Files\Asymptote/three_tube.asy
Including three_arrows from C:\Program Files\Asymptote/three_arrows.asy
adjusting camera to (741.474218939232,593.194405871398,296.585799504957)
adjusting target to (-0.00581630428633151,0.0103776765829887,-0.00621459245060488)
Exporting test+0 as 1200x1200 image using tiles of size 600x600
4 tiles drawn
Wrote test+0.eps
adjusting camera to (741.474218939232,593.194405871398,296.585799504957)
adjusting target to (-0.00581630428633151,0.0103776765829887,-0.00621459245060488)
adjusting camera to (741.474218939232,593.194405871398,296.585799504957)
adjusting target to (-0.00581630428633151,0.0103776765829887,-0.00621459245060488)
Exporting test+1 as 1200x1200 image using tiles of size 600x600
4 tiles drawn
Wrote test+1.eps
adjusting camera to (741.474218939232,593.194405871398,296.585799504957)
adjusting target to (-0.00581630428633151,0.0103776765829887,-0.00621459245060488)
adjusting camera to (741.474218939232,593.194405871398,296.585799504957)
adjusting target to (-0.00581630428633151,0.0103776765829887,-0.00621459245060488)
adjusting camera to (741.474218939232,593.194405871398,296.585799504957)
adjusting target to (-0.00581630428633151,0.0103776765829887,-0.00621459245060488)
Exporting test+2 as 1200x1200 image using tiles of size 600x600
4 tiles drawn
Wrote test+2.eps
adjusting camera to (741.474218939232,593.194405871398,296.585799504957)
adjusting target to (-0.00581630428633151,0.0103776765829887,-0.00621459245060488)
adjusting camera to (741.474218939232,593.194405871398,296.585799504957)
adjusting target to (-0.00581630428633151,0.0103776765829887,-0.00621459245060488)
adjusting camera to (741.474218939232,593.194405871398,296.585799504957)
adjusting target to (-0.00581630428633151,0.0103776765829887,-0.00621459245060488)
latex \scrollmode
This is pdfTeX, Version 3.1415926-1.40.11 (MiKTeX 2.9)
entering extended mode
LaTeX2e <2009/09/24>
Babel <v3.8l> and hyphenation patterns for english, afrikaans, ancientgreek, ar
abic, armenian, assamese, basque, bengali, bokmal, bulgarian, catalan, coptic,
croatian, czech, danish, dutch, esperanto, estonian, farsi, finnish, french, ga
lician, german, german-x-2009-06-19, greek, gujarati, hindi, hungarian, iceland
ic, indonesian, interlingua, irish, italian, kannada, kurmanji, lao, latin, lat
vian, lithuanian, malayalam, marathi, mongolian, mongolianlmc, monogreek, ngerm
an, ngerman-x-2009-06-19, nynorsk, oriya, panjabi, pinyin, polish, portuguese,
romanian, russian, sanskrit, serbian, slovak, slovenian, spanish, swedish, swis
sgerman, tamil, telugu, turkish, turkmen, ukenglish, ukrainian, uppersorbian, u
senglishmax, welsh, loaded.
*
\documentclass[12pt]{article}
\usepackage{animate}
\def\ASYprefix{}
\newbox\ASYbox
\newdimen\ASYdimen
\long\def\ASYbase#1#2{\leavevmode\setbox\ASYbox=\hbox{#1}\ASYdimen=\ht\ASYbox%
\setbox\ASYbox=\hbox{#2}\lower\ASYdimen\box\ASYbox}
\usepackage{graphicx}
\begin{document}
\makeatletter%
\let\ASYencoding\f@encoding%
\let\ASYfamily\f@family%
\let\ASYseries\f@series%
\let\ASYshape\f@shape%
\makeatother%
\fontsize{12}{14.4}\selectfont
(Please type a command or say `\end')
*
*\usefont{\ASYencoding}{\ASYfamily}{\ASYseries}{\ASYshape}%
("C:\Program Files\MiKTeX 2.9\tex\latex\base\article.cls"
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
("C:\Program Files\MiKTeX 2.9\tex\latex\base\size12.clo"))
*\setbox\ASYbox=\hbox{\includegraphics[hiresbb]{test+0}}
("C:\Program Files\MiKTeX 2.9\tex\latex\animate\animate.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\keyval.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\base\ifthen.sty")
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\ifpdf.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\oberdiek\ifdraft.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\tools\calc.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\animate\animfp.sty"))
*
*
*
*
*
*("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\graphicx.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\graphics.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\trig.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\00miktex\graphics.cfg")
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\dvips.def")))
(C:\test\texput.aux)
*
*
*
*
*
*
*
*
*<test+0.eps>
*(Please type a command or say `\end')
*\showthe\wd\ASYbox
> 301.10493pt.
<*> \showthe\wd\ASYbox
*
(Please type a command or say `\end')
*\showthe\ht\ASYbox
> 301.125pt.
<*> \showthe\ht\ASYbox
*
(Please type a command or say `\end')
*\showthe\dp\ASYbox
> 0.0pt.
<*> \showthe\dp\ASYbox
*
(Please type a command or say `\end')
*latex \nonstopmode\input test+0_.tex
This is pdfTeX, Version 3.1415926-1.40.11 (MiKTeX 2.9)
entering extended mode
LaTeX2e <2009/09/24>
Babel <v3.8l> and hyphenation patterns for english, afrikaans, ancientgreek, ar
abic, armenian, assamese, basque, bengali, bokmal, bulgarian, catalan, coptic,
croatian, czech, danish, dutch, esperanto, estonian, farsi, finnish, french, ga
lician, german, german-x-2009-06-19, greek, gujarati, hindi, hungarian, iceland
ic, indonesian, interlingua, irish, italian, kannada, kurmanji, lao, latin, lat
vian, lithuanian, malayalam, marathi, mongolian, mongolianlmc, monogreek, ngerm
an, ngerman-x-2009-06-19, nynorsk, oriya, panjabi, pinyin, polish, portuguese,
romanian, russian, sanskrit, serbian, slovak, slovenian, spanish, swedish, swis
sgerman, tamil, telugu, turkish, turkmen, ukenglish, ukrainian, uppersorbian, u
senglishmax, welsh, loaded.
(C:\test\test+0_.tex ("C:\Program Files\MiKTeX 2.9\tex\latex\base\article.cls"
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
("C:\Program Files\MiKTeX 2.9\tex\latex\base\size12.clo"))
("C:\Program Files\MiKTeX 2.9\tex\latex\animate\animate.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\keyval.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\base\ifthen.sty")
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\ifpdf.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\oberdiek\ifdraft.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\tools\calc.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\animate\animfp.sty"))
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\graphicx.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\graphics.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\trig.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\00miktex\graphics.cfg")
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\dvips.def")))
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\color.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\00miktex\color.cfg")
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\dvipsnam.def"))
No file test+0_.aux.
<test+0.eps> [1] (C:\test\test+0_.aux) )
Output written on test+0_.dvi (1 page, 1868 bytes).
Transcript written on test+0_.log.
dvips -R -Pdownload35 -D600 -O25.6145bp,119.204bp -T612bp,792bp -tletterSize -otest+0_.ps test+0_.dvi
This is dvips(k) 5.99 Copyright 2010 Radical Eye Software (www.radicaleye.com)
' TeX output 2012.04.15:2027' -> test+0_.ps
<C:/Program Files/MiKTeX 2.9/dvips/base/tex.pro>
<C:/Program Files/MiKTeX 2.9/dvips/base/special.pro>
<C:/Program Files/MiKTeX 2.9/dvips/base/color.pro>. [1<test+0.eps>
<C:/test/test+0.eps>]
%%BoundingBox: 154 244 457 547
%%HiResBoundingBox: 154.014481 244.004483 456.985519 546.995517
Wrote test+0.eps
\fontsize{12}{14.4}\selectfont
*\usefont{\ASYencoding}{\ASYfamily}{\ASYseries}{\ASYshape}%
*\setbox\ASYbox=\hbox{\includegraphics[hiresbb]{test+1}}
<test+1.eps>
*(Please type a command or say `\end')
*\showthe\wd\ASYbox
> 301.10493pt.
<*> \showthe\wd\ASYbox
*
(Please type a command or say `\end')
*\showthe\ht\ASYbox
> 301.125pt.
<*> \showthe\ht\ASYbox
*
(Please type a command or say `\end')
*\showthe\dp\ASYbox
> 0.0pt.
<*> \showthe\dp\ASYbox
*
(Please type a command or say `\end')
*latex \nonstopmode\input test+1_.tex
This is pdfTeX, Version 3.1415926-1.40.11 (MiKTeX 2.9)
entering extended mode
LaTeX2e <2009/09/24>
Babel <v3.8l> and hyphenation patterns for english, afrikaans, ancientgreek, ar
abic, armenian, assamese, basque, bengali, bokmal, bulgarian, catalan, coptic,
croatian, czech, danish, dutch, esperanto, estonian, farsi, finnish, french, ga
lician, german, german-x-2009-06-19, greek, gujarati, hindi, hungarian, iceland
ic, indonesian, interlingua, irish, italian, kannada, kurmanji, lao, latin, lat
vian, lithuanian, malayalam, marathi, mongolian, mongolianlmc, monogreek, ngerm
an, ngerman-x-2009-06-19, nynorsk, oriya, panjabi, pinyin, polish, portuguese,
romanian, russian, sanskrit, serbian, slovak, slovenian, spanish, swedish, swis
sgerman, tamil, telugu, turkish, turkmen, ukenglish, ukrainian, uppersorbian, u
senglishmax, welsh, loaded.
(C:\test\test+1_.tex ("C:\Program Files\MiKTeX 2.9\tex\latex\base\article.cls"
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
("C:\Program Files\MiKTeX 2.9\tex\latex\base\size12.clo"))
("C:\Program Files\MiKTeX 2.9\tex\latex\animate\animate.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\keyval.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\base\ifthen.sty")
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\ifpdf.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\oberdiek\ifdraft.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\tools\calc.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\animate\animfp.sty"))
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\graphicx.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\graphics.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\trig.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\00miktex\graphics.cfg")
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\dvips.def")))
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\color.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\00miktex\color.cfg")
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\dvipsnam.def"))
No file test+1_.aux.
<test+1.eps> [1] (C:\test\test+1_.aux) )
Output written on test+1_.dvi (1 page, 1868 bytes).
Transcript written on test+1_.log.
dvips -R -Pdownload35 -D600 -O25.6145bp,119.204bp -T612bp,792bp -tletterSize -otest+1_.ps test+1_.dvi
This is dvips(k) 5.99 Copyright 2010 Radical Eye Software (www.radicaleye.com)
' TeX output 2012.04.15:2028' -> test+1_.ps
<C:/Program Files/MiKTeX 2.9/dvips/base/tex.pro>
<C:/Program Files/MiKTeX 2.9/dvips/base/special.pro>
<C:/Program Files/MiKTeX 2.9/dvips/base/color.pro>. [1<test+1.eps>
<C:/test/test+1.eps>]
%%BoundingBox: 154 244 457 547
%%HiResBoundingBox: 154.014481 244.004483 456.985519 546.995517
Wrote test+1.eps
\fontsize{12}{14.4}\selectfont
*\usefont{\ASYencoding}{\ASYfamily}{\ASYseries}{\ASYshape}%
*\setbox\ASYbox=\hbox{\includegraphics[hiresbb]{test+2}}
<test+2.eps>
*(Please type a command or say `\end')
*\showthe\wd\ASYbox
> 301.10493pt.
<*> \showthe\wd\ASYbox
*
(Please type a command or say `\end')
*\showthe\ht\ASYbox
> 301.125pt.
<*> \showthe\ht\ASYbox
*
(Please type a command or say `\end')
*\showthe\dp\ASYbox
> 0.0pt.
<*> \showthe\dp\ASYbox
*
(Please type a command or say `\end')
*latex \nonstopmode\input test+2_.tex
This is pdfTeX, Version 3.1415926-1.40.11 (MiKTeX 2.9)
entering extended mode
LaTeX2e <2009/09/24>
Babel <v3.8l> and hyphenation patterns for english, afrikaans, ancientgreek, ar
abic, armenian, assamese, basque, bengali, bokmal, bulgarian, catalan, coptic,
croatian, czech, danish, dutch, esperanto, estonian, farsi, finnish, french, ga
lician, german, german-x-2009-06-19, greek, gujarati, hindi, hungarian, iceland
ic, indonesian, interlingua, irish, italian, kannada, kurmanji, lao, latin, lat
vian, lithuanian, malayalam, marathi, mongolian, mongolianlmc, monogreek, ngerm
an, ngerman-x-2009-06-19, nynorsk, oriya, panjabi, pinyin, polish, portuguese,
romanian, russian, sanskrit, serbian, slovak, slovenian, spanish, swedish, swis
sgerman, tamil, telugu, turkish, turkmen, ukenglish, ukrainian, uppersorbian, u
senglishmax, welsh, loaded.
(C:\test\test+2_.tex ("C:\Program Files\MiKTeX 2.9\tex\latex\base\article.cls"
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
("C:\Program Files\MiKTeX 2.9\tex\latex\base\size12.clo"))
("C:\Program Files\MiKTeX 2.9\tex\latex\animate\animate.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\keyval.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\base\ifthen.sty")
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\ifpdf.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\oberdiek\ifdraft.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\tools\calc.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\animate\animfp.sty"))
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\graphicx.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\graphics.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\trig.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\00miktex\graphics.cfg")
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\dvips.def")))
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\color.sty"
("C:\Program Files\MiKTeX 2.9\tex\latex\00miktex\color.cfg")
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\dvipsnam.def"))
No file test+2_.aux.
<test+2.eps> [1] (C:\test\test+2_.aux) )
Output written on test+2_.dvi (1 page, 1868 bytes).
Transcript written on test+2_.log.
dvips -R -Pdownload35 -D600 -O25.6145bp,119.204bp -T612bp,792bp -tletterSize -otest+2_.ps test+2_.dvi
This is dvips(k) 5.99 Copyright 2010 Radical Eye Software (www.radicaleye.com)
' TeX output 2012.04.15:2028' -> test+2_.ps
<C:/Program Files/MiKTeX 2.9/dvips/base/tex.pro>
<C:/Program Files/MiKTeX 2.9/dvips/base/special.pro>
<C:/Program Files/MiKTeX 2.9/dvips/base/color.pro>. [1<test+2.eps>
<C:/test/test+2.eps>]
%%BoundingBox: 154 244 457 547
%%HiResBoundingBox: 154.014481 244.004483 456.985519 546.995517
Wrote test+2.eps
convert -loop 0 -delay 10 -alpha Off -dispose Background -fill #154464 -opaque white test+0.eps test+1.eps test+2.eps gif:test.gif
Wrote test.gif
<<< Process finished.
================ READY ================
settings.papertype="a4"; Utilisateurs parcourant ce forum: Aucun utilisateur enregistré et 1 invité