Forumet godkänner inte min http://www.dac.se/mollekatt/avatar.aspx Har du satt MIME-typ? yepp Nej, det skall inte spela någon roll. Skriv in adressen direkt i webbläsaren. suck, hadde "Image/Jpg" istället för "Image/Jpeg" nu fungerar den i IE, men samma fel i bbForum.... lol, detta funkadynamisk asp bild fungerar inte på phpforum
som bildlänk den anser att den är fel..
Kan jag på nått sätt skapa bilden och faka att länken är .jpg?Sv: dynamisk asp bild fungerar inte på phpforum
Response.ContentType = "image/jpeg";
/Peter
Sv:dynamisk asp bild fungerar inte på phpforum
det är nog att länken slutar på ".aspx" som den inte gillar....Sv: dynamisk asp bild fungerar inte på phpforum
Det är vad .aspx-filen genererar som är fel, som webbläsaren inte gillar.Sv: dynamisk asp bild fungerar inte på phpforum
Då får du inte upp bilden utan en massa skräptecken.Sv: dynamisk asp bild fungerar inte på phpforum
protected void Page_Init(object sender, EventArgs e)
{
int width = 130;
int height = 174;
if (Request.QueryString["width"] != null && Request.QueryString["height"] != null)
{
int.TryParse(Request.QueryString["width"], out width);
int.TryParse(Request.QueryString["height"], out height);
}
Random rand = new Random(DateTime.Now.Millisecond);
List<string> galleryImages = (List<string>)Application["galleryImages"];
int index = rand.Next(0,galleryImages.Count-1);
Bitmap thumbSource = new Bitmap(Server.MapPath(".") + "\\" +
System.Configuration.ConfigurationManager.AppSettings["galleryPath"] + "\\" + galleryImages[index]);
float thumbAR = (float)thumbSource.Height / (float)thumbSource.Width;
int thumbHeight = (int)((float)width * thumbAR);
if (thumbHeight > height)
{
thumbHeight = height;
thumbAR = (float)thumbSource.Width / (float)thumbSource.Height;
width = (int)((float)thumbHeight * thumbAR);
}
Rectangle destArea = new Rectangle(0, 0, width, thumbHeight);
Rectangle sourceArea = new Rectangle(0, 0, thumbSource.Width, thumbSource.Height);
Bitmap bitmap = new Bitmap(width, thumbHeight);
Graphics g = Graphics.FromImage(bitmap);
g.DrawImage(thumbSource, destArea, sourceArea, GraphicsUnit.Pixel);
g.Dispose();
thumbSource.Dispose();
Response.ContentType = "Image/Jpg";
bitmap.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
bitmap.Dispose();
}
Sv:dynamisk asp bild fungerar inte på phpforum
ska prova på forumet nu...Sv: dynamisk asp bild fungerar inte på phpforum
Sv: dynamisk asp bild fungerar inte på phpforum
http://www.dac.se/mollekatt/avatar.aspx/dummy.jpg