Revert "Fix Upload SVG throw error #1120"
This commit is contained in:
parent
f60c60ac1d
commit
eda2a5637f
|
@ -42,7 +42,7 @@
|
|||
<td><a href="@(ContentUrl(context.FileId))" target="_new">@context.Name</a></td>
|
||||
<td>@context.ModifiedOn</td>
|
||||
<td>@context.Extension.ToUpper() @Localizer["File"]</td>
|
||||
<td>@string.Format("{0:0.00}", ((decimal)context.Size / 1000)) KB</td>
|
||||
<td>@(context.Size / 1000) KB</td>
|
||||
</Row>
|
||||
</Pager>
|
||||
@if (_files.Count == 0)
|
||||
|
|
|
@ -535,19 +535,16 @@ namespace Oqtane.Controllers
|
|||
file.ImageHeight = 0;
|
||||
file.ImageWidth = 0;
|
||||
|
||||
//svg has no image and height, the attributes for svg are held in the XML viewport
|
||||
if(file.Extension != "svg")
|
||||
{
|
||||
if (Constants.ImageFiles.Split(',').Contains(file.Extension.ToLower()))
|
||||
if (Constants.ImageFiles.Split(',').Contains(file.Extension.ToLower()))
|
||||
{
|
||||
FileStream stream = new FileStream(filepath, FileMode.Open, FileAccess.Read);
|
||||
using (var image = Image.FromStream(stream))
|
||||
{
|
||||
FileStream stream = new FileStream(filepath, FileMode.Open, FileAccess.Read);
|
||||
using (var image = Image.FromStream(stream))
|
||||
{
|
||||
file.ImageHeight = image.Height;
|
||||
file.ImageWidth = image.Width;
|
||||
}
|
||||
stream.Close();
|
||||
file.ImageHeight = image.Height;
|
||||
file.ImageWidth = image.Width;
|
||||
}
|
||||
|
||||
stream.Close();
|
||||
}
|
||||
|
||||
return file;
|
||||
|
|
Loading…
Reference in New Issue
Block a user