Código-fonte C# para upload de imagens e geração de miniaturas em ASP.NET<FONT size=4><FONT size=4><FONT size=4>usando System;
usando System.Collections;
usando System.ComponentModel;
usando System.Data;
usando System.Drawing;
usando System.Web;
usando System.Web.SessionState;
usando System.Web.UI;
usando System.Web.UI.WebControls;
usando System.Web.UI.HtmlControls;
usando System.IO;
o namespace
System.Drawing.Imaging;
{
/// <resumo>
/// Descrição resumida da miniatura.
/// </sumário>
Miniatura da classe pública: System.Web.UI.Page
{
System.Web.UI.WebControls.Label Label1 protegido;
protegido System.Web.UI.WebControls.Button Button1;
private void Page_Load (remetente do objeto, System.EventArgs e)
{
//Coloque aqui o código do usuário para inicializar a página
Label1.Text = "<h3>Fácil de praticar em ASP.NET?lt;/h3>";
Button1.Text = "Carregar e exibir miniaturas";
}
#region Código gerado pelo Web Form Designer
substituir void protegido OnInit (EventArgs e)
{
//
// CODEGEN: Esta chamada é exigida pelo designer de Web Forms do ASP.NET.
//
InitializeComponent();
base.OnInit(e);
}
/// <resumo>
/// O Designer suporta métodos necessários - não use o editor de código para modificar
/// O conteúdo deste método.
/// </sumário>
privado vazio InitializeComponent()
{
this.Button1.Click += new System.EventHandler(this.Button1_Click);
this.Load += new System.EventHandler(this.Page_Load })
;
#endregion
private void Button1_Click(objeto remetente, System.EventArgs e)
{
HttpFileCollection MyFileColl = HttpContext.Current.Request.Files;
HttpPostedFile MyPostedFile = MyFileColl[0];
if (MyPostedFile.ContentType.ToString().ToLower().IndexOf("imagem") < 0)
{
Response.Write("Formato gráfico inválido.");
retornar;
}
GetThumbNail(MyPostedFile.FileName, 100, 100,
MyPostedFile.ContentType.ToString(), false, MyPostedFile.InputStream);
}
privado System.Drawing.Imaging.ImageFormat GetImageType (objeto strContentType)
{
if ((strContentType.ToString().ToLower()) == "imagem/pjpeg")
{
retornar System.Drawing.Imaging.ImageFormat.Jpeg;
}
senão if ((strContentType.ToString().ToLower()) == "imagem/gif")
{
retornar System.Drawing.Imaging.ImageFormat.Gif;
}
senão if ((strContentType.ToString().ToLower()) == "imagem/bmp")
{
retornar System.Drawing.Imaging.ImageFormat.Bmp;
}
senão if ((strContentType.ToString().ToLower()) == "imagem/tiff")
{
retornar System.Drawing.Imaging.ImageFormat.Tiff;
}
senão if ((strContentType.ToString().ToLower()) == "imagem/x-icon")
{
retornar System.Drawing.Imaging.ImageFormat.Icon;
}
senão if ((strContentType.ToString().ToLower()) == "imagem/x-png")
{
retornar System.Drawing.Imaging.ImageFormat.Png;
}
senão if ((strContentType.ToString().ToLower()) == "imagem/x-emf")
{
retornar System.Drawing.Imaging.ImageFormat.Emf;
}
senão if ((strContentType.ToString().ToLower()) == "imagem/x-exif")
{
retornar System.Drawing.Imaging.ImageFormat.Exif;
}
senão if ((strContentType.ToString().ToLower()) == "imagem/x-wmf")
{
retornar System.Drawing.Imaging.ImageFormat.Wmf;
}
outro
{
retornar System.Drawing.Imaging.ImageFormat.MemoryBmp;
}
}
private void GetThumbNail(string strFileName, int iWidth, int iheight,
string strContentType, bool blnGetFromFile, System.IO.Stream ImgStream)
{
System.Drawing.Image oImg
;
{
oImg = System.Drawing.Image.FromFile(strFileName);
}
outro
{
oImg = System.Drawing.Image.FromStream(ImgStream);
}
oImg = oImg.GetThumbnailImage(iWidth, iheight, null, IntPtr.Zero);
string strGuid = System.Guid.NewGuid().ToString().ToUpper();
string strFileExt = strNomeArquivo.Substring(strNomeArquivo.LastIndexOf("."));
Response.ContentType = strContentType;
MemoryStream MemStream = new MemoryStream();
oImg.Save(MemStream, GetImageType(strContentType));
MemStream.WriteTo(Response.OutputStream);
}
}
}
</FONT></FONT></FONT><FONT color=#ff0000 size=4></FONT><FONT size=4>Função:
1. Carregue o arquivo de imagem (JPG GIF PNG),
2. Salve no caminho especificado (defina o caminho em web.config e salve o arquivo em seu formato original),
3. E gere automaticamente a largura especificada (defina a largura em web.config)
4. e formato especificado (especifique o formato da miniatura em web.config)
5. Uma miniatura com as mesmas proporções da imagem original (a altura da miniatura é calculada com base na largura e na largura e altura da imagem original)
6. Pode determinar se o arquivo já existe
7. Se não for substituído, um erro será dado
8. Se a caixa de seleção "Substituir imagem original" estiver marcada, a imagem original será substituída.
9. De acordo com os requisitos, mais de uma entrada de arquivo e caixa de seleção correspondente podem ser definidas no formulário web.
10. E depois que o arquivo é carregado, o nome do arquivo, tamanho, bytes e
11. O tamanho do nome do arquivo da miniatura.
12. O formato do nome do arquivo das miniaturas: imagem original + "_thumb." + formato especificado, como: test.jpg_thumb.gif, para fácil gerenciamento.
-------------------
public void UploadFile (remetente do objeto, System.EventArgs e)
{
string imgNameOnly, imgNameNoExt, imgExt;
string imgThumbnail;
int número de erro = 0;
System.Drawing.Image oriImg, newImg;
string strFePicSavePath = ConfigurationSettings.AppSettings["FePicSavePath"].ToString();
string strFePicThumbFormat = ConfigurationSettings.AppSettings["FePicThumbFormat"].ToString().ToLower();
int intFeThumbWidth = Int32.Parse(ConfigurationSettings.AppSettings["FePicThumbWidth"]);
string arquivoExt;
StringBuilder picInfo = new StringBuilder()
;
{
for(int i = 0;i < Request.Files.Count; i++)
{
HttpPostedFile PostedFile = Request.Files[i];
fileExt = (System.IO.Path.GetExtension(PostedFile.FileName)).ToString().ToLower();
imgNameOnly = System.IO.Path.GetFileName(PostedFile.FileName);
if(fileExt == ".jpg" || fileExt == ".gif" || fileExt == ".png")
{
if(System.IO.File.Exists(strFePicSavePath + imgNameOnly) && (checkboxlistRewrite.Items[i].Selected == false))
{
númeroerro = númeroerro + 1;
picInfo.Append("<b>Erro:</b>File("+ (i+1) +") " + imgNameOnly + " já existe, altere o nome do arquivo<br/>" );
}
}
outro
{
númeroerro = númeroerro + 1;
picInfo.Append("<b>Erro:</b> file("+ (i+1) +") " + imgNameOnly + " extensão" + fileExt + " não permitido<br/>" );
}
}
if(erroNumber > 0)
{
picInfo.Append("<font color=red>Todas as operações não foram concluídas, corrija os erros e prossiga novamente</font><br/>");
}
outro
{
for(int i = 0;i < Request.Files.Count; i++)
{
HttpPostedFile PostedFile = Request.Files[i];
imgNameOnly = System.IO.Path.GetFileName(PostedFile.FileName);
imgNameNoExt = System.IO.Path.GetFileNameWithoutExtension(PostedFile.FileName);
imgExt = System.IO.Path.GetExtension(PostedFile.FileName).ToString().ToLower();
oriImg = System.Drawing.Image.FromStream(PostedFile.InputStream);
newImg = oriImg.GetThumbnailImage(intFeThumbWidth, intFeThumbWidth * oriImg.Height/oriImg.Width,null,new System.IntPtr(0));
mudar (imgExt)
{
//caso ".jpeg":
caso ".jpg":
oriImg.Save(strFePicSavePath + imgNameOnly , System.Drawing.Imaging.ImageFormat.Jpeg);
quebrar;
caso ".gif":
oriImg.Save(strFePicSavePath + imgNameOnly , System.Drawing.Imaging.ImageFormat.Gif);
quebrar;
caso ".png":
oriImg.Save(strFePicSavePath + imgNameOnly , System.Drawing.Imaging.ImageFormat.Png);
quebrar;
}
.jpg
", System.Drawing.Imaging.ImageFormat.Jpeg);
{
//o formato jpeg pode obter o menor tamanho de arquivo e o png é o maior tamanho
//caso "jpeg":
caso "jpg":
newImg.Save(strFePicSavePath + imgNameOnly + "_thumb.jpg",System.Drawing.Imaging.ImageFormat.Jpeg);
imgThumbnail = imgNameOnly + "_thumb.jpg";
quebrar;
caso "gif":
newImg.Save(strFePicSavePath + imgNameOnly + "_thumb.gif",System.Drawing.Imaging.ImageFormat.Gif);
imgThumbnail = imgNameOnly + "_thumb.gif";
quebrar;
caso "png":
newImg.Save(strFePicSavePath + imgNameOnly + "_thumb.png",System.Drawing.Imaging.ImageFormat.Png);
imgThumbnail = imgNameOnly + "_thumb.png";
quebrar;
padrão:
newImg.Save(strFePicSavePath + imgNameOnly + "_thumb.jpg",System.Drawing.Imaging.ImageFormat.Jpeg);
imgThumbnail = imgNameOnly + "_thumb.jpg";
break;
}//switch
picInfo.Append("<b>Nome do arquivo:</b>" + imgNameOnly + " ( " + oriImg.Width + " x " + oriImg.Height + " ) " + PostedFile.ContentLength/1024 + "KB<br/>");
picInfo.Append("<b>Nome da miniatura:</b>" + imgThumbnail + " ( " + newImg.Width + " x " + newImg.Height + " )<br/><br/>")
; Dispor();
newImg.Dispose
();
>
Todas as operações foram bem-sucedidas</font><br/>");
}
outro
{
=
red>Há um erro, verifique. A operação não foi bem-sucedida</font><br/>"
)
;
</FONT>