跳至內容
選單
此問題已被標幟
1 回覆
5739 瀏覽次數

Hi,


Does someone already used image_resize_image (tools/image.py) in order print some picture inside some pdf? (Quotation for exemple?).

I am using it and I am not so satisfy about the quality of the picture. The image_resize_image makes my picture blurred.

I would like to know some tips to have better quality.

Thank you a lot,


Selverine

Here my code:

 if base64_source:
		image_stream = io.BytesIO(base64_source.decode(encoding))
    		image = Image.open(image_stream)
		if image.size[0] > image.size[1] :
        		return_dict[shape_name] = image_resize_image_medium(base64_source, size=(160,None),avoid_if_small=avoid_resize_medium)
		else:
        		return_dict[shape_name] = image_resize_image_medium(base64_source, size=(None,160),avoid_if_small=avoid_resize_medium)
頭像
捨棄
作者 最佳答案

So,

I think I will not use this function in order resize my picture before print it in PDF, but I will write directly in rml the dimension that I want.

Good point: Good quality.

Bad point: I need to have a fix size for the picture.


Selverine

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
1
7月 25
2077
3
7月 20
9471
1
5月 20
3453
0
3月 20
3466
1
5月 19
4850