Maximum LineWidth problem

Discussions on GFL SDK, the graphic library for reading and writing graphic files

Moderators: helmut, XnTriq, xnview

Post Reply
mlafefon
Posts: 4
Joined: Wed Feb 06, 2008 8:50 am

Maximum LineWidth problem

Post by mlafefon »

Hello
when i do this code to draw a circle in vb6
everything is fine, the circle has line width =10:

Code: Select all

Dim Ctrl As GflAx.GflAx
Set Ctrl = New GflAx.GflAx
With Ctrl
    .LoadBitmap App.Path & "\image.jpg" 'Load the file
    .LineWidth = 10
    .DrawCircle 110, 110, 100
     Me.Picture = .GetPicture 'Display picture
End With
Set Ctrl = Nothing
But
If want more widther line and i put LineWidth = 20

Code: Select all

Dim Ctrl As GflAx.GflAx
Set Ctrl = New GflAx.GflAx
With Ctrl
    .LoadBitmap App.Path & "\image.jpg" 'Load the file
    .LineWidth = 20
    .DrawCircle 110, 110, 100
     Me.Picture = .GetPicture 'Display picture
End With
Set Ctrl = Nothing
Then the circle width get only 1 point
Is this a Bug ?
User avatar
xnview
Author of XnView
Posts: 46235
Joined: Mon Oct 13, 2003 7:31 am
Location: France
Contact:

Re: Maximum LineWidth problem

Post by xnview »

mlafefon wrote: Is this a Bug ?
Yes currently you can't make a line more than 10
Pierre.
mlafefon
Posts: 4
Joined: Wed Feb 06, 2008 8:50 am

Re: Maximum LineWidth problem

Post by mlafefon »

xnview wrote:
mlafefon wrote: Is this a Bug ?
Yes currently you can't make a line more than 10
Thank you.
Is this bug going to be fixed at the next version? Or sense I bought a license of the light version, can you send me a fixed version of GflAx?
Regaeds
Amir
Post Reply