ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 What is the fastest way to create jpg files

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
john_siggy@yahoo.com Posted - Nov 11 2018 : 09:09:22
Of the several ways to create jpg files, which way is the fastest. I need to create thousands at a time.

Regards,

John
3   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - Nov 12 2018 : 17:20:05
OK, then just use a TIEBitmap and use Read() to input the stream, then Write() to output it.

https://www.imageen.com/help/TIEBitmap.Write.html

Something like:

bmp := TIEBitmap.create;
bmp.ParamsEnabled := True;
bmp.Read( ms );

// Set your JPEG quality, etc.
bmp.Params...
bmp.write( ms, ioJPEG );
bmp.free;


Nigel
Xequte Software
www.imageen.com
john_siggy@yahoo.com Posted - Nov 12 2018 : 16:00:35
Want to convert from a memorystream containing a bitmap to a memorystream containing a jpg image.

Thanks,
xequte Posted - Nov 11 2018 : 19:49:56
Hi John

Create in what way? Do you have a source image, or are you custom drawing them?



Nigel
Xequte Software
www.imageen.com