Kate 0 Denunciar post Postado Novembro 23, 2007 Galera tô comum problema, tenho q gravar imagem no arquivo, mas não esta gravando, alguém sabe o q estou fazendo de errado??? CaminhoImagem = "~/ProductImages/"; NomeArquivo = fupFoto.FileName; if (fupFoto.PostedFile.ContentType.ToLower() != "image/gif" && fupFoto.PostedFile.ContentType.ToLower() != "image/pjpeg") throw new Framework.ExceptionERP.ExceptionERP("Tipo de arquivo inválido. Por favor selecione um arquivo Gif ou Jpg!"); if (File.Exists(CaminhoImagem + NomeArquivo)) throw new Framework.ExceptionERP.ExceptionERP("Arquivo já existe!"); System.Drawing.Image ImagemOriginal = System.Drawing.Image.FromStream(fupFoto.PostedFile.InputStream); double Altura = ImagemOriginal.Size.Height; double Largura = ImagemOriginal.Size.Width; double Relacao = Altura / Largura; System.Drawing.Image ImagemGravar = ImagemOriginal.GetThumbnailImage(320, 240, new System.Drawing.Image.GetThumbnailImageAbort(this.ThumbnailCallback), IntPtr.Zero); ImagemGravar.Save(CaminhoImagem + NomeArquivo); return NomeArquivo; Compartilhar este post Link para o post Compartilhar em outros sites
DBB 0 Denunciar post Postado Novembro 28, 2007 Qual erro ?? poste o erro que podemos ajudar! Compartilhar este post Link para o post Compartilhar em outros sites