모든 것이 괜찮을 때, 자신의 육체와 접촉하도록 노력하라. 풀밭에 누워서 눈을 감고 내면의 흐름을 느껴보라. 건강이 피어오르는 것을 느껴보라. 강에 들어가 누워보라. 강물이 그대의 육체를 어루만지고 모든 세포가 시원함을 느낀다. 육체는 참으로 위대한 현상이며, 자연계에서 가장 놀라운 기적 가운데 하나이다.
-오쇼의 《바디 마인드 밸런싱》 중에서-
* 당신의 육체가 기적입니다. 오늘도 살아서 풀밭에 눕고 강물에 뛰어들고 온몸의 세포가 시원함을 느끼는 것 그 자체가 놀라운 기적입니다. 몸이 있어야 오감을 느낄 수 있습니다. 푸른 하늘을 보며 하늘이 되고, 불어오는 바람을 맞으며 바람이 됩니다. 몸이 있음은 축복입니다. 기적입니다.
The image of a document page is represented by aPixmap, and the simplest way to create a pixmap is via methodPage.get_pixmap().
This method has many options to influence the result. The most important among them is theMatrix, which lets youzoom, rotate, distort or mirror the outcome.
In the following, we apply azoom factor of 2 to each dimension, which will generate an image with a four times better resolution for us (and also about 4 times the size):
zoom_x = 2.0 # horizontal zoom
zoom_y = 2.0 # vertical zoom
mat = fitz.Matrix(zoom_x, zoom_y) # zoom factor 2 in each dimension
pix = page.get_pixmap(matrix=mat) # use 'mat' instead of the identity matrix
dpi = 600
pix = page.get_pixmap(dpi)
Since version 1.19.2 there is a more direct way to set the resolution: Parameter"dpi"(dots per inch) can be used in place of"matrix". To create a 300 dpi image of a page specifypix=page.get_pixmap(dpi=300). Apart from notation brevity, this approach has the additional advantage that thedpi value is saved with the imagefile – which does not happen automatically when using the Matrix notation.