tropic
tropic
Explore posts from servers
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
hmmm
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
Darnit, thats gonna be a bit weird in this case
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
If you had to display an image from a Byte[] in aspx how would you go about it, no code needed just a general overview
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
yeah, honestly was just trying to get something working and then move on
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
Which is why I am VERY confused, I was like maybe the DB just got corrupted
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
Yes they are
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
So i guess it doesnt see it as an issue
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
Nope, which is not helpful it puts the image there but its just black
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
I am trying this method
protected void preview_Callback(object sender, CallbackEventArgsBase e)
{
using (var uow = new OriginationUow())
{
var id = new Guid(Convert.ToString(hdf_attchmentid.Get("attachmentid")));
var file = uow.Attachments.GetAll().Where(o => o.InvoiceId == (id));

foreach (var item in file)
{

byte[] fileBytes = item.FileDetails;
var filename = item.DocName;

if (filename.EndsWith(".pdf"))
{
// Assume that 'imageBytes' is your byte array containing the image data

// Convert the byte array to a Base64-encoded string
string base64String = Convert.ToBase64String(fileBytes);

// Generate the data URL with the Base64-encoded image
string imageUrl = $"data:image/png;base64,{base64String}";

// Use window.location to display the image in a new window or tab
ScriptManager.RegisterStartupScript(this, this.GetType(), "openImage", $"window.open('{imageUrl}')", true);

_name = "View/Attachment/PdfFile.aspx";
}

// cppreview.JSProperties["cpResult"] = _name;
}
}
}
protected void preview_Callback(object sender, CallbackEventArgsBase e)
{
using (var uow = new OriginationUow())
{
var id = new Guid(Convert.ToString(hdf_attchmentid.Get("attachmentid")));
var file = uow.Attachments.GetAll().Where(o => o.InvoiceId == (id));

foreach (var item in file)
{

byte[] fileBytes = item.FileDetails;
var filename = item.DocName;

if (filename.EndsWith(".pdf"))
{
// Assume that 'imageBytes' is your byte array containing the image data

// Convert the byte array to a Base64-encoded string
string base64String = Convert.ToBase64String(fileBytes);

// Generate the data URL with the Base64-encoded image
string imageUrl = $"data:image/png;base64,{base64String}";

// Use window.location to display the image in a new window or tab
ScriptManager.RegisterStartupScript(this, this.GetType(), "openImage", $"window.open('{imageUrl}')", true);

_name = "View/Attachment/PdfFile.aspx";
}

// cppreview.JSProperties["cpResult"] = _name;
}
}
}
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
Yeah
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
Yeah, I know xD
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
SKU would be the default Basic (B1)
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
Os is windows
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
Yeah it sucks
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
So we are working with an app no documentation sadly and no commit history
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
App Service
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
So, he did have a git repo, but when we attained the code he left the zip file without the .git folder
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
So no support there to explain what anything in this application is
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
Fair, I just inherited this application from a dev that left on bad terms
44 replies
CC#
Created by tropic on 5/30/2023 in #help
❔ Image is not being displayed On Azure
44 replies