Search found 2 matches

by SeverinP
2012-08-09T20:14:27-07:00
Forum: Bugs
Topic: Clip path is not working in x64
Replies: 2
Views: 4922

Re: Clip path is not working in x64

I'v found a bug. The property.c file has a code:

if (~(1UL*count) >= (MaxTextExtent-1))

On x64 this code runs to false because 1UL is unsigned long and has size = 4, count is __int64 and has size 8, 1UL*count will be casted to signed __int64... So ~(1UL*count) will be negative!
by SeverinP
2012-08-08T22:29:13-07:00
Forum: Bugs
Topic: Clip path is not working in x64
Replies: 2
Views: 4922

Clip path is not working in x64

I'v build VisualDynamicMT project in x64 configuration. ClipImagePath method returns null for 8BIM:1999,2998:#1 path name. But in x32 configuration it returns valid svg xml. The same thing happens with x64 and win32 distributives of IM.