%EC%9D%98%20%EC%9C%84%EC%B9%98(%EC%8C%8D)%EB%A5%BC%20%EC%96%B4%EB%96%BB%EA%B2%8C%20%ED%99%95%EC%9D%B8%ED%95%A0%20%EC%88%98%20%EC%9E%88%EB%82%98%EC%9A%94%3F.png)
settings.tex="pdflatex"; // This command is very important!
unitsize(1cm);
// PNG file
label(graphic("image2.png" ,"width=3cm"),(0,0)); // in the same folder.
draw(box((-3,-3),(3,3)));
// JPG file
label(graphic("image1.jpg" ,"width=3cm"),(5,0));
// Asymptote code
picture pic;
unitsize(pic,1cm);
draw(pic,Label("Some texts",Relative(.75)),circle((0,0),1));
add(pic.fit(),(9,0));
// PDF file
label(graphic("image4.pdf" ,"width=3cm"),(15,0));
layer();
// The layer() function can be used to force future objects to be
// drawn on top of the included image
draw(scale(.5)*Label("Some text",LeftSide),(0,0)--(5,0),Arrow,Margin(.5cm,.45cm));
draw(scale(.5)*Label("Some text",LeftSide),(5,0)--(9,0),Arrow,Margin(.35cm,.35cm));
draw(scale(.5)*Label("Some text",LeftSide),(9,0)--(15,0),Arrow,Margin(.4cm,.5cm));
shipout(bbox(2mm,Fill(white)));
질문:
에서 그래픽(왼쪽 아래 및 오른쪽 위)의 위치(쌍)를 어떻게 확인할 수 있습니까 currentpicture
?
(두 개의 다른 그림을 교체할 수 있습니다)