I wonder if anyone can advise. I have written a .NET 4 WCF service which is intended to serve scanned documents and am struggling to get a Delphi 7 consumer to work.
On the .NET side I am converting Images to Bitmaps and then to Arrays of Byte using the following code :
using (Bitmap img = new Bitmap(fileName))
{
ImageConverter converter = new ImageConverter();
_bytes = (byte[])converter.ConvertTo(img, typeof(byte[]));
}
On the Consumer side I want to read the ByteArray into a TImage.Picture and this is where the plan has foundered. The following code errors on the 'LoadFromStream' line with
EInvalidGraphic with message 'Bitmap image is not valid'
procedure TBarcodeImageForm.FetchFile;
var
bytes : TByteDynArray;
info : TDocInfo;
Stream : TMemoryStream;
bmp : TBitMap;
begin
info := TDocInfo(FDocList.Items[lbFIles.ItemIndex]);
bytes := FDocButton.FetchDocument(info.FilePath).Data;
stream := TMemoryStream.Create();
try
Stream.Write(bytes[0], Length(Bytes));
Stream.Position := 0;
bmp := TBitMap.Create;
bmp.LoadFromStream(stream);
finally
Stream.Free;
end;
end;
By using a TFileStream in place of the memory stream above I have demonstrated that the data are valid - that is I can load the result in MSPaint. I have to admit I am stuck for the next step : Is Delphi 7 too outdated to handle modern bitmaps ? Is the fact that the files on the server side are tiffs and jpgs relevant? What should I do next ?
Any advice gratefully received.
UPDATE -------------------
I altered the code so that a JPG was being passed across and the results are very similar. This time I get JPEG Error #53 when I try and Load the image client-side. If I use a TFileStream and save to disk the resultant file looks fine with Windows Picture Viewer, but still will not load into the TImage Component.
Client Side now looks like this
stream := TFileStream.Create('c:\temp.jpg', fmCreate);
try
Stream.Write(bytes[0], Length(Bytes));
Stream.Position := 0;
finally
Stream.Free;
end;
try
imgDocument.Picture.LoadFromFile('c:\temp.jpg');
except end;
Server-side (publishing the whole data contract this time in case)
[DataContract]
public class ImageData
{
private byte[] _bytes;
[DataMember]
public byte[] Data
{
get { return _bytes; }
set { _bytes = value; }
}
public ImageData(string fileName)
{
using (MemoryStream memStream = new MemoryStream())
{
using (Image img = Image.FromFile(fileName))
{
img.Save(memStream, ImageFormat.Jpeg);
}
_bytes = new Byte[memStream.Length];
int i = 0;
while (i < memStream.Length)
i += memStream.Read(_bytes, i, 128000);
}
}
}
UPDATE -----------------------------------------------------------------
A successful test of the service from a Winforms consumer used the following code.
if (docList != null)
{
using (MemoryStream memStream =
new MemoryStream(client.FetchDocument(docList.Items[0].FilePath).Data))
{
System.Drawing.Image img = Image.FromStream(memStream);
pictureBox1.Image = img;
}
}
TBitmaprequires a valid bitmap header. You might try usingTJPegImage.LoadFromStreamand test fetching a JPEG; if that solves the problem, you can probably find a TIFF component for D7 as well; you'd have to read the first few bytes from the array to determine which type of image you were receiving and create the proper graphic to handle it. – Ken White Aug 11 '12 at 2:12