Hi
I think, I make a workaround.
I convert the file to a jpeg, and after the tclfpdf::Image command I
delete the temporary file.
proc convert-to-jpeg {file} {
image create photo _tempimage
_tempimage read $file
_tempimage write mytempfile[file tail [file rootname $file]].jpeg
return mytempfile[file tail [file rootname $file]].jpeg
}
set mytempimage [convert-to-jpeg image.gif]
tclfpdf::Image $mytempimage 30 30
file delete $mytempimage
regards
Manfred
Am 18.06.23 um 14:00 schrieb et99: