Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.

ICAROS

ICAROS Specific Threads
327 posts | Last Activity on 25-01-2025 07:40 by Mazze
M
Mazze 25-01-2025 07:40, 1 year ago
Re: Download 404
Do you mean this: https://aros.sourceforge.io/download.php I can change the link to the distro if necessary.
Responded in Download 404
P
paolone 25-01-2025 07:20, 1 year ago
Re: Download 404
Thanks for pointing me this. Is there a fast way to copy/past the original downloads page here, keeping the URL links unchanged?
Responded in Download 404
amigamia
amigamia 23-01-2025 19:40, 1 year ago
Re: Download 404
[quote name=Mazze post=7552]@Mazze - The download page which is linked at www.aros.org shows a 404: http://vmwaros.blogspot.com/p/download.html Will you fix that or should I link to the older releases?[/quote] Hi Mazze, That's a link on Paolone's Icaros page. He hasn't been very active in the AROS arena. You can try to send him a PM in here but not sure if he'll respond in time. Also an email directly may help?
Responded in Download 404
M
Mazze 23-01-2025 15:14, 1 year ago
Re: Download 404
The download page which is linked at www.aros.org shows a 404: http://vmwaros.blogspot.com/p/download.html Will you fix that or should I link to the older releases?
Responded in Download 404
AMIGASYSTEM
AMIGASYSTEM 16-01-2025 14:50, 1 year ago
Re: Picture Tools
ABIv11 Build System ( New AROS One ABIv11) I have already compiled these sources and others https://www.arosworld.org/infusions/forum/viewthread.php?thread_id=1376&pid=7478#post_7478
Responded in Picture Tools
M
miker1264 16-01-2025 14:37, 1 year ago
Re: Picture Tools
[quote name=AMIGASYSTEM post=7483]@AMIGASYSTEM - I tried "PicDT_CreationPackage", it also seems easy to use, but I get the same error as with the compilation via the shell "cannon find -larosc", plus the error "Genmodule : Function not implemented", see screenshot The "-larosc" error has been siscussed on "ae.arosworld" see link, but I don't know where to correct the Makefile https://ae.arosworld.org/index.php?topic=770.msg7934#msg7934[/quote] You might ask @deadwood to help compiling the Datatype. Are you using the ABIv11 Build System? Or some other method to compile the Datatype?
Responded in Picture Tools
AMIGASYSTEM
AMIGASYSTEM 16-01-2025 12:36, 1 year ago
Re: Picture Tools
I tried "PicDT_CreationPackage", it also seems easy to use, but I get the same error as with the compilation via the shell "cannon find -larosc", plus the error "Genmodule : Function not implemented", see screenshot The "-larosc" error has been siscussed on "ae.arosworld" see link, but I don't know where to correct the Makefile https://ae.arosworld.org/index.php?topic=770.msg7934#msg7934
Responded in Picture Tools
AMIGASYSTEM
AMIGASYSTEM 16-01-2025 11:43, 1 year ago
Re: Picture Tools
OK thank you, if it's too difficult I'll give up, however all my compilations were done with [b]AROS One v1.0 "ABIv11 Build System[/b]"
Responded in Picture Tools
M
miker1264 16-01-2025 11:19, 1 year ago
Re: Picture Tools
AMIGASYSTEM Thank you for testing. You are good at finding issues! 🙂 I haven't tried to compile Icon Splitter for 64 but. As for SVG Datatype to compile Datatypes you can't use the shell. You need the Picture Datatype Creation Tool from AROS Archives or you need to use the ABIv11 Build System. There are many dependencies for Datatypes.
Responded in Picture Tools
AMIGASYSTEM
AMIGASYSTEM 16-01-2025 07:20, 1 year ago
Re: Picture Tools
miker, I'm trying to compile the svg.datatypes on Aros One v11 x86 64-64Bit on WMware, but I encounter an error in the "makefile", when you have time you can take a look at it https://archives.aros-exec.org/?function=showfile&file=datatype/image/svg_datatype.i386-aros.zip From WMware I tried compiling your "IconClone" and "Icondrop" on AROS One v11 x86 64 and they work perfectly, while "IconSplitter" crashes, but I guess it depends on the v11 x86 64 system!
Responded in Picture Tools
M
miker1264 21-12-2024 15:50, 1 year ago
Re: Picture Tools
I'm still working on revising & testing PixieView as well as ViewTIFF. More updates will be posted when they are available.
Responded in Picture Tools
M
miker1264 17-12-2024 11:37, 1 year ago
Re: Picture Tools
PixieView is working with the newer system files. Nice new icons too!
Responded in Picture Tools
M
miker1264 11-12-2024 22:54, 1 year ago
Re: Picture Tools
[quote name=AMIGASYSTEM post=7075]@AMIGASYSTEM - Thanks miker, now PixieView displays image XBM ![/quote] When I had to re-write Load_ImageDT function to fix not being able to delete the image after viewing I forgot one important part to view ILBM images or any other image less than 8 bitplanes. In order to display these images I use a Datatype trick. No matter how many bitplanes of data the image has if it's less than 8, the planar bitmap in the Datatype always has 8 bitplanes. So some planes are filled and the rest are empty. So if ( depth<8 ) depth = 8; Then when we are ready to display the image we use the stored pixel format vs. the requested pixel format. So if depth = 8 or depth = 32 we request 32bit ARGB. Now we use WritePixelArrayAlpha to display it.
Responded in Picture Tools
AMIGASYSTEM
AMIGASYSTEM 11-12-2024 18:42, 1 year ago
Re: Picture Tools
Thanks miker, now PixieView displays image XBM !
Responded in Picture Tools
M
miker1264 11-12-2024 17:21, 1 year ago
Re: Picture Tools
Here is the revised PixieView program. It once again supports images less that 8 bitplanes. The About Information has been updated and the rotate functions don't leave fringing. :-)
Responded in Picture Tools
AMIGASYSTEM
AMIGASYSTEM 11-12-2024 14:27, 1 year ago
Re: Picture Tools
OK as soon as I download PixieView I will start building and deploying the new AROS One 2.7, so that I can then devote myself to the new Core 20241209-D04 !
Responded in Picture Tools
M
miker1264 11-12-2024 14:10, 1 year ago
Re: Picture Tools
AMIGASYSTEM The PixieView program has been revised. I updated the About Information & I fixed the fringing on the image when rotating left or right. I also added the fix for images less than 8 bitplanes so that they will display correctly. I will compile it & post it at lunch time today in a couple hours.
Responded in Picture Tools
AMIGASYSTEM
AMIGASYSTEM 10-12-2024 15:54, 1 year ago
Re: Picture Tools
Attach image XBM
Responded in Picture Tools
M
miker1264 10-12-2024 14:57, 1 year ago
Re: Picture Tools
[quote name=AMIGASYSTEM post=7052]@AMIGASYSTEM - miker, Pixieview does not recognise the XBM format, see screenshot, with Multiview the XBM format works fine[/quote] Could you post some XBM images to test with? Post the XBM that caused this warning message. I suspect it is a different bit depth. I will probably need to make a small change for display purposes. If ( depth < 8 ) depth = 8. It seems that XBM is black and white with 1 bitplane = 2 colors.
Responded in Picture Tools
M
miker1264 10-12-2024 14:53, 1 year ago
Re: Picture Tools
[quote name=AMIGASYSTEM post=7052]@AMIGASYSTEM - miker, Pixieview does not recognise the XBM format, see screenshot, with Multiview the XBM format works fine[/quote] Could you post some XBM images to test with?
Responded in Picture Tools

Filter by Tags

Popular Threads This Week

Icon Toolsby miker1264 318 posts
AROS One Support, Tips And Requestsby AMIGASYSTEM 175 posts
New and Updated Datatypesby miker1264 110 posts
SDL2 software portsby retrofaza 106 posts
RetroArch for AROSby MagicSN 62 posts
Midlands Amiga Entusiasts meetby ntromans 37 posts
Adf disk with partition toolby CoolCat5000 33 posts
nvidia - 64-bitby deadwood 24 posts