반응형
반응형

[텃밭] 씨앗 구매 , 씨감자

 

반응형
반응형

봄감자 심기

 

https://kwonnong.com/farminginfo/?q=YToyOntzOjEyOiJrZXl3b3JkX3R5cGUiO3M6MzoiYWxsIjtzOjQ6InBhZ2UiO2k6MTU7fQ%3D%3D&bmode=view&idx=14413313&t=board

 

감자 키우기 / 감자 심는시기 / 감자 심는방법 : 농사정보

감자밭 ⓒHgartley, pixabay경칩이 지나고 어느덧 완연한 봄기운을 느낄 수 있는 시기가 되었습니다. 이 쯤이면 봄농사를 위한 움직임으로 바빠지는 시기입니다. 농업경영을 전문적으로 하시는 경영

kwonnong.com

반응형
반응형

https://pandas.pydata.org/pandas-docs/stable/index.html

 

pandas documentation — pandas 2.2.1 documentation

API reference The reference guide contains a detailed description of the pandas API. The reference describes how the methods work and which parameters can be used. It assumes that you have an understanding of the key concepts.

pandas.pydata.org

 

Community tutorials — pandas 2.2.1 documentation

 

pandas.pydata.org

 

반응형
반응형

모든 것이 괜찮을 때,
자신의 육체와 접촉하도록 노력하라.
풀밭에 누워서 눈을 감고 내면의 흐름을 느껴보라.
건강이 피어오르는 것을 느껴보라. 강에 들어가
누워보라. 강물이 그대의 육체를 어루만지고
모든 세포가 시원함을 느낀다. 육체는
참으로 위대한 현상이며, 자연계에서
가장 놀라운 기적 가운데
하나이다.


-오쇼의 《바디 마인드 밸런싱》 중에서-


* 당신의 육체가 기적입니다.
오늘도 살아서 풀밭에 눕고 강물에 뛰어들고
온몸의 세포가 시원함을 느끼는 것 그 자체가
놀라운 기적입니다. 몸이 있어야 오감을 느낄 수
있습니다. 푸른 하늘을 보며 하늘이 되고,
불어오는 바람을 맞으며 바람이 됩니다.
몸이 있음은 축복입니다.
기적입니다.

반응형

'아침편지' 카테고리의 다른 글

바꾸어 말하기  (0) 2024.03.12
산들바람을 맞으며  (0) 2024.03.11
성공을 결정하는 질문  (0) 2024.03.07
임종을 앞둔 엄마의 시선  (0) 2024.03.06
배꼽은 늘 웃고 있다  (0) 2024.03.06
반응형

[python] PyMuPDF 에서 해상도 올리기. PDF to IMG

How to Increase Image Resolution

 

https://pymupdf.readthedocs.io/en/latest/recipes-images.html

 

Images - PyMuPDF 1.23.25 documentation

Previous Text

pymupdf.readthedocs.io

The image of a document page is represented by a Pixmap, and the simplest way to create a pixmap is via method Page.get_pixmap().

This method has many options to influence the result. The most important among them is the Matrix, which lets you zoom, rotate, distort or mirror the outcome.

Page.get_pixmap() by default will use the Identity matrix, which does nothing.

In the following, we apply a zoom 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 specify pix = page.get_pixmap(dpi=300). Apart from notation brevity, this approach has the additional advantage that the dpi value is saved with the image file – which does not happen automatically when using the Matrix notation.

 
반응형
반응형

vscode-pdf

 

Display pdf file in VSCode.

 
반응형

+ Recent posts