-
Hi,
I was wondering if FreeMovie-PHP was able to embed Fonts.
My goal is to be able tu load TrueType, FreeType or PostScypt font files.
As it seems impossible with flash, I want PHP requests to generate at runtime some swfs with thoses in their librairies so I can share them.
Can FreeMovie do this?.
2008-10-06 06:23:14 UTC by visitorg
-
The main reason I would like to use freemovie is to put text into SWF so that the operator of a competitor's website will no longer be able to steal text from my site to use on his site.
By searching through the code of freemoviecompiler.php, I discovered the function packSTRING(), which appears to be able to add text to the flash object, but I have no experience at this level of flash, nor...
2007-11-27 19:45:26 UTC by labradors
-
Ok, I found a bug in my own code!
Please consider that the values of $width and $height are in pixels but the headers of an swf need "twips".
1 Twip = 1/20 Pixel.
To get the image in the swf as large as you want to, change following lines:
$swf->SetFrameSize($width, $height);
to
$swf->SetFrameSize($width*20, $height*20);
and
$CharacterInfo =...
2007-08-29 15:02:58 UTC by killi138
-
Hi @all,
I had very large problems realizing this. So I hope this is helpfull for someone who is new to freemovie.
I had a few JPEG-images and wanted them to put into a slideshow. So here's the code, which worked fine for me:
<?php
require_once("freemoviecompilertoolbox.php");
$width = 800;
$height = 1280;
$swf = new FreeMovieCompilerToolbox;...
2007-08-29 10:48:50 UTC by killi138
-
Damn - I got it working :) :) :)
Thank you for this tip with the DefineRectangleBitmap-function, Peter! I tried it for hours without using this...
But I got a white screen like resprung, too. So I looked in the error-logs of the apache.
There it said "Cannot handle this kind of compression yet". So: damn!
But: Just make a JPG-File with the "good" old Paint! Save the...
2007-08-28 09:44:39 UTC by killi138
-
Hiya!
I can't get your example to work :-(
I just get a blank screen, and I've tried with a lot of different jpg's (mostly baseline standard encoded).
Also, I've tried moving the three bitmap-defining lines of your example into the freemovie demos which are known to work - again, no result
I can't find any fault with the code, so I'm stumped...
---
$BitmapID =...
2007-05-28 05:23:15 UTC by resprung
-
Hi, thank you for the attention.
I would want to know, where is the documentation. I don't know where find it.
2007-03-19 12:54:49 UTC by sergioska
-
I am not sure because it is a long time since I last did something with freemovie. But I think building a flash slideshow with freemovie would involve the following steps:
- Reading the documentation.
- Loading images (possibly converting them in flash bitmaps beforehand).
- Using the image as a fill pattern for a shape (e.g. a rectangle).
- Adding program logic to achieve image...
2007-03-17 12:44:56 UTC by peter_santo
-
Hi, I would want to know how i could do a slideshow with freemovie library.
I hope that someone replay at this post.
Thank you.
2007-03-17 12:31:29 UTC by sergioska
-
I am finishing work on a new version of FreeMovie. It will be properly documented and there will be a printed developer's guide.
Stay tuned for news at devGuide.net.
2007-02-24 10:50:26 UTC by artymiak