Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

View Poll Results: Do you use PNG?
Yes - PNG Rocks and I use it a lot 7 26.92%
Its great but I dont use it much 6 23.08%
Nope - only the standard gif & jpeg thankyouverymuch 11 42.31%
What the fuck is PNG? 2 7.69%
Voters: 26. You may not vote on this poll

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 06-12-2005, 03:16 PM   #1
romeoboi
Confirmed User
 
Join Date: Aug 2003
Posts: 343
do you use PNG?

hey everyone-
I thought I would see what everyone thinks about PNG.... I forgot about it but started fooling around with it, and its lossless compression is great. Why dont more people use it? It works in firefox, but what about the majority of browsers?

give your opinion!
__________________

Cash in on Exclusive ZERO TOLERANCE DVD Downloads!
romeoboi is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 03:19 PM   #2
Rob
I'm a great bowler.
 
Rob's Avatar
 
Industry Role:
Join Date: Nov 2003
Location: Right Outside of Normal.
Posts: 13,309
Old habits are hard to break. I stick with .jpg and .gif.
__________________
Rob is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 03:30 PM   #3
Tat2Jr
Confirmed User
 
Tat2Jr's Avatar
 
Join Date: Feb 2001
Location: Sunny California
Posts: 4,882
jpg and gif - I always use the lowest common form in my html so I get everyone I can.
__________________
NICHE MONEY >> Ass WorshipPantiesSolo TeenPantyhose
Serving up exclusive fetish sites since 1997!
Tat2Jr is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 03:31 PM   #4
WoW!
Confirmed User
 
WoW!'s Avatar
 
Industry Role:
Join Date: Feb 2005
Posts: 579
i use .png a lot
WoW! is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 03:33 PM   #5
kernelpanic
Too lazy to set a custom title
 
Join Date: Jan 2005
Posts: 2,961
FYI, folks, PNG is a standard.
kernelpanic is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 03:35 PM   #6
chupachups
Confirmed User
 
chupachups's Avatar
 
Join Date: Dec 2002
Location: Sweden/Spain you sum bitch!
Posts: 6,576
Will use it when damn IE supports the transparency feature.
__________________
chupachups is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 03:36 PM   #7
Platinumpimp
Logos and such.
 
Platinumpimp's Avatar
 
Industry Role:
Join Date: Jan 2004
Location: Kingdom of the Netherlands
Posts: 10,214
Most of the time I am using Macromedia Fireworks MX, so I use .png a lot.

I do not use photoshop, only for some serious touching up of photo's. If you are skilled, fireworks can do as much as photoshop.
__________________
I design logo's.
Platinumpimp is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 03:36 PM   #8
boner 2.0
Too lazy to set a custom title
 
Join Date: Jul 2004
Posts: 10,970
Quote:
Originally Posted by Chupachups
Will use it when damn IE supports the transparency feature.


jpg or gif for now.
__________________
boner 2.0 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 03:40 PM   #9
kernelpanic
Too lazy to set a custom title
 
Join Date: Jan 2005
Posts: 2,961
Quote:
Originally Posted by Chupachups
Will use it when damn IE supports the transparency feature.
IE7 will (their words, trust it as you will)

Besides, there are ways around IE6's retardedness of the PNG standard. You can either use the following function (in javascript), or you can use PNGs whose background is set without the need for transparency. Either way, PNG is often times the best image format for a particular purpose.

Code:
function correctPNG() 
   {
   for(var i=0; i<document.images.length; i++)
      {
	  var img = document.images[i]
	  var imgName = img.src.toUpperCase()
	  if (imgName.substring(imgName.length-3, imgName.length) hahahaha "PNG")
	     {
		 var imgID = (img.id) ? "id='" + img.id + "' " : ""
		 var imgClass = (img.className) ? "class='" + img.className + "' " : ""
		 var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
		 var imgStyle = "display:inline-block;" + img.style.cssText 
		 if (img.align hahahaha "left") imgStyle = "float:left;" + imgStyle
		 if (img.align hahahaha "right") imgStyle = "float:right;" + imgStyle
		 if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle		
		 var strNewHTML = "<span " + imgID + imgClass + imgTitle
		 + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
	     + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
		 + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>" 
		 img.outerHTML = strNewHTML
		 i = i-1
	     }
      }
   }
window.attachEvent("onload", correctPNG);
kernelpanic is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 03:40 PM   #10
NaughtyRob
Two fresh affiliate progs
 
NaughtyRob's Avatar
 
Industry Role:
Join Date: Nov 2004
Location: Inside teen pussy
Posts: 29,602
I only use it when designing stuff in Fireworks, but even then I just use it like a .psd in photoshop.
NaughtyRob is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 03:56 PM   #11
SaintElGrouch
Confirmed User
 
Join Date: Jan 2005
Location: California
Posts: 307
Quote:
Originally Posted by Platinumpimp
Most of the time I am using Macromedia Fireworks MX, so I use .png a lot.

I do not use photoshop, only for some serious touching up of photo's. If you are skilled, fireworks can do as much as photoshop.
Here I thought I was the only one. Cheers!
SaintElGrouch is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 04:07 PM   #12
hova
Traffillionaire
 
Industry Role:
Join Date: Jan 2002
Location: ICQ:209371571
Posts: 22,430
sometimes I do
__________________
http://traffillions.com/

Sign up and get lifetime revshare on your traffic
hova is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 04:42 PM   #13
Tempest
Too lazy to set a custom title
 
Industry Role:
Join Date: May 2004
Location: West Coast, Canada.
Posts: 10,217
I did some tests at once point and found that PNG files were larger than the equilvalent GIF files.. So that was enough for me not to bother...
Tempest is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-12-2005, 04:48 PM   #14
kernelpanic
Too lazy to set a custom title
 
Join Date: Jan 2005
Posts: 2,961
Quote:
Originally Posted by Tempest
I did some tests at once point and found that PNG files were larger than the equilvalent GIF files.. So that was enough for me not to bother...
depends on the content

There are plenty of files for which the reverse is true.
kernelpanic is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.