Activity for tkImg

  • Paul Obermeier Paul Obermeier modified ticket #119

    window.c: resources leaked on error in StringRead()

  • Paul Obermeier Paul Obermeier posted a comment on ticket #119

    Used goto approach. Tested on Windows and Linux.

  • Paul Obermeier Paul Obermeier committed [r964] on Code

    Issue #119: Corrected resource leaks in StringRead.

  • Paul Obermeier Paul Obermeier modified ticket #35

    demo.tcl: avoid toolhelp display issue on Tk Aqua 9.0 (macOS)

  • Paul Obermeier Paul Obermeier posted a comment on ticket #35

    Corrected with commit #963. Your patch did not work. Solved by creating and destroying the tooltip window.

  • Paul Obermeier Paul Obermeier committed [r963] on Code

    Issue #35: Corrected tooltip display on macOS.

  • Christopher Chavez Christopher Chavez created ticket #35

    demo.tcl: avoid toolhelp display issue on Tk Aqua 9.0 (macOS)

  • Christopher Chavez Christopher Chavez created ticket #119

    window.c: resources leaked on error in StringRead()

  • Paul Obermeier Paul Obermeier committed [r962] on Code

    Improved test, if ghostscript exists and is working.

  • Paul Obermeier Paul Obermeier committed [r961] on Code

    Released version 2.1.0 on 2025/06/22

  • Paul Obermeier Paul Obermeier modified ticket #118

    Stack smashing detected on MSYS2/Clang64

  • Paul Obermeier Paul Obermeier posted a comment on ticket #118

    Fix included in new version 2.1.0.

  • tkImg tkImg released /tkimg/2.1/tkimg 2.1.0/Img-2.1.0.tar.gz

  • tkImg tkImg released /tkimg/2.1/tkimg 2.1.0/Img-2.1.0.7z

  • Paul Obermeier Paul Obermeier committed [r960] on Code

    Updates for upcoming 2.1.0 release.

  • tkImg tkImg released /tkimg/2.1/README.md

  • Paul Obermeier Paul Obermeier committed [r959] on Code

    Removed obsolete procedure SetFileTypes.

  • ofv ofv posted a comment on ticket #118

    For the record, the commit in Mingw-packages is cf52b888301d4e0f66cf5116b0d9f4955876cb54 link to commit in github That commit included the proposed change to tif_ojpeg.c, which I reckon it is unnecessary. Thank you.

  • Paul Obermeier Paul Obermeier posted a comment on ticket #118

    Checked in tkimg.h with proposed change: #if defined(__MINGW32__) && !defined(__aarch64__) && !defined(__clang__) Works for all of my test systems.

  • Paul Obermeier Paul Obermeier committed [r958] on Code

    Builtin versions of setjmp/longjmp only needed for mingw64 (gcc/msvcrt).

  • ofv ofv posted a comment on ticket #118

    Tested with unpatched 2.0.1 on mingw64 (gcc/msvcrt), ucrt64 (gcc/ucrt), clang64 (clang/ucrt), plus patched 2.0.1 (clang/ucrt). Same output as yours on all cases.

  • Paul Obermeier Paul Obermeier posted a comment on ticket #118

    I used the following script and attached (incorrect) TIFF file for testing. Note, that the TIFF file is marked as suspicious (TIFF.CVE-2017-3042) by the TACHYON virus scanner on VirusTotal. set tkVersion [package require Tk] puts "Tk : $tkVersion ([expr 8 * $tcl_platform(pointerSize)]-bit)" set imgVersion [package require Img] puts "Img: $imgVersion" set f id_003177,src_001927,op_havoc,rep_1.tif puts "Checking $f ..." set retVal [catch {set phImg [image create photo -file $f -format {TIFF -verbose...

  • ofv ofv posted a comment on ticket #118

    Thanks for the reference. oscar@w10x64-vm-sky CLANG64 /d $ echo | clang -dM -E - | grep clang #define __clang__ 1 #define __clang_literal_encoding__ "UTF-8" #define __clang_major__ 20 #define __clang_minor__ 1 #define __clang_patchlevel__ 5 #define __clang_version__ "20.1.5 " #define __clang_wide_literal_encoding__ "UTF-16" oscar@w10x64-vm-sky CLANG64 /d $ echo | clang -dM -E - | grep -i gnu #define __GNUC_MINOR__ 2 #define __GNUC_PATCHLEVEL__ 1 #define __GNUC_STDC_INLINE__ 1 #define __GNUC__ 4 So...

  • Paul Obermeier Paul Obermeier posted a comment on ticket #118

    The commit message from 2023-04-23 says: Added macros SETJMP and LONGJMP as workaround for incorrect setjmp and longjmp in MINGW. For a discussion of the error see ex. [https://stackoverflow.com/questions/53709069/setjmp-longjmp-in-x86-64-w64-mingw32] I don't know, which gcc versions are affected by the error. If only "old" compilers are affected (ex. gcc 4.x), a more clean and simple solution would be: #if defined(__MINGW32__) && __GNUC__ < 5 #define SETJMP(jbuf) __builtin_setjmp(jbuf) #define LONGJMP(jbuf,...

  • ofv ofv posted a comment on ticket #118

    We fixed the problem by applying the patch below. It also modifies tif_ojpeg.c for consistency. Do you remember why mingw32 was changed to use __builtin_setjmp/__builtin_longjmp? Index: base/tkimg.h =================================================================== --- a/base/tkimg.h (revision 957) +++ b/base/tkimg.h (working copy) @@ -24,7 +24,7 @@ # define tkimg_vsnprintf vsnprintf #endif /* _MSC_VER_ */ -#if defined(__MINGW32__) +#if defined(__MINGW32__) && !defined(__aarch64__) && !defined(_UCRT)...

  • ofv ofv modified a comment on ticket #118

    Changing base/tkimg.h to use plain setjmp/longjmp instead of the __builtin variants removes the crash, as well as the warnings. I'll ask some people about what's going on and come back with a patch. Thank you.

  • ofv ofv posted a comment on ticket #118

    Changing base/tkimg.h to use plain setjmp/longjmp instead of the __builtin variants removes the crash. I'll ask some people about what's going on and come back with a patch. Thank you.

  • ofv ofv posted a comment on ticket #118

    This looks like Tk is trying to load the jpg file as if it were a png, isn't it? #0 png_error (png_ptr=png_ptr@entry=0x30fb890, error_message=0x7ff980e71222 <.refptr.png_sRGB_table+1418> "Not a PNG file") at D:/dev/other/tkimg-code/compat/libpng/pngerror.c:82 #1 0x00007ff980e5431e in png_read_sig (png_ptr=png_ptr@entry=0x30fb890, info_ptr=<optimized out>) at D:/dev/other/tkimg-code/compat/libpng/pngrutil.c:139 #2 0x00007ff980e48f1a in png_read_info (png_ptr=0x30fb890, info_ptr=0x7ff980e71222 <.refptr.png_sRGB_table+1418>)...

  • ofv ofv posted a comment on ticket #118

    I'm using tcl/tk 8.6.16. There are no other extensions loaded, just the code above executed with wish. I tried to replicate the problem in Linux, to no avail, even with Valgrind, but please note that Windows and Linux have different ABIs and different C runtimes. It is interesting that the crash does not happen with the MinGW64 environment (which uses the old MSCVCRT runtime). All packages in MSYS2 (a few thousands of them) are built with -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector-strong and AFAIK...

  • Paul Obermeier Paul Obermeier posted a comment on ticket #118

    I do not have MSYS2/Clang available, but running tests on Debian using similar compiler options (-fsanitize=address,undefined -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector-strong -mshstk) on current trunk did not show any stack corruptions. Looking at the source of png.c, your first stack trace, where png_ptr is 0x0 in CommonMatch should not be possible, because png_ptr is checked just before calling CommonMatch. I tested with Tcl/Tk 9.0.1. Which version of Tcl/Tk are you using? Are you loading any other...

  • ofv ofv created ticket #118

    Stack smashing detected on MSYS2/Clang64

  • Paul Obermeier Paul Obermeier committed [r957] on Code

    Fixed bug in readInfoHeader.

  • Paul Obermeier Paul Obermeier committed [r956] on Code

    Updated libpng to version 1.6.48.

  • Paul Obermeier Paul Obermeier committed [r955] on Code

    Added check for PNG sub-images and submit appropriate error message.

  • Paul Obermeier Paul Obermeier committed [r954] on Code

    Updated copyright date. No code changes.

  • Paul Obermeier Paul Obermeier committed [r953] on Code

    Adapted copyright date and version number.

  • Paul Obermeier Paul Obermeier committed [r952] on Code

    Updated version number to 2.1.0.

  • Paul Obermeier Paul Obermeier committed [r951] on Code

    Added additional test scripts and images for extended RAW functionality.

  • Paul Obermeier Paul Obermeier committed [r950] on Code

    Added expected results in Readme files.

  • Paul Obermeier Paul Obermeier committed [r949] on Code

    Renamed RawWriteOptions.tcl to RawCreatePhoto.tcl

  • Paul Obermeier Paul Obermeier committed [r948] on Code

    Corrected typo in comment.

  • Paul Obermeier Paul Obermeier committed [r947] on Code

    Corrected file extension from .rgb to .tga.

  • Paul Obermeier Paul Obermeier committed [r946] on Code

    Corrected file extension from .rgb to .ras.

  • Paul Obermeier Paul Obermeier committed [r945] on Code

    Extended RAW parser to support 1, 2, 3 and 4 channel files when reading.

  • Paul Obermeier Paul Obermeier committed [r944] on Code

    Updated libpng to version 1.6.47.

  • Paul Obermeier Paul Obermeier committed [r943] on Code

    Delete directories testOut after test execution. Added option "--nodelete" to disable deletion.

  • Paul Obermeier Paul Obermeier committed [r942] on Code

    Released version 2.0.1 on 2024/12/08

  • tkImg tkImg updated /tkimg/2.0/README.md

  • tkImg tkImg released /tkimg/2.0/tkimg 2.0.1/Img-2.0.1.7z

  • tkImg tkImg released /tkimg/2.0/tkimg 2.0.1/Img-2.0.1.tar.gz

  • Paul Obermeier Paul Obermeier committed [r941] on Code

    Added notes regarding afltests not included in distribution files.

  • Paul Obermeier Paul Obermeier committed [r940] on Code

    Added empty directory "templates", which is needed by tclssg.

  • Paul Obermeier Paul Obermeier committed [r939] on Code

    Updates for upcoming 2.0.1 release.

  • Paul Obermeier Paul Obermeier committed [r938] on Code

    Replaced calls to "package require Tk" and "package version Tk" to determine Tk version number with $::tk_patchLevel.

  • Paul Obermeier Paul Obermeier committed [r937] on Code

    Added check, if ghostscript interpreter is available.

  • ryotakatsuki ryotakatsuki posted a comment on discussion Open Discussion

    The problem is not libtiff. The files marked as malicious are in the test images. I created a version of Img-1.4.17 without afltestimgs.7z (I just decompressed, deleted, and recompressed) that have no detections: Img-1.4.17-no-afltestimgs.tar.gz https://www.virustotal.com/gui/file/3eee28c2e6daf343a538d8f7bcbf738dd43808465683f6a0d6962c212f5303d5?nocache=1 And here is just the test images (afltestimgs.7z): afltestimgs.7z https://www.virustotal.com/gui/file/f1b1e7d00ea1358981305c0e3dd3f3238ec977395...

  • Larry W. Virden Larry W. Virden posted a comment on discussion Open Discussion

    The issue probably is use of liftiff. It used to and perhaps still does have security issues On Thu, Nov 28, 2024, 6:52 AM ryotakatsuki takatsuki@users.sourceforge.net wrote: If you could remove the afltests, it would be awesome :) Thanks! tkImg is marked as malicious by multiple vendors in virustotal https://sourceforge.net/p/tkimg/discussion/172363/thread/4a5438d14c/?limit=25#3dcc/02fc Sent from sourceforge.net because you indicated interest in https://sourceforge.net/p/tkimg/discussion/172363/...

  • ryotakatsuki ryotakatsuki posted a comment on discussion Open Discussion

    If you could remove the afltests, it would be awesome :) Thanks!

  • Paul Obermeier Paul Obermeier posted a comment on discussion Open Discussion

    I used the afltest images with great success to find serious bugs in the Img code, but was not aware of any virus detection problems. If removing the above mentioned TIFF image and generating a new 7z file, it still generates detection alarms, so it seems, there are other problematic images in there. As people downloading the tarball will not likely run the extended tests, I can remove the afltests directory from future tarballs.

  • ryotakatsuki ryotakatsuki posted a comment on discussion Open Discussion

    I don't think any tiff image will trigger the detection. The CVEs mentioned in the detection names are related to a vulnerability that allowed especially crafted tiff images to execute code, so maybe the problematic tiff image is one of those (I assume that it would be for testing purposes).

  • Larry W. Virden Larry W. Virden posted a comment on discussion Open Discussion

    Hmm an image file of type tiff triggering virus concerns. Is the image something that violates standards? How would one test tiff code support without a tiff image? On Tue, Nov 26, 2024, 9:42 AM ryotakatsuki takatsuki@users.sourceforge.net wrote: Hi, The tarball for more recent 1.4.* versions (at least 1.4.17, 1.4.16 and 1.4.15) is marked as malicious in virustotal: https://www.virustotal.com/gui/file/4607abc6d8aa92f6e4f9b337db1df90e76a2dafdf2d53eff296b68ae63bf81aa The cause seems to be the afltests.zip...

  • ryotakatsuki ryotakatsuki posted a comment on discussion Open Discussion

    Hi, The tarball for more recent 1.4.* versions (at least 1.4.17, 1.4.16 and 1.4.15) is marked as malicious in virustotal: https://www.virustotal.com/gui/file/4607abc6d8aa92f6e4f9b337db1df90e76a2dafdf2d53eff296b68ae63bf81aa The cause seems to be the afltests.zip file contained in the tests (beause of id_009971,src_009965,op_flip1,pos_8.tif): https://www.virustotal.com/gui/file/f1b1e7d00ea1358981305c0e3dd3f3238ec977395cfd689623283903e57b4205/relations The asset may be used in the tests and be there...

  • Paul Obermeier Paul Obermeier committed [r936] on Code

    Updated version to 2.0.1.

  • Jan Nijtmans Jan Nijtmans committed [r935] on Code

    Fix warning in pixmap.c: pixmap.c:208:71: warning: suggest parentheses around arithmetic in operand of ‘|’

  • Jan Nijtmans Jan Nijtmans committed [r934] on Code

    If USE_FORMAT_VERSION==1, we need at least Tk 8.7. If TK_MINOR_VERSION is not defined, assume Tk 8.7+

  • Jan Nijtmans Jan Nijtmans committed [r933] on Code

    Add --with-tk8 configuration option

  • Paul Obermeier Paul Obermeier committed [r932] on Code

    Corrected some comments.

  • Paul Obermeier Paul Obermeier committed [r931] on Code

    Windows executables got lost in merge.

  • Paul Obermeier Paul Obermeier committed [r930] on Code

    Changed EOL to Linux.

  • Paul Obermeier Paul Obermeier committed [r929] on Code

    Changed EOL to Linux.

  • Paul Obermeier Paul Obermeier committed [r928] on Code

    Changed EOL to Linux.

  • Paul Obermeier Paul Obermeier committed [r927] on Code

    Merge branch 1.5.X (containing Img version 2.0.0) into trunk.

  • Paul Obermeier Paul Obermeier committed [r926] on Code

    Create branch for possible 1.4 security fixes.

  • Paul Obermeier Paul Obermeier committed [r925] on Code

    Released version 2.0.0 on 2024/09/30.

  • Paul Obermeier Paul Obermeier committed [r924] on Code

    Released version 1.4.17 on 2024/09/30.

  • Paul Obermeier Paul Obermeier created a blog post

    Announce: Img 2.0.0

  • tkImg tkImg released /tkimg/2.0/tkimg 2.0.0/Img-2.0.0.tar.gz

  • tkImg tkImg released /tkimg/2.0/tkimg 2.0.0/Img-2.0.0.7z

  • tkImg tkImg released /tkimg/1.4/tkimg 1.4.17/README.txt

  • tkImg tkImg released /tkimg/1.4/tkimg 1.4.17/README

  • tkImg tkImg released /tkimg/1.4/tkimg 1.4.17/Img-1.4.17.tar.gz

  • tkImg tkImg released /tkimg/1.4/tkimg 1.4.17/Img-1.4.17.7z

  • Paul Obermeier Paul Obermeier committed [r923] on Code

    Updated tcl.m4 to latest version.

  • Paul Obermeier Paul Obermeier committed [r922] on Code

    Updated tcl.m4 to latest version.

  • Paul Obermeier Paul Obermeier committed [r921] on Code

    Updated release notes for upcoming 1.4.17 release.

  • Paul Obermeier Paul Obermeier committed [r920] on Code

    Updated webpages for upcoming 2.0.0 release.

  • Paul Obermeier Paul Obermeier committed [r919] on Code

    Upgrade libtiff to 4.7.0.

  • Paul Obermeier Paul Obermeier committed [r918] on Code

    Upgrade libpng to 1.6.44.

  • Paul Obermeier Paul Obermeier committed [r917] on Code

    Updated version to 2.0.0.

  • Paul Obermeier Paul Obermeier committed [r916] on Code

    Upgrade libpng to 1.6.43.

  • Paul Obermeier Paul Obermeier committed [r915] on Code

    Added option "-nocomplain" to glob commands.

  • Paul Obermeier Paul Obermeier committed [r914] on Code

    Added missing description for test-suite visualtests.

  • Paul Obermeier Paul Obermeier committed [r913] on Code

    Added procedures and tests for correct image size and pixel colors.

  • Gregory B. Brooks Gregory B. Brooks posted a comment on discussion Open Discussion

    Well, I downloaded the folder.gif file from the first post I made here and it works on my mac. Thanks a bunch. I don't really understand why it wouldn't run on mac. I was running a ubuntu vm pointing to the same directory and it ran Drakon Editor fine. Of course I have been running the same download on Windows for years and it ran fine. But thanks for the solution. I have been installing and uninstalling tcl/tk and img from multiple methods trying to get this to run on mac. This gets me out of install...

  • Paul Obermeier Paul Obermeier posted a comment on discussion Open Discussion

    The file images/folder.gif in the Drakon Editor source code distribution is incorrect. It has differing values for the image sizes. Most image viewers seem to work around that error, but display different image sizes: IrfanView says 16x16 pixels, GIMP says 19x16 pixel. I decided to report this as an error in revision 541. So you should replace the bad folder.gif with a correct one. Note, that the incorrect file has a file size of 375 bytes, while the file attached has a file size of 410 bytes and...

  • Gregory B. Brooks Gregory B. Brooks posted a comment on discussion Open Discussion

    Trying to get https://drakon-editor.sourceforge.net to run on M3 running macos Sonoma 14.5 tclsh % package require Tk 8.6.14 % package ifneeded Tk 8.6.14 load /Library/Frameworks/Tk.framework/Versions/8.6/Tk % package require Img 1.4.17 % package ifneeded Tk 8.6.14 load /Library/Frameworks/Tk.framework/Versions/8.6/Tk % package ifneeded Img 1.4.17 package require img::window package require img::tga package require img::ico package require img::pcx package require img::sgi package require img::sun...

  • Paul Obermeier Paul Obermeier posted a comment on discussion Open Discussion

    Reading the attached GIF file works for me with Img1.4.16 as well as Img 2.0b1. Could you please specify more details regarding used operating system, Tcl and Img version.

  • Gregory B. Brooks Gregory B. Brooks posted a comment on discussion Open Discussion

    proc p.get_icon { name } { variable images global script_path if { ![ info exists images($name) ] } { set file $script_path/images/$name.gif set images($name) [ image create photo -format GIF -file $file ] } return $images($name) } proc p.get_folder_icon { } { return [ p.get_icon "folder" ] } I get this error: File and image width are not identical

  • Paul Obermeier Paul Obermeier committed [r912] on Code

    Fixed memory leak: trashBuffer was not freed, when trying to read a non-existing page using option "-index".

  • Paul Obermeier Paul Obermeier committed [r911] on Code

    Fixed potential memory leaks: Missing calls of png_destroy_* function in error cases.

1 >