コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
5715 ビュー

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
2042
3
7月 20
9456
1
5月 20
3418
0
3月 20
3443
1
5月 19
4826