Using DelphiXE2 and Win7 64 bit.
I print an image to paper using some rudimentary calls, Printer.BeginDoc, Printer.Canvas.StretchDraw, Printer.EndDoc.
In Delphi XE2 if I load the image to be printed to a TImage as a TWICImage it will not print. If I do a simple TImage.assign() it does print.
Edit - to clarify, what I get from the printout is a blank page with no image when using the TWICImage.
I must be missing something in the TGraphic stuff but my understanding of the TGraphic stuff is pretty much nonexistent.
Here some sample code with 2 small TImages on a form, one of which has a small jpeg loaded at design time. This is the form show event which copies image1 to image2. Image2 is the one being printed. I do this because this sample illustrates how images are used in a much larger program.
procedure TForm1.FormShow(Sender: TObject);
var w : TWICImage;
var ms : TMemoryStream;
begin
//copy image1 to image2 for printing - image 2 will not print copying via this method
w := TWICImage.Create;
ms := TMemoryStream.Create;
try
Image1.Picture.Graphic.SaveToStream(ms);
w.LoadFromStream(ms);
Image2.Picture.Graphic := w;
//Image2.Picture.Bitmap.Assign(Image1.Picture.Graphic);
finally
w.Free;
ms.Free;
end;//try..finally
end;
If image2 is filled by assigning w above the image shows on the form but will not print. If I do the Image2.Picture.Bitmap.Assign(Image1.Picture.Graphic) the image shows on the form AND will print.
The problem is we need to use TWICImage for manipulation.
My printing code:
procedure TForm1.Button1Click(Sender: TObject);
var AspectRatio: Single;
var OutputWidth, OutputHeight: Single;
begin
if not PrintDialog1.Execute then Exit;
Printer.BeginDoc;
try
//print image as large as it can be - fill up as much of the paper as possible
OutputWidth := Image2.Picture.Width;
OutputHeight := Image2.Picture.Height;
AspectRatio := OutputWidth / OutputHeight;
if (OutputWidth < Printer.PageWidth) and
(OutputHeight < Printer.PageHeight) then begin
if OutputWidth < OutputHeight then begin
OutputHeight := Printer.PageHeight;
OutputWidth := OutputHeight * AspectRatio;
end
else begin
OutputWidth := Printer.PageWidth;
OutputHeight := OutputWidth / AspectRatio;
end
end;
if OutputWidth > Printer.PageWidth then begin
OutputWidth := Printer.PageWidth;
OutputHeight := OutputWidth / AspectRatio;
end;
if OutputHeight > Printer.PageHeight then begin
OutputHeight := Printer.PageHeight;
OutputWidth := OutputHeight * AspectRatio;
end;
Printer.Canvas.StretchDraw(Rect(0,0, Trunc(OutputWidth), Trunc(OutputHeight)), Image2.Picture.Graphic);
finally
Printer.EndDoc;
end;
end;
Since we need to use the TWICImage for manipulation and that works just fine as far as screen display and saving goes, what the heck can I do to get an image that will print? Is there some assignment method or a way to create a new image that I get from the TWICImage that I can get to print?
Apparently a lot of people want to print these images so this is nearly a showstopper for me.
Any help is appreciated.
Cheers! TJ
I also looked at these SO postings but did not see anything there that sparked any ideas: SO post 1 SO Post 2
ImageAR,PrinterAR,OutputWidth,OutputHeightbeing Double'sImageAR:=Image2.Picture.Width/Image2.Picture.Height;PrinterAR:=Printer.PageWidth/Printer.PageHeight;if ImageAR>PrinterAR then beginOutputWidth:=Printer.PageWidth;OutputHeight:=Printer.PageWidth/ImageAR;end else beginOutputWidth:=Printer.PageHeight*ImageAR;OutputHeight:=Printer.PageHeight;end;– Sertac Akyuz Jan 29 at 0:15