# 그래프의 렌더링된 크기를 조작할 수 있나요?

**URL:** https://meta.discourse.org/t/possible-to-manipulate-rendered-size-of-graph/259606
**Category:** Support
**Tags:** graphviz
**Created:** [3월 27, 2023, 6:53오후 UTC](https://meta.discourse.org/t/possible-to-manipulate-rendered-size-of-graph/259606 "2023-03-27T18:53:28Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![supermathie](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/supermathie/32/507518_2.png) [@supermathie](https://meta.discourse.org/u/supermathie)
#### Post date: [3월 27, 2023, 6:53오후 UTC](https://meta.discourse.org/t/possible-to-manipulate-rendered-size-of-graph/259606/1 "2023-03-27T18:53:29Z")

</div>

래스터화를 활성화/비활성화하는 옵션(`svg=false`)이 있습니다. 다른 옵션도 사용할 수 있나요?

구체적으로: 이미지를 렌더링한 후 결과 이미지의 크기를 제어할 수 있나요? 반드시 전체 너비로 표시하고 싶지는 않습니다.

예:

```plaintext
[graphviz svg=false]
digraph {
  node [color=grey, shape=box, fontname="Helvetica", fontsize=13]
  edge [arrowsize = 0.75]
  bgcolor = seashell

  A [shape=septagon]
  B
  C
  D
  E

 A -> {B,C} -> E
 D -> E
}
[/graphviz]

```

위 코드는 전체 너비로 표시될 필요가 없으며, “기본” 크기로 표시하는 것도 가능합니다:

 ![image](https://global.discourse-cdn.com/meta/original/4X/3/d/8/3d8371b3aa1f02c5e79cf47de9312f9085dfa4f8.png)  
(위쪽은 렌더링된 png, 아래쪽은 svg입니다)
