Flash 8 - image antialiasing problem
December 13th, 2005 at 04:34pm Administrator
If you're new here, you may want to subscribe to my RSS feed. If you like my site, consider linking back. I prefer text "Free Flash Tutorials" to http://blog.franto.com
Thanks for visiting my site! If you need anything just contacting through Contact page or Gtalk widget
Ok, here is another problem with Flash 8 (maybe not really problem, but is weird
) Try to look at the examples (not finished, just want to show problem):
Ok, Flash 7 is ok, try to look at Flash 8 application. Small thumbnails, for each photo there are 2 thumbnails (showing antialiasing difference). On bottom, there is a movieclip which has loaded external .jpg, in front of it is Bitmap, it’s just redraw from MC.
and look: Bitmap antialiasing is OK (there are smoothing enabled), but original external .jpg is bad… I try change quality to BEST, don’t works…. (in 7 all is ok)
Has anybody solution for this problem? ![]()
Entry Filed under: Flash
»Related posts:
- FlexTips: How to add Bitmap to UIComponent
- FlexTips: Problem with masks and scalable Flash
- Another bug: LoadVariables?
- Flash8: Security problems
- Problem with RSS
- Transparent background in projector (Screenweaver)
- Flash8: Security problems - still no solution
- CSS is just great
- Adobe Image Foundation Toolkit Technology Preview
- Is this hacking or some bots?
- Problem with Adobe Flash CS3 - Korean version
- Flex2: Streaming Video: mute sound
- I don’t want to code this in Flash
- Flash Player Penetration
- Games in Qualifying round
- Can’t POST data in Internet Explorer
- Flash Player 9.0.124 is NOT vulnerable again
- AsDoc with Flex Library Project
- First game - first victory - Slovakia:Belarus - 2:1
- ICQ Spam - help





December 13th, 2005 at 4:53 pm
Try to add a little blur , search about antialiasing in video game
December 13th, 2005 at 6:39 pm
Loaded Images do not have smoothing enabled in F8, my solution was to us bitmapdata to copy the pixels and draw it again with smoothing enabled.
December 13th, 2005 at 9:01 pm
Hi,
Impossible to answer without seeing your code
December 14th, 2005 at 4:45 am
All images are not smoothed in FP8… See “_quality” in Flash Help!
My solutions is making copied movieclip and using it.
var bitmap:BitmapData=new BitmapData(image._width, image._height);
var copy=this.createEmptyMovieClip(”copy”, 2);
copy.attachBitmap(bitmap, 1, “auto”, true);
bitmap.draw(image);
December 14th, 2005 at 9:42 am
ok, thanks…
i knew about this solution with BitmapData, just wanted to know, if there is some other solution
Thanks guys…
December 14th, 2005 at 8:15 pm
This is worth checking out
http://www.frontend-multimedia.com/smoothImageLoader
December 15th, 2005 at 9:56 am
Thanks Mike
December 19th, 2005 at 2:12 pm
http://www.kaourantin.net/2005/12/dynamically-loading-bitmaps-with.html
so this is official form Tinic Uro, it’s bug and will be fiexd in 8.5 player
January 10th, 2006 at 9:58 pm
[…] 前两天遇到的一个问题,就是加载外部图片时,Flash8中_quality=”best”似乎不起作用了,图片在旋转和放大缩小时不做抗钜处理,当时觉得是不是Flash8改变了什么参数,因为Flash7和之前版本都好好的(因为当时我无意中发布成了flash5的格式,后来改回flash8才发现的问题),后来发现是压根不行了。本想去maillinglist问,结果忙忘了……刚看RSS时候看到Franto那里有个类似的帖子,点开来看看果然和我的问题一样的,在留言里面找到了一些信息: 1、很多人遇到并抱怨这个问题…… 2、这是个bug… - - 3、可以用Flash8的BitmapData提供的.smothing修正,虽然比较麻烦,不过有人专门写了一个新的load函数解决这个问题。 […]
May 21st, 2006 at 8:10 pm
So what did you end up using?