Jump to content

c0d3r

Members
  • Content Count

    137
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by c0d3r

  1. can't compile the unit is not an error that should be included, its a result due to that ONE typo error in the codes. The errors should be reported exactly as whats in your codes.
  2. Create a new vcl application, drop 2 labels, and make ONE label name typo in Oncreate event. When compiling, it said there were 2 errors in the codes:
  3. c0d3r

    Customizing source editor

    Yes. I think so, from Options/User Interface/Editor/Color/Color Speedsetting dropdown
  4. c0d3r

    Customizing source editor

    Yes. I did switch between colour schemes by using Delphi IDE Theme Editor. The last scheme I posted was used more often now.
  5. c0d3r

    Customizing source editor

    I called my this IDE colour schema : Nature. the red: Flowers, the green: Forest, the orange/yellow: Moon/Sun, the cream white: Clouds, the dark blue background: Deep ocean, the light green (a bit blueish) : Rivers. the brown white space: earth. the Sky blue brace pair highlight: The Sky. The red error lines: Fire.
  6. c0d3r

    Customizing source editor

    Here is another Delphi IDE color scheme I used to use:
  7. c0d3r

    10.4.1 IDE wait/working cursor

    I had exact the same issue. See the screenshot. Its reproducible if I ctrl-shift-up to the procedure declaration section, then ctrl-shift-down back to the procedure body, then move the cursor, you would see it. However, I'm in a VM though.
  8. c0d3r

    Customizing source editor

    Original Delphi Editor
  9. c0d3r

    Customizing source editor

    I liked mine a lot with Ubuntu mono font:
  10. c0d3r

    What is the future roadmap of Graphics32 ?

    Oh, Sorry, I didn't know that. Thats great!
  11. c0d3r

    What is the future roadmap of Graphics32 ?

    Do any of you plan to have your components to support 64-bit in near future?
  12. c0d3r

    Images in High DPI, how?

    Hi, All I need some help to figure out how to make images (PNGs and BMPs, we don't use ICONs) work properly under different High DPI screen. All our VCLs used were scaled properly EXCEPT Toolbars and images. I knew toolbars have to be scaled properly based on images, so the question turns to how to get images scaled properly? Most of our images were 16x16 PNGs, few were 24x24. and few BMPs. We were using 3rd party TPngImageList to store all PNGs. Do we have to prepare different set of Images in order to make images working under different High DPI? like a set of 20x20, a set of 24x24, 28x28 32x32... Thats a LOT and would be PITA if we have to do. Any good solutions? BTW, Could be possible to have TPngImageList to be able to save selected PNG image to a file? the reason why I'm asking is because we lost some of original PNGs during migration from Delphi 2007 to Delphi 10.4
  13. c0d3r

    Images in High DPI, how?

    Found the solution and done. The result is perfect! See:
  14. c0d3r

    smooth scaling of bitmaps

    @Anders Melander Thanks so much for the help. Now not only all the images in the application wre scaling smoothly, but also all the Toolbar2000s were all scaled perfectly under different High DPIs (100%, 125%, 150%, 200%, ...). Yes, TOOLBARS are working without adding different set of images!!!
  15. c0d3r

    smooth scaling of bitmaps

    Sorry. My mistake. Its working now, have to use LoadBitmap32FromPNG(Source, 'normal_left.png'), along with ABitmap.AlphaFormat := afDefined; The reason why I'm using TImage was just for testing to see how the images scaling looks like, so I could use it for scaling my own page control tab bars:
  16. c0d3r

    smooth scaling of bitmaps

    As far as I know, once the source loads file/stream from a PNG file/stream, the transparent got lost, Here are the codes: Source.LoadFromFile('normal_left.png'); <-- Transparent got lost, transparent turned to White Target.SetSize(Round(Source.Width * 2), Round(Source.Height * 2)); Resampler := TKernelResampler.Create(Source); // Resampler is now owned by TBitmap32 Resampler.Kernel := TMitchellKernel.Create; // Kernel is now owned by resampler // Stretch using kernel resampler Target.Draw(Target.BoundsRect, Source.BoundsRect, Source); ABitmap := TBitmap.Create; try ABitmap.Assign(Target); ABitmap.AlphaFormat := afDefined; Image1{TImage}.Picture.Bitmap.Assign(ABitmap); finally ABitmap.Free; end; if you replace the first line with the following, the transparent turned to Black: LoadBitmap32FromPNG(Source, 'normal_left.png');
  17. c0d3r

    smooth scaling of bitmaps

    The PNG file is working fine using TPngImage. I did a very simple test with Graphics32: 1: Source.LoadFromFile('XXX.PNG'); Source.DrawTo(Image1{TImage}.Canvas.Handle, 0, 0); 2: using GR32PNG: LoadBitmap32FromPNG(Source, 'xxx.png'); Source.DrawTo(Image1{TImage}.Canvas.Handle, 0, 0); Both transparent channels were got lost with different DrawMode (dmTransparent, dmBlend, ...), all in Black, not yet do the resample things.
  18. c0d3r

    smooth scaling of bitmaps

    Try the above codes but with PNG files, seems the transparent colors got lost always, all in black, even though I try to use like this: LoadBitmap32FromPNG(Source, 'normal_left.png'); other than this problem everything else is working, What am I missing?
  19. It crashes all the time if VMWare (16.1) has the 'Accelerate 3D Graphics' turned on.
  20. c0d3r

    Images in High DPI, how?

    Thanks for the tips. I will certainly try them out.
  21. c0d3r

    Images in High DPI, how?

    We are using Per Monitor v2 in the latest release, and Yes, for now we have to set this 'Override high DPI scaling...' to System. BUT it leads to blur screens which we got other complaints (LOTS LOTS of picky people out there, but we have to make them all happy) because of that.
  22. c0d3r

    Images in High DPI, how?

    Because clients complaint that the icons won't get scaled properly, and they also don't want you change the icons when we discuss the issues with them.
  23. c0d3r

    Images in High DPI, how?

    A new version IS a change. 🙂 There are lots of people out there in NA don't like icons being changed even though they are out of date, particularly those ones in Heathcare sectors. Dumb people all over the places, we did got calls that ask for where the any key is because the guys couldn't find the any key on the keyboard when they saw "Press any key to continue...'
  24. c0d3r

    Images in High DPI, how?

    Thanks for the link, I will try it out.
  25. c0d3r

    Images in High DPI, how?

    Thanks for the link. Unfortunately due to training issues, we can't change any icons because our clients were all get used to them, thats one of the issues we were facing, otherwise we could get better modern icons to replace aged ones. Clients are just ordinary people, some of them aren't smart enough.
×