View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0003272 | JEDI VCL | 00 JVCL Components | public | 2005-10-17 13:26 | 2006-01-08 12:26 |
Reporter | IOn | Assigned To | obones | ||
Priority | normal | Severity | major | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 3.00 | ||||
Target Version | Fixed in Version | 3.20 | |||
Summary | 0003272: TJvThumbImage.SaveToFile --> save to JPEG | ||||
Description | When running TJvThumbImage.SaveToFile and AFile is a JPEG an error is encountered | ||||
Additional Information | Sollution Change in run\JvThumbImage.pas .... if (Ext = '.JPG') or (Ext = '.JPEG') then try Jpg := TJpegImage.Create; Jpg.Assign(Picture); Jpg.CompressionQuality := 75; Jpg.Compress; Jpg.SaveToFile(AFile); .... to .... if (Ext = '.JPG') or (Ext = '.JPEG') then try Jpg := TJpegImage.Create; Jpg.Assign(Picture.Graphic); Jpg.CompressionQuality := 75; Jpg.Compress; Jpg.SaveToFile(AFile); .... | ||||
Tags | No tags attached. | ||||