Link to home
Start Free TrialLog in
Avatar of d_kiernan
d_kiernan

asked on

Source Code for saving to JPEG

I need to find source code or a Delphi component that I can compile into my EXE. Source can be C, C++ but preferably Delphi object pascal

thank you
Avatar of viktornet
viktornet
Flag of United States of America image

Do you need a component or just a source code on how to work with JPG???

Regards,
Viktor Ivanov
Using Delphi 3 or 4?

/// John
Avatar of d_kiernan
d_kiernan

ASKER

I am currently using Delphi 3 and C++ Builder 3 and what I need is code (source prefrerrably) to save a bitmap out to JPEG. I can't use DLL's I need all the code to be within the EXE.

Donagh
ASKER CERTIFIED SOLUTION
Avatar of viktornet
viktornet
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
There is a word object which is not suppose to be there,....just erase it =)

Regards,
Viktor Ivanov
One more thing ...don't forget to free the objects you created when you finish working with then..like this....

Image1.Free;
MyJpeg.Free;

Regards,
Viktor Ivanov
Thanks experts, that should do the trick

regards
Donagh