AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Programmierung allgemein Algorithmen, Datenstrukturen und Klassendesign Where to get help to Native jpg library by SimDesign BV
Thema durchsuchen
Ansicht
Themen-Optionen

Where to get help to Native jpg library by SimDesign BV

Ein Thema von neumimnemecky · begonnen am 13. Jul 2022 · letzter Beitrag vom 14. Jul 2022
Antwort Antwort
Benutzerbild von KodeZwerg
KodeZwerg

Registriert seit: 1. Feb 2018
3.691 Beiträge
 
Delphi 11 Alexandria
 
#1

AW: Where to get help to Native jpg library by SimDesign BV

  Alt 13. Jul 2022, 18:43
should the folder date be 2018 or 2022?
Actually the Folder date is 2015, it can be that the Archiver Tool you use does not set Date/Time on Folders...
Gruß vom KodeZwerg
  Mit Zitat antworten Zitat
neumimnemecky

Registriert seit: 21. Dez 2018
45 Beiträge
 
#2

AW: Where to get help to Native jpg library by SimDesign BV

  Alt 13. Jul 2022, 19:45
should the folder date be 2018 or 2022?
Actually the Folder date is 2015, it can be that the Archiver Tool you use does not set Date/Time on Folders...
So I have mistaken the files and folders. I have extracted the zip onto different disk/partition with similar name Hence different folder names and different date. So the date 2018 was date when I installed the library firstly on my disk. But when I tried to use it, it wanted nativexml. Probably I was not able to use back it in 2018 without this native xml library.
  Mit Zitat antworten Zitat
neumimnemecky

Registriert seit: 21. Dez 2018
45 Beiträge
 
#3

AW: Where to get help to Native jpg library by SimDesign BV

  Alt 14. Jul 2022, 09:07
I have problem to compile the package. It requires visualclx - but I have Delphi 7 installed - should not be problem to find it. What can I do?
  Mit Zitat antworten Zitat
Benutzerbild von KodeZwerg
KodeZwerg

Registriert seit: 1. Feb 2018
3.691 Beiträge
 
Delphi 11 Alexandria
 
#4

AW: Where to get help to Native jpg library by SimDesign BV

  Alt 14. Jul 2022, 09:39
Code:
package NativeJpgD7;

{$R *.res}
{$ALIGN 8}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO ON}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION ON}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES OFF}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DESCRIPTION 'NativeJpg - by SimDesign BV'}
{$IMPLICITBUILD ON}

requires
  rtl,
  vcl,
//  visualclx,
  vcljpg;

contains
  NativeJpg in '..\NativeJpg.pas',
  sdJpegBitstream in '..\sdJpegBitstream.pas',
  sdJpegDCT in '..\sdJpegDCT.pas',
  sdJpegCoder in '..\sdJpegCoder.pas',
  sdJpegHuffman in '..\sdJpegHuffman.pas',
  sdJpegLossless in '..\sdJpegLossless.pas',
  sdJpegMarkers in '..\sdJpegMarkers.pas',
  sdJpegTypes in '..\sdJpegTypes.pas',
  sdFileList in '..\..\disk\sdFileList.pas',
  sdSortedLists in '..\..\general\sdSortedLists.pas',
  sdBitmapResize in '..\..\bitmap\sdBitmapResize.pas',
  sdMapIterator in '..\..\bitmap\sdMapIterator.pas',
  sdColorTransforms in '..\..\color\sdColorTransforms.pas',
  sdVirtualScrollbox in '..\..\virtualscrollbox\sdVirtualScrollbox.pas',
  sdDebug in '..\..\general\sdDebug.pas',
  sdJpegImage in '..\sdJpegImage.pas',
  sdBitmapConversionWin in '..\..\bitmap\sdBitmapConversionWin.pas',
  sdGraphicTypes in '..\..\bitmap\sdGraphicTypes.pas',
  sdStreams in '..\..\general\sdStreams.pas';

end.
Try this. But actually "VisualCLX" is a basic package within Delphi 7.
The more smart way for you would be to register to Embarcadero and obtain a one year free license for the Community Edition which got all you needed out-of-the-box.
Gruß vom KodeZwerg

Geändert von KodeZwerg (14. Jul 2022 um 09:43 Uhr)
  Mit Zitat antworten Zitat
neumimnemecky

Registriert seit: 21. Dez 2018
45 Beiträge
 
#5

AW: Where to get help to Native jpg library by SimDesign BV

  Alt 14. Jul 2022, 09:56
Now, this is odd. It prints:
Cannot find dcu file for
sdStreams in '..\..\general\sdStreams.pas';

But dir. general (simdesign-master\simlib\general) does not contain any packages (.dpk) : How could I compile it? Should I create my own package? I can do it. I can push the pas files to package, but it will print this warning:

The following changes are neccessary to make this package compatible with other installed packages:

Add vcl.
vcl contains implicit unit(s) Graphics, Consts, Forms, Printers, StdActns, Clipbrd, Controls, Themes, ComCtrls, ComStrs, ExtActns, ActnList, Menus, ImgList, StdCtrls, Dialogs, ExtCtrls, ExtDlgs, Buttons, ToolWin, ListActns, WinHelpViewer.

Add NativeJpgD7.
NativeJpgD7 contains implicit unit(s) sdDebug.

Remove sdFileList, sdSortedLists, sdStreams.
Unit(s) sdFileList, sdSortedLists, sdStreams were found in required package NativeJpgD7
.


I don't really understand it much. I still have the
"NativeJpgD7.bpl~" old file from 2018 and NativeJpgD7.bpl from 13th 07 2022 21:32 (compiled yesterday, but I was so tired that I already have no idea what I was doing at that late time).
  Mit Zitat antworten Zitat
Benutzerbild von KodeZwerg
KodeZwerg

Registriert seit: 1. Feb 2018
3.691 Beiträge
 
Delphi 11 Alexandria
 
#6

AW: Where to get help to Native jpg library by SimDesign BV

  Alt 14. Jul 2022, 10:08
Cannot find dcu file for sdStreams in '..\..\general\sdStreams.pas';
Easy to fix, press "Build" instead of "Compile" or "Install" or whatever you click there, when it can not compile than you get next error message.
Gruß vom KodeZwerg
  Mit Zitat antworten Zitat
Benutzerbild von Sherlock
Sherlock

Registriert seit: 10. Jan 2006
Ort: Offenbach
3.811 Beiträge
 
Delphi 12 Athens
 
#7

AW: Where to get help to Native jpg library by SimDesign BV

  Alt 14. Jul 2022, 10:25
May I suggest to move/restart this discussion to our english speaking sibling site https://en.delphipraxis.net where a lot of english speakers might be able to help with this issue?

Sherlock
Oliver
Geändert von Sherlock (Morgen um 16:78 Uhr) Grund: Weil ich es kann
  Mit Zitat antworten Zitat
neumimnemecky

Registriert seit: 21. Dez 2018
45 Beiträge
 
#8

AW: Where to get help to Native jpg library by SimDesign BV

  Alt 14. Jul 2022, 10:27
Cannot find dcu file for sdStreams in '..\..\general\sdStreams.pas';
Easy to fix, press "Build" instead of "Compile" or "Install" or whatever you click there, when it can not compile than you get next error message.
Do you mean to build the NativeJpgD7.dpk?
It print error sdStringTable.dcu not found

Or do you mean to build my own package for general folder?
  Mit Zitat antworten Zitat
Antwort Antwort


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 02:35 Uhr.
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz