|
-
Mar 29th, 2025, 03:01 PM
#32
Re: Image Annotation & Markup Tools (RC6/Cairo Based)
 Originally Posted by Mojtaba
I noticed a small problem: when you load a new photo or minimize the program window, the image disappears and does not refresh.
And you must click on the board to see the image again.
Thanks for reporting, this is fixed in the latest source in the first post.
 Originally Posted by Mojtaba
I've talked about this before.
software runs late after compilation
This problem exists if you use the GDI+ library in fonts.
Of course, if the number of fonts exceeds about 600 or 700
the program's slow loading becomes clearly visible, but below these numbers it is not so noticeable.
This project doesn't use GDI+ at all, so that shouldn't be an issue.
If you comment out the following code in Form_Load:
Code:
For ii = 0 To Screen.FontCount - 1
Me.cmbFont.AddItem Screen.Fonts(ii)
Next
And replace it with:
Code:
Me.cmbFont.AddItem "Segoe UI"
Does it load faster?
 Originally Posted by Mojtaba
There are several other suggestions: the ability to zoom in and take screenshots, and . . .
Zoom is a possibility, but I don't think I'll get into screenshots as it is outside the scope of what this project is meant for. Just FYI the goal isn't for a full-featured paint application, nor a replacement for something like the Windows snipping tool or SnagIt. But feel free to expand on the source as required for your needs.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|