Search found 10 matches

by Genghis86
Sun, 2007-02-18, 03:38
Forum: DCMTK - General
Topic: Why so many: ijg8, ijg12, ijg16
Replies: 2
Views: 4820

Why so many: ijg8, ijg12, ijg16

I vaguely recall reading about this before, but I cannot remember where and when (I searched this forum too, but to no avail).

Why are there 3 projects, named ijg8, ijg12 and ijg16? Are these 3 copies of the IJG library with different #defines?
by Genghis86
Wed, 2006-01-04, 20:07
Forum: DCMTK - General
Topic: dcmqrscp/imagectn PatientName Case Sensitivity
Replies: 2
Views: 4087

As well as in dbfind.cxx::DB_MatchStrings:

Code: Select all

...

    if ((strchr (modl, '*') == NULL) && (strchr (modl, '?') == NULL))
#ifdef STRICT_COMPARE
	return (strcmp (modl, string) == 0) ;
#else
	return (strcmpi (modl, string) == 0) ;
#endif

    match = DB_StringUnify (modl, string) ;

...
by Genghis86
Wed, 2006-01-04, 20:02
Forum: DCMTK - General
Topic: dcmqrscp/imagectn PatientName Case Sensitivity
Replies: 2
Views: 4087

I made the following patch to libsrc/dbutils.cxx: int DB_StringUnify (char *pmod, char *pstr) { int uni; if (*pmod == '\0') return (*pstr == '\0'); #ifdef STRICT_COMPARE if ( *pmod == *pstr #else #define lcase(c) (((c) >= 'A' && (c) <= 'Z') ? ((c) + 'a' - 'A') : (c)) if ( lcase(*pmod) == lca...
by Genghis86
Wed, 2006-01-04, 19:39
Forum: DCMTK - General
Topic: dcmqrscp/imagectn PatientName Case Sensitivity
Replies: 2
Views: 4087

dcmqrscp/imagectn PatientName Case Sensitivity

Is it possible to make a command-line switch to toggle case sensitivity for PatientName matching?

DICOM standard part 4 specifies that the matching is implementation specific.
by Genghis86
Wed, 2006-01-04, 19:37
Forum: DCMTK - General
Topic: convert 24bit bmp to dicom, picture's color changed,why?
Replies: 4
Views: 7354

Check if the Red and Blue channels might have been swapped accidentally.
by Genghis86
Mon, 2006-01-02, 19:17
Forum: DCMTK - General
Topic: DCMTK 3.5.4 JPEG Baseline
Replies: 3
Views: 5183

I have 3.5.4 installed, and I don't see anything related to "baseline" at all in the man pages, nor in dcmqrscp.cxx.
by Genghis86
Thu, 2005-12-29, 22:39
Forum: DCMTK - General
Topic: DCMTK 3.5.4 JPEG Baseline
Replies: 3
Views: 5183

DCMTK 3.5.4 JPEG Baseline

Will there be support for JPEG Baseline transfer syntax in imagectn/dcmqrscp tool?
by Genghis86
Tue, 2005-08-30, 17:30
Forum: DCMTK - Installation
Topic: Linking with VS2005
Replies: 10
Views: 17005

Have you considered using DLLs instead?
by Genghis86
Mon, 2005-08-29, 14:53
Forum: DCMTK - Installation
Topic: Linking with VS2005
Replies: 10
Views: 17005

These kinds of problems are usually caused when you are trying to link projects that have been built against a different CRT. Make sure all projects use the same CRT. For example, Debug versions could all link against "Debug Multithreaded DLL" version of the CRT, and Release versions would...
by Genghis86
Mon, 2005-08-29, 13:59
Forum: DCMTK - General
Topic: Win32 Path Reference Issues
Replies: 1
Views: 3272

Win32 Path Reference Issues

I would like to bring 2 minor issues to your attention: LIBPATH in .dsp files (for MSVC++) references paths without the use of quotation marks, which causes MSDEV not to display them in the GUI tabs. While this is does not affect compilation itself, it makes it difficult to change the paths of sever...