📄 jpeg.pas
字号:
while (jc.c.next_scanline < jc.c.image_height) do
begin
LinesWritten := jpeg_write_scanlines(@jc.c, @SrcScanline, LinesPerCall);
Inc(Integer(SrcScanline), PtrInc * LinesWritten);
end;
jpeg_finish_compress(@jc.c);
finally
if ExceptObject = nil then
PtrInc := 100
else
PtrInc := 0;
Progress(Self, psEnding, PtrInc, False, Rect(0,0,0,0), '');
end;
finally
Src.Free;
end;
except
on EAbort do { OnProgress can raise EAbort to cancel image save }
NewImage; { Throw away any partial jpg data }
end;
finally
ReleaseContext(jc);
end;
end;
procedure TJPEGImage.DIBNeeded;
begin
GetBitmap;
end;
procedure TJPEGImage.Draw(ACanvas: TCanvas; const Rect: TRect);
begin
ACanvas.StretchDraw(Rect, Bitmap);
end;
function TJPEGImage.Equals(Graphic: TGraphic): Boolean;
begin
Result := (Graphic is TJPEGImage) and
(FImage = TJPEGImage(Graphic).FImage); { ---!! }
end;
procedure TJPEGImage.FreeBitmap;
begin
FBitmap.Free;
FBitmap := nil;
end;
function BuildPalette(const cinfo: jpeg_decompress_struct): HPalette;
var
Pal: TMaxLogPalette;
I: Integer;
C: Byte;
begin
Pal.palVersion := $300;
Pal.palNumEntries := cinfo.actual_number_of_colors;
if cinfo.out_color_space = JCS_GRAYSCALE then
for I := 0 to Pal.palNumEntries-1 do
begin
C := cinfo.colormap^[0]^[I];
Pal.palPalEntry[I].peRed := C;
Pal.palPalEntry[I].peGreen := C;
Pal.palPalEntry[I].peBlue := C;
Pal.palPalEntry[I].peFlags := 0;
end
else
for I := 0 to Pal.palNumEntries-1 do
begin
Pal.palPalEntry[I].peRed := cinfo.colormap^[2]^[I];
Pal.palPalEntry[I].peGreen := cinfo.colormap^[1]^[I];
Pal.palPalEntry[I].peBlue := cinfo.colormap^[0]^[I];
Pal.palPalEntry[I].peFlags := 0;
end;
Result := CreatePalette(PLogPalette(@Pal)^);
end;
procedure BuildColorMap(var cinfo: jpeg_decompress_struct; P: HPalette);
var
Pal: TMaxLogPalette;
Count, I: Integer;
begin
Count := GetPaletteEntries(P, 0, 256, Pal.palPalEntry);
if Count = 0 then Exit; { jpeg_destroy will free colormap }
cinfo.colormap := cinfo.mem.alloc_sarray(j_common_ptr(@cinfo), JPOOL_IMAGE, Count, 3);
cinfo.actual_number_of_colors := Count;
for I := 0 to Count-1 do
begin
Byte(cinfo.colormap^[2]^[I]) := Pal.palPalEntry[I].peRed;
Byte(cinfo.colormap^[1]^[I]) := Pal.palPalEntry[I].peGreen;
Byte(cinfo.colormap^[0]^[I]) := Pal.palPalEntry[I].peBlue;
end;
end;
function TJPEGImage.GetBitmap: TBitmap;
var
LinesPerCall, LinesRead: Integer;
DestScanLine: Pointer;
PtrInc: Integer;
jc: TJPEGContext;
GeneratePalette: Boolean;
begin
Result := FBitmap;
if Result <> nil then Exit;
if (FBitmap = nil) then FBitmap := TBitmap.Create;
Result := FBitmap;
GeneratePalette := True;
InitDecompressor(Self, jc);
try
try
{ Set the bitmap pixel format }
FBitmap.Handle := 0;
if (PixelFormat = jf8Bit) or (jc.d.out_color_space = JCS_GRAYSCALE) then
FBitmap.PixelFormat := pf8bit
else
FBitmap.PixelFormat := pf24bit;
Progress(Self, psStarting, 0, False, Rect(0,0,0,0), '');
try
if (FTempPal <> 0) then
begin
if (FPixelFormat = jf8Bit) then
begin { Generate DIB using assigned palette }
BuildColorMap(jc.d, FTempPal);
FBitmap.Palette := CopyPalette(FTempPal); { Keep FTempPal around }
GeneratePalette := False;
end
else
begin
DeleteObject(FTempPal);
FTempPal := 0;
end;
end;
jpeg_start_decompress(@jc.d);
{ Set bitmap width and height }
with FBitmap do
begin
Handle := 0;
Width := jc.d.output_width;
Height := jc.d.output_height;
DestScanline := ScanLine[0];
PtrInc := Integer(ScanLine[1]) - Integer(DestScanline);
if (PtrInc > 0) and ((PtrInc and 3) = 0) then
{ if no dword padding is required and output bitmap is top-down }
LinesPerCall := jc.d.rec_outbuf_height { read multiple rows per call }
else
LinesPerCall := 1; { otherwise read one row at a time }
end;
if jc.d.buffered_image then
begin { decode progressive scans at low quality, high speed }
while jpeg_consume_input(@jc.d) <> JPEG_REACHED_EOI do
begin
jpeg_start_output(@jc.d, jc.d.input_scan_number);
{ extract color palette }
if (jc.common.progress^.completed_passes = 0) and (jc.d.colormap <> nil)
and (FBitmap.PixelFormat = pf8bit) and GeneratePalette then
begin
FBitmap.Palette := BuildPalette(jc.d);
PaletteModified := True;
end;
DestScanLine := FBitmap.ScanLine[0];
while (jc.d.output_scanline < jc.d.output_height) do
begin
LinesRead := jpeg_read_scanlines(@jc.d, @DestScanline, LinesPerCall);
Inc(Integer(DestScanline), PtrInc * LinesRead);
end;
jpeg_finish_output(@jc.d);
end;
{ reset options for final pass at requested quality }
jc.d.dct_method := jc.FinalDCT;
jc.d.dither_mode := jc.FinalDitherMode;
if jc.FinalTwoPassQuant then
begin
jc.d.two_pass_quantize := True;
jc.d.colormap := nil;
end;
jpeg_start_output(@jc.d, jc.d.input_scan_number);
DestScanLine := FBitmap.ScanLine[0];
end;
{ build final color palette }
if (not jc.d.buffered_image or jc.FinalTwoPassQuant) and
(jc.d.colormap <> nil) and GeneratePalette then
begin
FBitmap.Palette := BuildPalette(jc.d);
PaletteModified := True;
DestScanLine := FBitmap.ScanLine[0];
end;
{ final image pass for progressive, first and only pass for baseline }
while (jc.d.output_scanline < jc.d.output_height) do
begin
LinesRead := jpeg_read_scanlines(@jc.d, @DestScanline, LinesPerCall);
Inc(Integer(DestScanline), PtrInc * LinesRead);
end;
if jc.d.buffered_image then jpeg_finish_output(@jc.d);
jpeg_finish_decompress(@jc.d);
finally
if ExceptObject = nil then
PtrInc := 100
else
PtrInc := 0;
Progress(Self, psEnding, PtrInc, PaletteModified, Rect(0,0,0,0), '');
{ Make sure new palette gets realized, in case OnProgress event didn't. }
if PaletteModified then
Changed(Self);
end;
except
on EAbort do ; { OnProgress can raise EAbort to cancel image load }
end;
finally
ReleaseContext(jc);
end;
end;
function TJPEGImage.GetEmpty: Boolean;
begin
Result := (FImage.FData = nil) and FBitmap.Empty;
end;
function TJPEGImage.GetGrayscale: Boolean;
begin
Result := FGrayscale or FImage.FGrayscale;
end;
function TJPEGImage.GetPalette: HPalette;
var
DC: HDC;
begin
Result := 0;
if FBitmap <> nil then
Result := FBitmap.Palette
else if FTempPal <> 0 then
Result := FTempPal
else if FPixelFormat = jf24Bit then { check for 8 bit screen }
begin
DC := GetDC(0);
if (GetDeviceCaps(DC, BITSPIXEL) * GetDeviceCaps(DC, PLANES)) <= 8 then
begin
if FTempPal <> 0 then DeleteObject(FTempPal); { Memory leak -- fix }
FTempPal := CreateHalftonePalette(DC);
Result := FTempPal;
end;
ReleaseDC(0, DC);
end;
end;
function TJPEGImage.GetHeight: Integer;
begin
if FBitmap <> nil then
Result := FBitmap.Height
else if FScale = jsFullSize then
Result := FImage.FHeight
else
begin
CalcOutputDimensions;
Result := FScaledHeight;
end;
end;
function TJPEGImage.GetWidth: Integer;
begin
if FBitmap <> nil then
Result := FBitmap.Width
else if FScale = jsFullSize then
Result := FImage.FWidth
else
begin
CalcOutputDimensions;
Result := FScaledWidth;
end;
end;
procedure TJPEGImage.JPEGNeeded;
begin
if FImage.FData = nil then
Compress;
end;
procedure TJPEGImage.LoadFromClipboardFormat(AFormat: Word; AData: THandle;
APalette: HPALETTE);
begin
{ --!! check for jpeg clipboard data, mime type image/jpeg }
FBitmap.LoadFromClipboardFormat(AFormat, AData, APalette);
end;
procedure TJPEGImage.LoadFromStream(Stream: TStream);
begin
ReadStream(Stream.Size - Stream.Position, Stream);
end;
procedure TJPEGImage.NewBitmap;
begin
FBitmap.Free;
FBitmap := TBitmap.Create;
end;
procedure TJPEGImage.NewImage;
begin
if FImage <> nil then FImage.Release;
FImage := TJPEGData.Create;
FImage.Reference;
end;
procedure TJPEGImage.ReadData(Stream: TStream);
var
Size: Longint;
begin
Stream.Read(Size, SizeOf(Size));
ReadStream(Size, Stream);
end;
procedure TJPEGImage.ReadStream(Size: Longint; Stream: TStream);
var
jerr: jpeg_error_mgr;
cinfo: jpeg_decompress_struct;
begin
NewImage;
with FImage do
begin
FData := TMemoryStream.Create;
FData.Size := Size;
Stream.ReadBuffer(FData.Memory^, Size);
if Size > 0 then
begin
jerr := jpeg_std_error; { use local var for thread isolation }
cinfo.err := @jerr;
jpeg_CreateDecompress(@cinfo, JPEG_LIB_VERSION, sizeof(cinfo));
try
FData.Position := 0;
jpeg_stdio_src(@cinfo, @FData);
jpeg_read_header(@cinfo, TRUE);
FWidth := cinfo.image_width;
FHeight := cinfo.image_height;
FGrayscale := cinfo.jpeg_color_space = JCS_GRAYSCALE;
FProgressiveEncoding := jpeg_has_multiple_scans(@cinfo);
finally
jpeg_destroy_decompress(@cinfo);
end;
end;
end;
PaletteModified := True;
Changed(Self);
end;
procedure TJPEGImage.SaveToClipboardFormat(var AFormat: Word; var AData: THandle;
var APalette: HPALETTE);
begin
{ --!! check for jpeg clipboard format, mime type image/jpeg }
Bitmap.SaveToClipboardFormat(AFormat, AData, APalette);
end;
procedure TJPEGImage.SaveToStream(Stream: TStream);
begin
JPEGNeeded;
with FImage.FData do
Stream.Write(Memory^, Size);
end;
procedure TJPEGImage.SetGrayscale(Value: Boolean);
begin
if FGrayscale <> Value then
begin
FreeBitmap;
FGrayscale := Value;
PaletteModified := True;
Changed(Self);
end;
end;
procedure TJPEGImage.SetHeight(Value: Integer);
begin
InvalidOperation(SChangeJPGSize);
end;
procedure TJPEGImage.SetPalette(Value: HPalette);
var
SignalChange: Boolean;
begin
if Value <> FTempPal then
begin
SignalChange := (FBitmap <> nil) and (Value <> FBitmap.Palette);
if SignalChange then FreeBitmap;
FTempPal := Value;
if SignalChange then
begin
PaletteModified := True;
Changed(Self);
end;
end;
end;
procedure TJPEGImage.SetPerformance(Value: TJPEGPerformance);
begin
if FPerformance <> Value then
begin
FreeBitmap;
FPerformance := Value;
PaletteModified := True;
Changed(Self);
end;
end;
procedure TJPEGImage.SetPixelFormat(Value: TJPEGPixelFormat);
begin
if FPixelFormat <> Value then
begin
FreeBitmap;
FPixelFormat := Value;
PaletteModified := True;
Changed(Self);
end;
end;
procedure TJPEGImage.SetScale(Value: TJPEGScale);
begin
if FScale <> Value then
begin
FreeBitmap;
FScale := Value;
FNeedRecalc := True;
Changed(Self);
end;
end;
procedure TJPEGImage.SetSmoothing(Value: Boolean);
begin
if FSmoothing <> Value then
begin
FreeBitmap;
FSmoothing := Value;
Changed(Self);
end;
end;
procedure TJPEGImage.SetWidth(Value: Integer);
begin
InvalidOperation(SChangeJPGSize);
end;
procedure TJPEGImage.WriteData(Stream: TStream);
var
Size: Longint;
begin
Size := 0;
if Assigned(FImage.FData) then Size := FImage.FData.Size;
Stream.Write(Size, Sizeof(Size));
if Size > 0 then Stream.Write(FImage.FData.Memory^, Size);
end;
procedure InitDefaults;
var
DC: HDC;
begin
DC := GetDC(0);
if (GetDeviceCaps(DC, BITSPIXEL) * GetDeviceCaps(DC, PLANES)) <= 8 then
JPEGDefaults.PixelFormat := jf8Bit
else
JPEGDefaults.PixelFormat := jf24Bit;
ReleaseDC(0, DC);
end;
initialization
InitDefaults;
TPicture.RegisterFileFormat('jpg', 'JPEG Image File', TJPEGImage);
TPicture.RegisterFileFormat('jpeg', 'JPEG Image File', TJPEGImage);
finalization
TPicture.UnregisterGraphicClass(TJPEGImage);
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -