Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/angusjohnson/tqoiimage
Delphi TGraphic support for QOI images
https://github.com/angusjohnson/tqoiimage
delphi qoi
Last synced: about 2 months ago
JSON representation
Delphi TGraphic support for QOI images
- Host: GitHub
- URL: https://github.com/angusjohnson/tqoiimage
- Owner: AngusJohnson
- License: mit
- Created: 2021-12-27T21:56:18.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-16T05:36:52.000Z (over 2 years ago)
- Last Synced: 2023-03-04T18:20:51.895Z (almost 2 years ago)
- Topics: delphi, qoi
- Language: Pascal
- Homepage:
- Size: 947 MB
- Stars: 25
- Watchers: 8
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TQoiImage
Delphi support for QOI images.QOI - The “Quite OK Image Format” for fast, lossless image compression
https://github.com/phoboslab/qoiExample:
uses Forms, Graphics, QoiImage;type
TForm1 = class(TForm)
...
image: TImage;
...procedure TForm1.FormCreate(Sender: TObject);
begin
Image1.Picture.LoadFromFile('.\dice.qoi');
end;# QoiShellExtensions.dll
Windows Explorer (64bit) Preview Handler and Thumbnail Provider shell extensions.![previewhandler](https://user-images.githubusercontent.com/5280692/149751938-dc65d49d-77a4-43a8-b894-d0503254f929.png)
![thumbnails](https://user-images.githubusercontent.com/5280692/149880916-c8410071-001c-4998-963d-0be9bb6b3dd0.png)